From 5141b96a5c4597789bb4623509db67ebc1c5f5bd Mon Sep 17 00:00:00 2001 From: john Date: Sun, 13 Sep 2026 18:03:14 +0100 Subject: [PATCH 1/3] Update story-sections.ts --- src/data/story-sections.ts | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/src/data/story-sections.ts b/src/data/story-sections.ts index 80ed7f2..59a2c0f 100644 --- a/src/data/story-sections.ts +++ b/src/data/story-sections.ts @@ -366,7 +366,15 @@ export const STORY_SECTIONS = { { id: 'cyber-field', title: 'Cyber Field', - flags: ['OBTAINED_FIRST_GLOW_WRIST', 'OBTAINED_NUBERT_TREASURE'], + flags: [ + 'OBTAINED_FIRST_GLOW_WRIST', + 'OBTAINED_NUBERT_TREASURE', + 'READ_CYBERPEDIA', + 'SOLVED_APPLE_PUZZLE', + 'TASQUE_RELEASED', + 'SOLVED_AGREE2ALL_PUZZLE', + 'TRIGGERED_CYBER_FIELD_TEMP_SAVE', + ], }, { id: 'shadow-crystal', @@ -383,17 +391,26 @@ export const STORY_SECTIONS = { 'OBTAINED_CHESTMARK_2', 'SOLVED_GIASFCLFEBREBREBEHR_PUZZLE', 'RECRUITED_HACKER', - ], + ], }, { id: 'sweet-capn-cakes', title: "Sweet Cap'n Cakes", - flags: ['CD_BAGELS_PURCHASED', 'OBTAINED_TENSION_BIT'], + flags: [ + 'CD_BAGELS_PURCHASED', + 'OBTAINED_TENSION_BIT', + 'SAW_SWEET', + 'SAW_SWEET_CAPN_CAKES_FLYBY', + ], }, { id: 'virovirokun-room', title: 'Virovirokun Room', - flags: ['UNLOCKED_MINT_CHEST', 'OBTAINED_THIRD_REVIVE_MINT_CH2'], + flags: [ + 'UNLOCKED_MINT_CHEST', + 'OBTAINED_THIRD_REVIVE_MINT_CH2', + 'SOLVED_VIROVIROKUN_DODGE', + ], }, { id: 'teacup-ride', @@ -427,7 +444,11 @@ export const STORY_SECTIONS = { { id: 'cyber-city', title: 'Cyber City', - flags: ['OBTAINED_PINK_RIBBON', 'OBTAINED_BOUNCE_BLADE'], + flags: [ + 'OBTAINED_PINK_RIBBON', + 'OBTAINED_BOUNCE_BLADE', + 'FEDORA_PLUGBOY_WEREWIRED', + ], }, { id: 'traffic', From 79b360ad4dcc6d9a43e5734948eea94650b1be19 Mon Sep 17 00:00:00 2001 From: john Date: Mon, 14 Sep 2026 08:43:37 +0100 Subject: [PATCH 2/3] Fix formatting of flags arrays in story sections --- src/data/story-sections.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/data/story-sections.ts b/src/data/story-sections.ts index 59a2c0f..d6ac5f2 100644 --- a/src/data/story-sections.ts +++ b/src/data/story-sections.ts @@ -374,7 +374,7 @@ export const STORY_SECTIONS = { 'TASQUE_RELEASED', 'SOLVED_AGREE2ALL_PUZZLE', 'TRIGGERED_CYBER_FIELD_TEMP_SAVE', - ], + ], }, { id: 'shadow-crystal', @@ -391,7 +391,7 @@ export const STORY_SECTIONS = { 'OBTAINED_CHESTMARK_2', 'SOLVED_GIASFCLFEBREBREBEHR_PUZZLE', 'RECRUITED_HACKER', - ], + ], }, { id: 'sweet-capn-cakes', @@ -410,7 +410,7 @@ export const STORY_SECTIONS = { 'UNLOCKED_MINT_CHEST', 'OBTAINED_THIRD_REVIVE_MINT_CH2', 'SOLVED_VIROVIROKUN_DODGE', - ], + ], }, { id: 'teacup-ride', @@ -448,7 +448,7 @@ export const STORY_SECTIONS = { 'OBTAINED_PINK_RIBBON', 'OBTAINED_BOUNCE_BLADE', 'FEDORA_PLUGBOY_WEREWIRED', - ], + ], }, { id: 'traffic', From f714838abc6e30bbceadcd5f32dcd367c72989e0 Mon Sep 17 00:00:00 2001 From: john Date: Mon, 14 Sep 2026 08:56:19 +0100 Subject: [PATCH 3/3] Remove trailing spaces in story-sections flags --- src/data/story-sections.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/data/story-sections.ts b/src/data/story-sections.ts index d6ac5f2..0fe0dec 100644 --- a/src/data/story-sections.ts +++ b/src/data/story-sections.ts @@ -367,7 +367,7 @@ export const STORY_SECTIONS = { id: 'cyber-field', title: 'Cyber Field', flags: [ - 'OBTAINED_FIRST_GLOW_WRIST', + 'OBTAINED_FIRST_GLOW_WRIST', 'OBTAINED_NUBERT_TREASURE', 'READ_CYBERPEDIA', 'SOLVED_APPLE_PUZZLE', @@ -397,7 +397,7 @@ export const STORY_SECTIONS = { id: 'sweet-capn-cakes', title: "Sweet Cap'n Cakes", flags: [ - 'CD_BAGELS_PURCHASED', + 'CD_BAGELS_PURCHASED', 'OBTAINED_TENSION_BIT', 'SAW_SWEET', 'SAW_SWEET_CAPN_CAKES_FLYBY', @@ -407,7 +407,7 @@ export const STORY_SECTIONS = { id: 'virovirokun-room', title: 'Virovirokun Room', flags: [ - 'UNLOCKED_MINT_CHEST', + 'UNLOCKED_MINT_CHEST', 'OBTAINED_THIRD_REVIVE_MINT_CH2', 'SOLVED_VIROVIROKUN_DODGE', ], @@ -445,7 +445,7 @@ export const STORY_SECTIONS = { id: 'cyber-city', title: 'Cyber City', flags: [ - 'OBTAINED_PINK_RIBBON', + 'OBTAINED_PINK_RIBBON', 'OBTAINED_BOUNCE_BLADE', 'FEDORA_PLUGBOY_WEREWIRED', ],