Prev: E96A Up: Map Next: EB10
E9CA: Data: Phrase Tokens
The user input is broken down into tokens which represent the words they've entered. These tokens are then compared against these token patterns to determine the outcome the player was trying to communicate.
Matches e.g. "bottle".
PhraseTokens_Bottle E9CA DEFB $04 "BOTT".
E9CB DEFB $FE Terminator.
Matches e.g. "fish", "herring", "red fish", "red herring", "coloured fish", "coloured herring".
PhraseTokens_Fish E9CC DEFB $0E "FISH,HERR".
E9CD DEFB $FD Separator.
E9CE DEFB $5A "RED,COLO".
E9CF DEFB $0E "FISH,HERR".
E9D0 DEFB $FE Terminator.
Matches e.g. "watch".
PhraseTokens_Watch E9D1 DEFB $0D "WATC".
E9D2 DEFB $FE Terminator.
Matches e.g. "shoe".
PhraseTokens_Shoe E9D3 DEFB $0B "SHOE".
E9D4 DEFB $FE Terminator.
Matches e.g. "rod".
PhraseTokens_Rod E9D5 DEFB $03 "ROD".
E9D6 DEFB $FE Terminator.
Matches e.g. "fruit".
PhraseTokens_Fruit E9D7 DEFB $06 "FRUI".
E9D8 DEFB $FE Terminator.
Matches e.g. "bridge".
PhraseTokens_Bridge E9D9 DEFB $23 "BRID".
E9DA DEFB $FE Terminator.
Matches e.g. "jewels", "jewels of babylon".
PhraseTokens_Jewels E9DB DEFB $0F "JEWE".
E9DC DEFB $FD Separator.
E9DD DEFB $0F "JEWE".
E9DE DEFB $57 "OF".
E9DF DEFB $5B "BABY".
E9E0 DEFB $FE Terminator.
Matches e.g. "match".
PhraseTokens_Match E9E1 DEFB $00 "MATC".
E9E2 DEFB $FE Terminator.
Matches e.g. "plank".
PhraseTokens_Plank E9E3 DEFB $01 "PLAN".
E9E4 DEFB $FE Terminator.
Matches e.g. "coconut".
PhraseTokens_Coconut E9E5 DEFB $02 "COCO".
E9E6 DEFB $FE Terminator.
Matches e.g. "bottle", "rum", "bottle of rum".
PhraseTokens_BottleOfRum E9E7 DEFB $04 "BOTT".
E9E8 DEFB $FD Separator.
E9E9 DEFB $05 "RUM".
E9EA DEFB $FD Separator.
E9EB DEFB $04 "BOTT".
E9EC DEFB $57 "OF".
E9ED DEFB $05 "RUM".
E9EE DEFB $FE Terminator.
Matches e.g. "gun".
PhraseTokens_Gun E9EF DEFB $07 "GUN".
E9F0 DEFB $FE Terminator.
Matches e.g. "eyepatch", "patch".
PhraseTokens_Eyepatch E9F1 DEFB $08 "EYEP,PATC".
E9F2 DEFB $FE Terminator.
Matches e.g. "gunpowder", "powder", "keg", "keg of gunpowder", "keg of powder".
PhraseTokens_KegGunPowder E9F3 DEFB $09 "GUNP,POWD".
E9F4 DEFB $FD Separator.
E9F5 DEFB $0A "KEG".
E9F6 DEFB $FD Separator.
E9F7 DEFB $0A "KEG".
E9F8 DEFB $57 "OF".
E9F9 DEFB $09 "GUNP,POWD".
E9FA DEFB $FE Terminator.
Matches e.g. "sextant".
PhraseTokens_Sextant E9FB DEFB $0C "SEXT".
E9FC DEFB $FE Terminator.
Matches e.g. "crowbar".
PhraseTokens_Crowbar E9FD DEFB $10 "CROW".
E9FE DEFB $FE Terminator.
Matches e.g. "key".
PhraseTokens_Key E9FF DEFB $11 "KEY".
EA00 DEFB $FE Terminator.
Matches e.g. "skull", "human skull".
PhraseTokens_Skull EA01 DEFB $12 "SKUL".
EA02 DEFB $FD Separator.
EA03 DEFB $61 "HUMA".
EA04 DEFB $12 "SKUL".
EA05 DEFB $FE Terminator.
Matches e.g. "spear".
PhraseTokens_Spear EA06 DEFB $13 "SPEA".
EA07 DEFB $FE Terminator.
Matches e.g. "parrot", "dead parrot".
PhraseTokens_Parrot EA08 DEFB $19 "PARR".
EA09 DEFB $FD Separator.
EA0A DEFB $5D "DEAD".
EA0B DEFB $19 "PARR".
EA0C DEFB $FE Terminator.
Matches e.g. "into boat", "in to boat", "in at boat", "into rowing boat", "in to rowing boat", "in at rowing boat".
PhraseTokens_IntoBoat EA0D DEFB $54 "INTO".
EA0E DEFB $15 "BOAT".
EA0F DEFB $FD Separator.
EA10 DEFB $53 "IN".
EA11 DEFB $55 "TO,AT".
EA12 DEFB $15 "BOAT".
EA13 DEFB $FD Separator.
EA14 DEFB $54 "INTO".
EA15 DEFB $5C "ROWI".
EA16 DEFB $15 "BOAT".
EA17 DEFB $FD Separator.
EA18 DEFB $53 "IN".
EA19 DEFB $55 "TO,AT".
EA1A DEFB $5C "ROWI".
EA1B DEFB $15 "BOAT".
EA1C DEFB $FE Terminator.
Matches e.g. "out of boat", "out of rowing boat".
PhraseTokens_OutOfBoat EA1D DEFB $56 "OUT".
EA1E DEFB $57 "OF".
EA1F DEFB $15 "BOAT".
EA20 DEFB $FD Separator.
EA21 DEFB $56 "OUT".
EA22 DEFB $57 "OF".
EA23 DEFB $5C "ROWI".
EA24 DEFB $15 "BOAT".
EA25 DEFB $FE Terminator.
Matches e.g. "plank across pit", "plank over pit".
PhraseTokens_PlankAcrossPit EA26 DEFB $01 "PLAN".
EA27 DEFB $67 "ACRO,OVER".
EA28 DEFB $28 "PIT".
EA29 DEFB $FE Terminator.
Matches e.g. "spear to lion", "spear at lion".
PhraseTokens_SpearAtLion EA2A DEFB $13 "SPEA".
EA2B DEFB $55 "TO,AT".
EA2C DEFB $1C "LION".
EA2D DEFB $FE Terminator.
Matches e.g. "coconut to lion", "coconut at lion".
PhraseTokens_CoconutAtLion EA2E DEFB $02 "COCO".
EA2F DEFB $55 "TO,AT".
EA30 DEFB $1C "LION".
EA31 DEFB $FE Terminator.
Matches e.g. "fruit to lion", "fruit at lion".
PhraseTokens_FruitAtLion EA32 DEFB $06 "FRUI".
EA33 DEFB $55 "TO,AT".
EA34 DEFB $1C "LION".
EA35 DEFB $FE Terminator.
Matches e.g. "fish to lion", "fish at lion", "herring to lion", "herring at lion", "red fish to lion", "red fish at lion", "red herring to lion", "red herring at lion", "coloured fish to lion", "coloured fish at lion", "coloured herring to lion", "coloured herring at lion".
PhraseTokens_FishAtLion EA36 DEFB $0E "FISH,HERR".
EA37 DEFB $55 "TO,AT".
EA38 DEFB $1C "LION".
EA39 DEFB $FD Separator.
EA3A DEFB $5A "RED,COLO".
EA3B DEFB $0E "FISH,HERR".
EA3C DEFB $55 "TO,AT".
EA3D DEFB $1C "LION".
EA3E DEFB $FE Terminator.
Matches e.g. "fruit to parrot", "fruit at parrot".
PhraseTokens_FruitAtParrot EA3F DEFB $06 "FRUI".
EA40 DEFB $55 "TO,AT".
EA41 DEFB $19 "PARR".
EA42 DEFB $FE Terminator.
Matches e.g. "watch to cannibals", "watch at cannibals", "watch to natives", "watch at natives".
PhraseTokens_WatchAtCannibals EA43 DEFB $0D "WATC".
EA44 DEFB $55 "TO,AT".
EA45 DEFB $17 "CANN,NATI".
EA46 DEFB $FE Terminator.
Matches e.g. "spear to octopus", "spear at octopus", "spear to giant octopus", "spear at giant octopus".
PhraseTokens_SpearAtOctopus EA47 DEFB $13 "SPEA".
EA48 DEFB $55 "TO,AT".
EA49 DEFB $1E "OCTO".
EA4A DEFB $FD Separator.
EA4B DEFB $13 "SPEA".
EA4C DEFB $55 "TO,AT".
EA4D DEFB $62 "GIAN".
EA4E DEFB $1E "OCTO".
EA4F DEFB $FE Terminator.
Matches e.g. "gunpowder to crocodile", "gunpowder at crocodile", "powder to crocodile", "powder at crocodile", "keg to crocodile", "keg at crocodile", "keg of gunpowder to crocodile", "keg of gunpowder at crocodile", "keg of powder to crocodile", "keg of powder at crocodile".
PhraseTokens_KegAtCrocodile EA50 DEFB $09 "GUNP,POWD".
EA51 DEFB $55 "TO,AT".
EA52 DEFB $1B "CROC".
EA53 DEFB $FD Separator.
EA54 DEFB $0A "KEG".
EA55 DEFB $55 "TO,AT".
EA56 DEFB $1B "CROC".
EA57 DEFB $FD Separator.
EA58 DEFB $0A "KEG".
EA59 DEFB $57 "OF".
EA5A DEFB $09 "GUNP,POWD".
EA5B DEFB $55 "TO,AT".
EA5C DEFB $1B "CROC".
EA5D DEFB $FE Terminator.
Matches e.g. "match to keg", "match at keg", "match to gunpowder", "match at gunpowder", "match to powder", "match at powder", "match to keg of gunpowder", "match at keg of gunpowder", "match to keg of powder", "match at keg of powder".
PhraseTokens_MatchAtKeg EA5E DEFB $00 "MATC".
EA5F DEFB $55 "TO,AT".
EA60 DEFB $0A "KEG".
EA61 DEFB $FD Separator.
EA62 DEFB $00 "MATC".
EA63 DEFB $55 "TO,AT".
EA64 DEFB $09 "GUNP,POWD".
EA65 DEFB $FD Separator.
EA66 DEFB $00 "MATC".
EA67 DEFB $55 "TO,AT".
EA68 DEFB $0A "KEG".
EA69 DEFB $57 "OF".
EA6A DEFB $09 "GUNP,POWD".
EA6B DEFB $FE Terminator.
Matches e.g. "match to crocodile", "match at crocodile".
PhraseTokens_MatchAtCrocodile EA6C DEFB $00 "MATC".
EA6D DEFB $55 "TO,AT".
EA6E DEFB $1B "CROC".
EA6F DEFB $FE Terminator.
Matches e.g. "rod in hole", "rod in round hole", "rod into hole", "rod into round hole", "rod in to hole", "rod in at hole", "rod in to round hole", "rod in at round hole".
PhraseTokens_RodInHole EA70 DEFB $03 "ROD".
EA71 DEFB $53 "IN".
EA72 DEFB $60 "HOLE".
EA73 DEFB $FD Separator.
EA74 DEFB $03 "ROD".
EA75 DEFB $53 "IN".
EA76 DEFB $59 "ROUN".
EA77 DEFB $60 "HOLE".
EA78 DEFB $FD Separator.
EA79 DEFB $03 "ROD".
EA7A DEFB $54 "INTO".
EA7B DEFB $60 "HOLE".
EA7C DEFB $FD Separator.
EA7D DEFB $03 "ROD".
EA7E DEFB $54 "INTO".
EA7F DEFB $59 "ROUN".
EA80 DEFB $60 "HOLE".
EA81 DEFB $FD Separator.
EA82 DEFB $03 "ROD".
EA83 DEFB $53 "IN".
EA84 DEFB $55 "TO,AT".
EA85 DEFB $60 "HOLE".
EA86 DEFB $FD Separator.
EA87 DEFB $03 "ROD".
EA88 DEFB $53 "IN".
EA89 DEFB $55 "TO,AT".
EA8A DEFB $59 "ROUN".
EA8B DEFB $60 "HOLE".
EA8C DEFB $FE Terminator.
Matches e.g. "octopus with spear", "octopus using spear", "giant octopus with spear", "giant octopus using spear".
PhraseTokens_OctopusWithSpear EA8D DEFB $1E "OCTO".
EA8E DEFB $58 "WITH,USIN".
EA8F DEFB $13 "SPEA".
EA90 DEFB $FD Separator.
EA91 DEFB $62 "GIAN".
EA92 DEFB $1E "OCTO".
EA93 DEFB $58 "WITH,USIN".
EA94 DEFB $13 "SPEA".
EA95 DEFB $FE Terminator.
Matches e.g. "lion with spear", "lion using spear".
PhraseTokens_LionWithSpear EA96 DEFB $1C "LION".
EA97 DEFB $58 "WITH,USIN".
EA98 DEFB $13 "SPEA".
EA99 DEFB $FE Terminator.
Matches e.g. "cannibals with spear", "cannibals using spear", "natives with spear", "natives using spear".
PhraseTokens_CannibalsWithSpear EA9A DEFB $17 "CANN,NATI".
EA9B DEFB $58 "WITH,USIN".
EA9C DEFB $13 "SPEA".
EA9D DEFB $FE Terminator.
Matches e.g. "pirate with gun", "pirate using gun".
PhraseTokens_PirateWithGun EA9E DEFB $18 "PIRA".
EA9F DEFB $58 "WITH,USIN".
EAA0 DEFB $07 "GUN".
EAA1 DEFB $FE Terminator.
Matches e.g. "parrot with gun", "parrot using gun".
PhraseTokens_ParrotWithGun EAA2 DEFB $19 "PARR".
EAA3 DEFB $58 "WITH,USIN".
EAA4 DEFB $07 "GUN".
EAA5 DEFB $FE Terminator.
Matches e.g. "pirate", "pirate with gun", "pirate using gun".
PhraseTokens_PirateWithGun_2 EAA6 DEFB $18 "PIRA".
EAA7 DEFB $FD Separator.
EAA8 DEFB $18 "PIRA".
EAA9 DEFB $58 "WITH,USIN".
EAAA DEFB $07 "GUN".
EAAB DEFB $FE Terminator.
Matches e.g. "parrot", "parrot with gun", "parrot using gun".
PhraseTokens_ParrotWithGun_2 EAAC DEFB $19 "PARR".
EAAD DEFB $FD Separator.
EAAE DEFB $19 "PARR".
EAAF DEFB $58 "WITH,USIN".
EAB0 DEFB $07 "GUN".
EAB1 DEFB $FE Terminator.
Matches e.g. "u ladder", "up ladder".
PhraseTokens_UpLadder EAB2 DEFB $35 "U,UP".
EAB3 DEFB $14 "LADD".
EAB4 DEFB $FE Terminator.
Matches e.g. "d ladder", "down ladder".
PhraseTokens_DownLadder EAB5 DEFB $36 "D,DOWN".
EAB6 DEFB $14 "LADD".
EAB7 DEFB $FE Terminator.
Matches e.g. "rum".
PhraseTokens_Rum EAB8 DEFB $05 "RUM".
EAB9 DEFB $FE Terminator.
Matches e.g. "water".
PhraseTokens_Water EABA DEFB $66 "WATE".
EABB DEFB $FE Terminator.
Matches e.g. "ladder".
PhraseTokens_Ladder EABC DEFB $14 "LADD".
EABD DEFB $FE Terminator.
Matches e.g. "door".
PhraseTokens_Door EABE DEFB $1F "DOOR".
EABF DEFB $FE Terminator.
Matches e.g. "rock door", "door".
PhraseTokens_RockDoor EAC0 DEFB $68 "ROCK".
EAC1 DEFB $1F "DOOR".
EAC2 DEFB $FD Separator.
EAC3 DEFB $1F "DOOR".
EAC4 DEFB $FE Terminator.
Matches e.g. "trapdoor".
PhraseTokens_TrapDoor EAC5 DEFB $26 "TRAP".
EAC6 DEFB $FE Terminator.
Matches e.g. "shout" on its own, or "shout loud".
PhraseTokens_Shout EAC7 DEFB $FF UNKNOWN.
EAC8 DEFB $FD Separator.
EAC9 DEFB $69 "LOUD".
EACA DEFB $FE Terminator.
Matches e.g. "ring".
PhraseTokens_Ring EACB DEFB $25 "RING".
EACC DEFB $FE Terminator.
Matches e.g. "cave".
PhraseTokens_Cave EACD DEFB $27 "CAVE".
EACE DEFB $FE Terminator.
Matches e.g. "boat", "rowing boat", "ship", "pit".
PhraseTokens_Boat EACF DEFB $15 "BOAT".
EAD0 DEFB $FD Separator.
EAD1 DEFB $5C "ROWI".
EAD2 DEFB $15 "BOAT".
EAD3 DEFB $FD Separator.
EAD4 DEFB $29 "SHIP".
EAD5 DEFB $FD Separator.
EAD6 DEFB $28 "PIT".
EAD7 DEFB $FE Terminator.
Matches e.g. "stone", "large stone".
PhraseTokens_Stone EAD8 DEFB $5F "STON".
EAD9 DEFB $FD Separator.
EADA DEFB $65 "LARG".
EADB DEFB $5F "STON".
EADC DEFB $FE Terminator.
Matches e.g. "stone with crowbar", "stone using crowbar", "large stone with crowbar", "large stone using crowbar".
PhraseTokens_StoneWithCrowbar EADD DEFB $5F "STON".
EADE DEFB $58 "WITH,USIN".
EADF DEFB $10 "CROW".
EAE0 DEFB $FD Separator.
EAE1 DEFB $65 "LARG".
EAE2 DEFB $5F "STON".
EAE3 DEFB $58 "WITH,USIN".
EAE4 DEFB $10 "CROW".
EAE5 DEFB $FE Terminator.
Matches e.g. "door", "door with key", "door using key".
PhraseTokens_Door_2 EAE6 DEFB $1F "DOOR".
EAE7 DEFB $FD Separator.
EAE8 DEFB $1F "DOOR".
EAE9 DEFB $58 "WITH,USIN".
EAEA DEFB $11 "KEY".
EAEB DEFB $FE Terminator.
Matches e.g. "n", "north", "boat n", "boat north", "rowing boat n" "rowing boat north".
PhraseTokens_North EAEC DEFB $31 "N,NORT".
EAED DEFB $FD Separator.
EAEE DEFB $15 "BOAT".
EAEF DEFB $31 "N,NORT".
EAF0 DEFB $FD Separator.
EAF1 DEFB $5C "ROWI".
EAF2 DEFB $15 "BOAT".
EAF3 DEFB $31 "N,NORT".
EAF4 DEFB $FE Terminator.
Matches e.g. "s", "south", "boat s", "boat south", "rowing boat s", "rowing boat south".
PhraseTokens_South EAF5 DEFB $32 "S,SOUT".
EAF6 DEFB $FD Separator.
EAF7 DEFB $15 "BOAT".
EAF8 DEFB $32 "S,SOUT".
EAF9 DEFB $FD Separator.
EAFA DEFB $5C "ROWI".
EAFB DEFB $15 "BOAT".
EAFC DEFB $32 "S,SOUT".
EAFD DEFB $FE Terminator.
Matches e.g. "e", "east", "boat e", "boat east", "rowing boat e", "rowing boat east".
PhraseTokens_East EAFE DEFB $33 "E,EAST".
EAFF DEFB $FD Separator.
EB00 DEFB $15 "BOAT".
EB01 DEFB $33 "E,EAST".
EB02 DEFB $FD Separator.
EB03 DEFB $5C "ROWI".
EB04 DEFB $15 "BOAT".
EB05 DEFB $33 "E,EAST".
EB06 DEFB $FE Terminator.
Matches e.g. "w", "west", "boat w", "boat west", "rowing boat w", "rowing boat west".
PhraseTokens_West EB07 DEFB $34 "W,WEST".
EB08 DEFB $FD Separator.
EB09 DEFB $15 "BOAT".
EB0A DEFB $34 "W,WEST".
EB0B DEFB $FD Separator.
EB0C DEFB $5C "ROWI".
EB0D DEFB $15 "BOAT".
EB0E DEFB $34 "W,WEST".
EB0F DEFB $FE Terminator.
Prev: E96A Up: Map Next: EB10