From a140cdbedb3fed575491d00d7aa53925ffdae29c Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sat, 9 Nov 2024 18:26:38 -0800 Subject: [PATCH] make some notes public --- notes/bb-banned-items.txt | 80 +++++++++++++ notes/ep3-entry-counter-flags.txt | 9 ++ notes/gc-nte-areas.txt | 18 +++ notes/hangame-notes.txt | 19 +++ notes/quest-counter-fields.txt | 165 ++++++++++++++++++++++++++ notes/quest-flags.txt | 188 ++++++++++++++++++++++++++++++ notes/rare-drop-stream-example.py | 21 ++++ notes/solo-quest-flags.txt | 27 +++++ 8 files changed, 527 insertions(+) create mode 100644 notes/bb-banned-items.txt create mode 100644 notes/ep3-entry-counter-flags.txt create mode 100644 notes/gc-nte-areas.txt create mode 100644 notes/hangame-notes.txt create mode 100644 notes/quest-counter-fields.txt create mode 100644 notes/quest-flags.txt create mode 100644 notes/rare-drop-stream-example.py create mode 100644 notes/solo-quest-flags.txt diff --git a/notes/bb-banned-items.txt b/notes/bb-banned-items.txt new file mode 100644 index 00000000..171c547c --- /dev/null +++ b/notes/bb-banned-items.txt @@ -0,0 +1,80 @@ +000F04 LOGiN +006E00 GAME MAGAZNE +00AD00 RAGE DE FEU +00AD01 RAGE DE FEU +00AD02 RAGE DE FEU +00D000 UNKNOWN3 +00D100 UNKNOWN4 +01013D KROE'S SWEATER +01013F SONICTEAM ARMOR +010230 HUNTER'S SHELL +010233 HUNTER'S SHELL +010234 HUNTER'S SHELL +010236 Barrier +010237 Barrier +010238 Barrier +010239 Barrier +010253 BLUE RING +010254 BLUE RING +010255 BLUE RING +010256 BLUE RING +010257 BLUE RING +010258 BLUE RING +01025A BLUE RING +01025B GREEN RING +01025C GREEN RING +01025D GREEN RING +01025E GREEN RING +010260 GREEN RING +010261 GREEN RING +010262 GREEN RING +010263 YELLOW RING +010264 YELLOW RING +010265 YELLOW RING +010267 YELLOW RING +010268 YELLOW RING +010269 YELLOW RING +01026A YELLOW RING +01026B PURPLE RING +01026D PURPLE RING +01026E PURPLE RING +01026F PURPLE RING +010270 PURPLE RING +010271 PURPLE RING +010272 PURPLE RING +010274 WHITE RING +010276 WHITE RING +010277 WHITE RING +010278 WHITE RING +010279 WHITE RING +01027A WHITE RING +01027C BLACK RING +01027D BLACK RING +01027E BLACK RING +01027F BLACK RING +010281 BLACK RING +01029A UNKNOWN_B +024300 \n +024A00 Yahoo! +024D00 Cell of MAG 0503 +024E00 Cell of MAG 0504 +024F00 Cell of MAG 0505 +025000 Cell of MAG 0506 +025100 Cell of MAG 0507 +03120B New Year's Card +03120C Christmas Card +03120D Birthday Card +03120E Proof of Sonic Team +03120F Special Event Ticket +03140A Bouquet +03140B Decoction +031603 DISK Vol.4 "Open Your Heart" +031604 DISK Vol.5 "Live & Learn" +031801 UNKNOWN2 +031808 Yahoo!'s engine +03180B Cell of MAG 0503 +03180C Cell of MAG 0504 +03180D Cell of MAG 0505 +03180E Cell of MAG 0506 +03180F Cell of MAG 0507 +200000 (invalid item code) diff --git a/notes/ep3-entry-counter-flags.txt b/notes/ep3-entry-counter-flags.txt new file mode 100644 index 00000000..26be3ddb --- /dev/null +++ b/notes/ep3-entry-counter-flags.txt @@ -0,0 +1,9 @@ +entry counter flags + +01 = rules have any non-default values +02 = map number is set +04 = UNKNOWN (something to do with deck selection/verification) +08 = tournament mode (set by 6xB4x3D; shows timer in battle select menu and skips map select and rule select) +10 = UNKNOWN (used by 6xB5x43) +20 = command DC received +40 = tournament result available (6xB4x51 received) diff --git a/notes/gc-nte-areas.txt b/notes/gc-nte-areas.txt new file mode 100644 index 00000000..56f0b6e3 --- /dev/null +++ b/notes/gc-nte-areas.txt @@ -0,0 +1,18 @@ + Ep1 Ep2 +1 Forest 1 Temple +2 Forest 2 Temple +3 Cave 1 Spaceship +4 Cave 2 Spaceship +5 Cave 3 CCA +6 Mine 1 Jungle +7 Mine 2 Jungle +8 Ruins 1 (broken) Mountain +9 Ruins 2 (broken) Seaside +10 Ruins 3 (broken) Void (Seabed doors + Mine music) +11 Dragon Void (doors + Dolmolm + Mine music) +12 De Rol Le Gal Gryphon +13 Vol Opt Olga Flow (unfinished, Flow does no damage) +14 void (Falz music) Barba Ray (unfinished) +15 Lobby Gol Dragon (unfinished) +16 Versus1 crash +17 Versus2 crash diff --git a/notes/hangame-notes.txt b/notes/hangame-notes.txt new file mode 100644 index 00000000..c5c6a852 --- /dev/null +++ b/notes/hangame-notes.txt @@ -0,0 +1,19 @@ +patch required in TethVer12513 to get this to work: 0048210D EB + +is_hangame callsites: +0040457C - ??? (something in TDataProtocol?) +004820F4 - client version check (use patch above to bypass) +00708318 - patch server domain name +00708348 - patch server port +0070852C - ep4 unlocked setting (always true for hangame) +007085F4 - data server domain name +00708670 - data server port +007618E3 - whether to save user/pass to registry +00761C4C - create title screen menu (only shows Start Game and Exit Game in Hangame mode) +007623B0 - input password length limit?? (does nothing, since both branches of if statement lead to same result) +00762530 - registry account data access +00762708 - input password length limit?? (does nothing, since both branches of if statement lead to same result) +0076296F - input username length limit?? (limits to 12 instead of 16) +00762C30 - input username length limit?? (limits to 12 instead of 16) +00762D00 - password length limit again?? +00762D2C - username length limit again?? diff --git a/notes/quest-counter-fields.txt b/notes/quest-counter-fields.txt new file mode 100644 index 00000000..9b491ecc --- /dev/null +++ b/notes/quest-counter-fields.txt @@ -0,0 +1,165 @@ +$qfread + +00 000003FF Garon points +00 0003FC00 Garon button-mashing game score +00 03FC0000 Garon timing game score +00 04000000 Garon Tier 1 (10 cards) of Guild Card counter +00 08000000 Garon Tier 2 (30 cards) of Guild Card counter +00 10000000 Garon Tier 3 (50 cards) of Guild Card counter +00 20000000 Garon Tier 4 (100 cards) of Guild Card counter +00 C0000000 __UNUSED__ + +01 00000001 Dream Messenger: NiGHTS +01 00000002 Pioneer Warehouse: ??? +01 00000004 Garon's Shop: Puyo Pop +01 00000008 Pioneer Warehouse: Chu Chu Challenge +01 00000010 Reach for the Dream: Chu Chu Puzzle +01 00000020 Seat of the Heart: Checkpoint (Normal) +01 00000040 Seat of the Heart: Checkpoint (Sue path) +01 00000080 Seat of the Heart: Checkpoint (Elly is mad) +01 00000100 Seat of the Heart: Quest complete (no Sue path) +01 00000200 Seat of the Heart: Quest complete (Sue path) +01 00000400 Seat of the Heart: Got Ragol Ring (Normal) +01 00000800 Seat of the Heart: Checkpoint (Hard) +01 00000800 White Day: ??? +01 00001000 Blue Star Memories: Future Forecast +01 00001000 Seat of the Heart: Checkpoint (Sue path) +01 00002000 Blue Star Memories: Future Bullet +01 00002000 Seat of the Heart: Checkpoint (Elly is mad) +01 00004000 Seat of the Heart: Quest complete (no Sue path) +01 00008000 Seat of the Heart: Quest complete (Sue path) +01 00010000 Seat of the Heart: Got Ragol Ring (Hard) +01 00020000 Seat of the Heart: Checkpoint (Very Hard) +01 00040000 Seat of the Heart: Checkpoint (Sue path) +01 00080000 Seat of the Heart: Checkpoint (Elly is mad) +01 00100000 Seat of the Heart: Quest complete (no Sue path) +01 00200000 Seat of the Heart: Quest complete (Sue path) +01 003F8000 Beta Lucky Coins +01 00400000 Seat of the Heart: Got Ragol Ring (Very Hard) +01 00800000 Seat of the Heart: Checkpoint (Ultimate) +01 01000000 Seat of the Heart: Checkpoint (Sue path) +01 02000000 Seat of the Heart: Checkpoint (Elly is mad) +01 04000000 Seat of the Heart: Quest complete (no Sue path) +01 08000000 Seat of the Heart: Quest complete (Sue path) +01 10000000 Seat of the Heart: Got Ragol Ring (Ultimate) +01 E0000000 __UNUSED__ + +02 00000001 Pioneer Halloween: Got Jack-O'-Lantern +02 00000002 Pioneer Halloween: Got cake +02 00000020 East Tower +02 00000020 The East Tower: Paganini side quest +02 00000040 The West Tower: Paganini side quest +02 00000040 West Tower +02 00000080 Labyrinthine Trial: White Ring +02 00000100 Garon's Treachery: Rakonia Stone +02 00000200 Garon's Treachery: Fragment of Friendship +02 00000400 Towards the Future: Purple Ring +02 00000800 Towards the Future: Flower Bouquet +02 00002000 Heart Of Poumn +02 00002000 Rappy's Holiday: Heart of Poumn +02 003FC000 Rappy's Holiday points +02 07000000 Respective Tomorrow: WIS +02 08000000 Respective Tomorrow: S/SS Rank +02 10000000 Towards the Future: Black Ring +02 20000000 Green Ring +02 C0C0101C __UNUSED__ + +03 000000FF Lucky Tickets +03 003FFF00 Kill count +03 07C00000 Song count +03 08000000 Couple flag +03 7FFFFFFF MA4 kills (Central Dome) +03 80000000 __UNUSED__ + +04 7FFFFFFF MA4 kills (Gal Da Val) +04 80000000 __UNUSED__ + +05 00007FFF Principal's Gift: Random Candy ID +05 00008000 Candy ID init flag +05 00200000 Racket +05 00400000 Tree Clippers +05 00800000 Synthesizer +05 01000000 Shichishito +05 02000000 Dirty Life Jacket +05 04000000 Lost Hell Pallasch: Gush Raygun +05 F81F0000 __UNUSED__ + +06 0FF00000 Lucky Tickets +06 F00FFFFF __UNUSED__ + +07 00000001 Government 4-5: Normal cleared +07 00000002 Government 4-5: Hard cleared +07 00000004 Government 4-5: Very Hard cleared +07 00000008 Government 4-5: Ultimate cleared +07 00000010 Government 8-3: Normal cleared +07 00000020 Government 8-3: Hard cleared +07 00000040 Government 8-3: Very Hard cleared +07 00000080 Government 8-3: Ultimate cleared +07 FFFFFF00 __UNUSED__ + +08 7FFFFFFF MA4 kills (Crater) +08 80000000 __UNUSED__ + +09 00003FFF MA1v2 points +09 00003FFF Maximum Attack 1 Ver.2: points +09 0FFFC000 MA2v2 points +09 0FFFC000 Maximum Attack 2 Ver.2: points +09 10000000 AOL CUP -Sunset Base- (Mag Cell) +09 10000000 Maximum Attack 1 Ver.2: Class Master flag +09 20000000 AOL CUP -Sunset Base- (Ruins) +09 20000000 Maximum Attack 2 Ver.2: ID Master flag +09 40000000 Beach Laughter: Got 5 Photon Spheres & Black Ring +09 40000000 Blue Ring +09 80000000 __UNUSED__ + +0A 00000001 Heart of HUmar +0A 00000002 Heart of HUnewearl +0A 00000004 Heart of HUcast +0A 00000008 Heart of HUcaseal +0A 00000010 Heart of RAmar +0A 00000020 Heart of RAmarl +0A 00000040 Heart of RAcast +0A 00000080 Heart of RAcaseal +0A 00000100 Heart of FOmar +0A 00000200 Heart of FOmarl +0A 00000400 Heart of FOnewm +0A 00000800 Heart of FOnewearl +0A 00001000 Heart of Viridia +0A 00002000 Heart of Greenill +0A 00004000 Heart of Skyly +0A 00008000 Heart of Bluefull +0A 00010000 Heart of Purplenum +0A 00020000 Heart of Pinkal +0A 00040000 Heart of Redria +0A 00080000 Heart of Oran +0A 00100000 Heart of Yellowboze +0A 00200000 Heart of Whitill +0A 7FC00000 Lucky Tickets +0A 80000000 __UNUSED__ + +0B 00000001 Garon's Shop: Black Gear +0B 00000001 Roulette (SEIRYU) +0B 00000002 Beta -> Final Lucky Coins init flag +0B 00000002 Roulette (GENBU) +0B 000001FC Lucky Coins +0B 0007FC00 Pioneer Christmas ??? +0B 00080000 Cleared 4th Pioneer Christmas tier? +0B 1FF00000 Wrapping Papers +0B 20000000 Pioneer Christmas Present +0B 40000000 Wall +0B 40000000 White Day: Flower Bouquet or Heart Key +0B 80000200 __UNUSED__ + +0C FFFFFFFF __UNUSED__ + +0D FFFFFFFF __UNUSED__ + +0E 7FFFFFFF MA4 kills (Total) +0E 80000000 __UNUSED__ + +0F 000000FF MA4 Tickets +0F 00000100 MA4 PHOTON CRYSTAL +0F 00000200 MA4 FRIEND RING +0F 00000400 MA4 GIRASOLE +0F 00000800 MA4 SAMURAI ARMOR +0F FFFFF000 __UNUSED__ diff --git a/notes/quest-flags.txt b/notes/quest-flags.txt new file mode 100644 index 00000000..ae758535 --- /dev/null +++ b/notes/quest-flags.txt @@ -0,0 +1,188 @@ +0007 = Set by rico capsule in caves +000B = P2 Tyrell Start +000C = P2 Irene Start +000D = P2 Scientist 1 Start +000E = P2 Scientist 2 Start +000F = P2 More Scientist stuff. +0010 = P2 Irene after talking to Tyrell +0011 = Read a rico capsule (any) +0012 = P2 Scientist after talking to Irene. +0013 = P2 Menu 6, quest counter / Tekker talked to +0014 = Entered Forest 1 +0015 = Entered Forest 2 +0016 = Entered Dragon Area +0017 = Dragon defeated +0018 = Caves unlocked +0018 = P2 Principle after defeating dragon +0019 = P2 Scientist after defeating dragon +001E = Entered Caves 1 (Gov 2-1) +001F = Entered De Rol Le in 2-4 +0020 = De Ro lee defeated +0021 = Mines unlocked (P2 Tyrell after defeating De Rol Le) +0028 = Entered Mines 1 +0029 = Entered Vol Opt Area +002A = Defeated Vol Opt +002B = Set by rico capsule about the 3 seals (after vol opt). +002C = Activated Forest monument +002D = Activated Caves monument (Gov 2-2) +002E = Activated Mines monument +002F = Activated all monuments +0030 = Entered Ruins 1 +0032 = Entered Falz 1 +0035 = Hard mode unlocked +0036 = Entered Falz 3 // Very Hard mode unlocked (?) +0037 = Ultimate unlocked +0046 = One CCA door lock unlocked +0047 = One CCA door lock unlocked +0048 = One CCA door lock unlocked +0049 = Entered Laboratory +004A = Lab Assistant Start +004B = Entered Temple Beta +004C = Defeated Barba Ray +004D = Lab Assistant after defeating barba ray +004E = Entered Spaceship Beta +004F = Defeated Gol Dragon +0051 = Entered CCA +0052 = Defeated Gal Gyrphon // Defeated Gol dragon in seat of heart (?) +0054 = Entered Seabed Upper +0057 = Defeated Olga Flow +005B = Lab Natasha Start +005C = Lab Natasha after VR temple +005D = Lab Natasha after VR Spaceship +005E = Lab Assistant after defeating Gal gryphon +005F = After reading the last capsule from flowen +0060 = Lab Natasha after CCA +0065 = Cleared Magnitude of Metal +0067 = Cleared Claiming a Stake +0069 = Cleared Value of Money +006B = Cleared Battle Training +006D = Cleared Journalistic Pursuit +006F = Cleared The Fake in Yellow +0071 = Cleared Native Research +0073 = Cleared Forest of Sorrow +0075 = Cleared Gran Squall +0077 = Cleared Addicting Food +0079 = Cleared The Lost Bride +007B = Cleared Waterfall Tears +007D = Cleared Black Paper +007F = Cleared Secret Delivery +0081 = Cleared Soul of a Blacksmith +0083 = Cleared Letter from Lionel +0085 = Cleared The Grave's Butler +0087 = Cleared Knowing One's Heart +0089 = Cleared The Retired Hunter +008B = Cleared Dr. Osto's Research +008D = Cleared Unsealed Door +008F = Cleared Soul of Steel +0091 = Cleared Doc's Secret Plan (able to make enemy part weapons) +0093 = Cleared Seek my Master +0095 = Cleared From the Depths +0096 = Unknown (set in the fake in yellow) +0097 = Seat of heart unknown +009B = Cleared Central Dome Fire Swirl +00A1 = Cleared Seat of the Heart +00C9 = Got an enemy weapon converted +00CA = unknown Fake In Yellow +00CE = unknown Fake In Yellow +00D3 = Dr.Osto's research black paper subplot. Told Sue your name +00D4 = Dr.Osto's research black paper subplot. Didn't tell Sue your name from before. +00D5 = Dr.Osto's research black paper subplot. Did tell Sue your name from before. +00D6 = Unsealed door. black paper subplot Talked to Sue. Refused to tell her your name +00D7 = Unsealed door. black paper subplot. bernie tells you Sue is part of black paper. +00D8 = Black paper subplot in waterfall of tears talking to Sue +00D9 = Black paper subplot in Black paper talking to Sue (used option 2) +00DB = Black paper subplot in Black paper talking to Sue (used any option) +00DE = Black paper subplot in Black paper talked to Sue at the end of quest? +00DF = Knowing ones heart talked to Bernie? +00E0 = Seek my master. Zoke ,Donoph subplot? +00E2 = Bernie Gran Squall +00E7 = Defeated Kireek in waterfall of tears +00E8 = Black paper subplot in black paper. defeated Kireek... +00EB = Black paper subplot in from the depths. Defeated Kireek and got soul eater! +00F1 = Secret delivery. Started the Weapons subplot //is cleared if quest is left +00F3 = Weapon badge approval for claiming the snake //is cleared if quest is left +00F4 = Weapon badge approval for the lost bride //is cleared if quest is left +00F5 = Weapon badge approval for gran squall //is cleared if quest is left +00F6 = Secret delivery. Got AKIKO's FRYING PAN! +00FB = Got Orochi-agito +00FB = Received OROCHI-AGITO! +00FD = Unknown addicting food +0105 = Central dome fire swirl. Got Glory of the past! +0106 = Central dome fire swirl. Got Mark3. +0107 = Central dome fire swirl. got Sonic knuckles +0108 = Central dome fire swirl. got mail from BOGARDE +0109 = Central dome fire swirl. got mail from ANNA +010A = Central dome fire swirl. got mail from NADJA +010B = Central dome fire swirl. got mail from Lionel +010C = Soul of the blacksmith. Got one of the 3 special weapons! +010D = Donoph Baz dies The Retired Hunter +010E = Seat of heart unknown +010F = Seat of heart unknown +0110 = Seat of heart unknown +0111 = Seat of heart unknown +0112 = Seat of heart unknown +0113 = Seat of heart unknown +0187 = Soul of steel. Got Marina's bag! //dreamcast +0188 = Soul of steel. Unknown. +0191 = Capsule Elly VR +0197 = Cleared VR Temple +01AD = Capsule elly CCA +01AE = Capsule elly CCA +01B3 = After reading a capsule from flowen +01D6 = Set after unlocking vr spaceship +01F5 = Episode1: Cleared government 1-1 +01F7 = Episode1: Cleared government 1-2 +01F9 = Episode1: Cleared government 1-3 +01FB = Episode1: Cleared government 2-1 +01FD = Episode1: Cleared government 2-2 +01FF = Episode1: Cleared government 2-3 +0201 = Episode1: Cleared government 2-4 +0203 = Episode1: Cleared government 3-1 +0205 = Episode1: Cleared government 3-2 +0207 = Episode1: Cleared government 3-3 +0209 = Episode1: Cleared government 4-1 +020B = Episode1: Cleared government 4-2 +020D = Episode1: Cleared government 4-3 +020F = Episode1: Cleared government 4-4 +0211 = Episode1: Cleared government 4-5 +0213 = Episode2: Cleared government 5-1 // Talked to Tekker (?) +0214 = Entered Forest 1 +0215 = Episode2: Cleared government 5-2 +0217 = Episode2: Cleared government 5-3 // Defeated Dragon (?) +0219 = Episode2: Cleared government 5-4 +021B = Episode2: Cleared government 5-5 +021D = Episode2: Cleared government 6-1 +021F = Episode2: Cleared government 6-2 +0220 = Defeated De Rol Le +0221 = Episode2: Cleared government 6-3 +0223 = Episode2: Cleared government 6-4 +0225 = Episode2: Cleared government 6-5 +0227 = Episode2: Cleared government 7-1 +0229 = Episode2: Cleared government 7-2 +022A = Defeated Vol Opt (002A and 022A together on hard mode) +022B = Episode2: Cleared government 7-3 // Rico capsule after Vol Opt, at Ruins door (?) +022D = Episode2: Cleared government 7-4 // Entered Caves 2 (?) +022F = Episode2: Cleared government 7-5 +0230 = Entered Ruins 1 +0231 = Episode2: Cleared government 8-1 +0233 = Episode2: Cleared government 8-2 +0234 = Entered Falz 2 +0235 = Episode2: Cleared government 8-3 +0246 = Activated Jungle East big door switch +0248 = Activated Seaside big door switch +024F = Defeated Gol Dragon +0252 = Defeated Gal Gryphon +02BD = Episode4: Cleared government 9-1 +02BE = Episode4: Cleared government 9-2 +02BF = Episode4: Cleared government 9-3 +02C0 = Episode4: Cleared government 9-4 +02C1 = Episode4: Cleared government 9-5 +02C2 = Episode4: Cleared government 9-6 +02C3 = Episode4: Cleared government 9-7 +02C4 = Episode4: Cleared government 9-8 +0314 = Entered Forest 1 +0330 = Entered Ruins 1 +03FA = P2 Menu 7, G-Counter // Talked to Momoka +03FB = Nol start +03FC = Cleared Ep2 government on ultimate +03FE = Cleared Ep2 government on normal-vh diff --git a/notes/rare-drop-stream-example.py b/notes/rare-drop-stream-example.py new file mode 100644 index 00000000..af2578a3 --- /dev/null +++ b/notes/rare-drop-stream-example.py @@ -0,0 +1,21 @@ +import asyncio +import aiohttp + + +async def main(): + async with aiohttp.ClientSession() as session: + async with session.ws_connect("ws://localhost:5050/y/rare-drops/stream") as ws: + async for msg in ws: + if msg.type == aiohttp.WSMsgType.TEXT: + data = msg.json() + print(f"Received message: {data}") + elif msg.type == aiohttp.WSMsgType.BINARY: + print(f"Received binary data: {msg.data}") + elif msg.type == aiohttp.WSMsgType.CLOSE: + break + elif msg.type == aiohttp.WSMsgType.ERROR: + break + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/notes/solo-quest-flags.txt b/notes/solo-quest-flags.txt new file mode 100644 index 00000000..481b2ebb --- /dev/null +++ b/notes/solo-quest-flags.txt @@ -0,0 +1,27 @@ +### T FLAG NAME REQUIREMENTS AVAILABLE_IF ENABLED_IF +001 1 0065 Magnitude of Metal !F_0065 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +002 1 0067 Claiming A Stake !F_0067 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +003 3 0069 The Value of Money T1, Caves F_0065 && F_0067 && F_006B && F_01F9 !F_0069 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +004 1 006B Battle Training !F_006B || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +005 2 006D Journalistic Pursuit T1 F_0065 && F_0067 && F_006B !F_006D || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +006 2 006F The Fake in yellow T1 F_0065 && F_0067 && F_006B !F_006F || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +007 2 0071 Native Research T1 F_0065 && F_0067 && F_006B !F_0071 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +008 2 0073 Forest of Sorrow 007 F_0071 !F_0073 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +009 2 0075 Gran Squall T1 F_0065 && F_0067 && F_006B !F_0075 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +010 3 0077 Addicting Food T1 F_0065 && F_0067 && F_006B !F_0077 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +011 3 0079 The Lost Bride T1 F_0065 && F_0067 && F_006B !F_0079 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +012 3 007B Waterfall tears 010, 011, 014, 017 F_0077 && F_0079 && F_007F && F_0085 !F_007B || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +013 3 007D Black Paper 012 F_007B !F_007D || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +014 3 007F Secret Delivery T1 F_0065 && F_0067 && F_006B !F_007F || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +015 3 0081 Soul of a Blacksmith 010, 011, 014, 017 F_0077 && F_0079 && F_007F && F_0085 !F_0081 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +016 3 0083 Letter from Lionel T1, Mines F_0065 && F_0067 && F_006B && F_0201 !F_0083 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +017 3 0085 The Grave's Butler T1 F_0065 && F_0067 && F_006B !F_0085 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +018 4 0087 Knowing One's Heart T1, Mines F_0065 && F_0067 && F_006B && F_0201 !F_0087 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +019 5 0089 Retired Hunter T1, Ruins F_0065 && F_0067 && F_006B && F_0207 !F_0089 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +020 4 008B Dr. Osto's Research T1, Mines F_0065 && F_0067 && F_006B && F_0201 !F_008B || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +021 4 008D The Unsealed Door 020, 014 F_008B && F_007F !F_008D || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +022 5 008F Soul of Steel 023 F_0091 !F_008F || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +023 5 0091 Doc's Secret Plan 014, Ruins F_007F && F_0207 !F_0091 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +024 5 0093 Seek My Master T1, Ruins F_0065 && F_0067 && F_006B && F_0207 !F_0093 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +025 5 0095 From the Depths 023 F_0091 !F_0095 || (F_0065 && F_0067 && F_0069 && F_006B && F_006D && F_006F && F_0071 && F_0073 && F_0075 && F_0077 && F_0079 && F_007B && F_007D && F_007F && F_0081 && F_0083 && F_0085 && F_0087 && F_0089 && F_008B && F_008D && F_008F && F_0091 && F_0093 && F_0095) +026 2 009B Central Dome Fire Swirl 008 F_0073