Prev: 59754 Up: Map Next: 60176
59850: 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 59850 DEFB 4 "BOTT".
59851 DEFB 254 Terminator.
Matches e.g. "fish", "herring", "red fish", "red herring", "coloured fish", "coloured herring".
PhraseTokens_Fish 59852 DEFB 14 "FISH,HERR".
59853 DEFB 253 Separator.
59854 DEFB 90 "RED,COLO".
59855 DEFB 14 "FISH,HERR".
59856 DEFB 254 Terminator.
Matches e.g. "watch".
PhraseTokens_Watch 59857 DEFB 13 "WATC".
59858 DEFB 254 Terminator.
Matches e.g. "shoe".
PhraseTokens_Shoe 59859 DEFB 11 "SHOE".
59860 DEFB 254 Terminator.
Matches e.g. "rod".
PhraseTokens_Rod 59861 DEFB 3 "ROD".
59862 DEFB 254 Terminator.
Matches e.g. "fruit".
PhraseTokens_Fruit 59863 DEFB 6 "FRUI".
59864 DEFB 254 Terminator.
Matches e.g. "bridge".
PhraseTokens_Bridge 59865 DEFB 35 "BRID".
59866 DEFB 254 Terminator.
Matches e.g. "jewels", "jewels of babylon".
PhraseTokens_Jewels 59867 DEFB 15 "JEWE".
59868 DEFB 253 Separator.
59869 DEFB 15 "JEWE".
59870 DEFB 87 "OF".
59871 DEFB 91 "BABY".
59872 DEFB 254 Terminator.
Matches e.g. "match".
PhraseTokens_Match 59873 DEFB 0 "MATC".
59874 DEFB 254 Terminator.
Matches e.g. "plank".
PhraseTokens_Plank 59875 DEFB 1 "PLAN".
59876 DEFB 254 Terminator.
Matches e.g. "coconut".
PhraseTokens_Coconut 59877 DEFB 2 "COCO".
59878 DEFB 254 Terminator.
Matches e.g. "bottle", "rum", "bottle of rum".
PhraseTokens_BottleOfRum 59879 DEFB 4 "BOTT".
59880 DEFB 253 Separator.
59881 DEFB 5 "RUM".
59882 DEFB 253 Separator.
59883 DEFB 4 "BOTT".
59884 DEFB 87 "OF".
59885 DEFB 5 "RUM".
59886 DEFB 254 Terminator.
Matches e.g. "gun".
PhraseTokens_Gun 59887 DEFB 7 "GUN".
59888 DEFB 254 Terminator.
Matches e.g. "eyepatch", "patch".
PhraseTokens_Eyepatch 59889 DEFB 8 "EYEP,PATC".
59890 DEFB 254 Terminator.
Matches e.g. "gunpowder", "powder", "keg", "keg of gunpowder", "keg of powder".
PhraseTokens_KegGunPowder 59891 DEFB 9 "GUNP,POWD".
59892 DEFB 253 Separator.
59893 DEFB 10 "KEG".
59894 DEFB 253 Separator.
59895 DEFB 10 "KEG".
59896 DEFB 87 "OF".
59897 DEFB 9 "GUNP,POWD".
59898 DEFB 254 Terminator.
Matches e.g. "sextant".
PhraseTokens_Sextant 59899 DEFB 12 "SEXT".
59900 DEFB 254 Terminator.
Matches e.g. "crowbar".
PhraseTokens_Crowbar 59901 DEFB 16 "CROW".
59902 DEFB 254 Terminator.
Matches e.g. "key".
PhraseTokens_Key 59903 DEFB 17 "KEY".
59904 DEFB 254 Terminator.
Matches e.g. "skull", "human skull".
PhraseTokens_Skull 59905 DEFB 18 "SKUL".
59906 DEFB 253 Separator.
59907 DEFB 97 "HUMA".
59908 DEFB 18 "SKUL".
59909 DEFB 254 Terminator.
Matches e.g. "spear".
PhraseTokens_Spear 59910 DEFB 19 "SPEA".
59911 DEFB 254 Terminator.
Matches e.g. "parrot", "dead parrot".
PhraseTokens_Parrot 59912 DEFB 25 "PARR".
59913 DEFB 253 Separator.
59914 DEFB 93 "DEAD".
59915 DEFB 25 "PARR".
59916 DEFB 254 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 59917 DEFB 84 "INTO".
59918 DEFB 21 "BOAT".
59919 DEFB 253 Separator.
59920 DEFB 83 "IN".
59921 DEFB 85 "TO,AT".
59922 DEFB 21 "BOAT".
59923 DEFB 253 Separator.
59924 DEFB 84 "INTO".
59925 DEFB 92 "ROWI".
59926 DEFB 21 "BOAT".
59927 DEFB 253 Separator.
59928 DEFB 83 "IN".
59929 DEFB 85 "TO,AT".
59930 DEFB 92 "ROWI".
59931 DEFB 21 "BOAT".
59932 DEFB 254 Terminator.
Matches e.g. "out of boat", "out of rowing boat".
PhraseTokens_OutOfBoat 59933 DEFB 86 "OUT".
59934 DEFB 87 "OF".
59935 DEFB 21 "BOAT".
59936 DEFB 253 Separator.
59937 DEFB 86 "OUT".
59938 DEFB 87 "OF".
59939 DEFB 92 "ROWI".
59940 DEFB 21 "BOAT".
59941 DEFB 254 Terminator.
Matches e.g. "plank across pit", "plank over pit".
PhraseTokens_PlankAcrossPit 59942 DEFB 1 "PLAN".
59943 DEFB 103 "ACRO,OVER".
59944 DEFB 40 "PIT".
59945 DEFB 254 Terminator.
Matches e.g. "spear to lion", "spear at lion".
PhraseTokens_SpearAtLion 59946 DEFB 19 "SPEA".
59947 DEFB 85 "TO,AT".
59948 DEFB 28 "LION".
59949 DEFB 254 Terminator.
Matches e.g. "coconut to lion", "coconut at lion".
PhraseTokens_CoconutAtLion 59950 DEFB 2 "COCO".
59951 DEFB 85 "TO,AT".
59952 DEFB 28 "LION".
59953 DEFB 254 Terminator.
Matches e.g. "fruit to lion", "fruit at lion".
PhraseTokens_FruitAtLion 59954 DEFB 6 "FRUI".
59955 DEFB 85 "TO,AT".
59956 DEFB 28 "LION".
59957 DEFB 254 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 59958 DEFB 14 "FISH,HERR".
59959 DEFB 85 "TO,AT".
59960 DEFB 28 "LION".
59961 DEFB 253 Separator.
59962 DEFB 90 "RED,COLO".
59963 DEFB 14 "FISH,HERR".
59964 DEFB 85 "TO,AT".
59965 DEFB 28 "LION".
59966 DEFB 254 Terminator.
Matches e.g. "fruit to parrot", "fruit at parrot".
PhraseTokens_FruitAtParrot 59967 DEFB 6 "FRUI".
59968 DEFB 85 "TO,AT".
59969 DEFB 25 "PARR".
59970 DEFB 254 Terminator.
Matches e.g. "watch to cannibals", "watch at cannibals", "watch to natives", "watch at natives".
PhraseTokens_WatchAtCannibals 59971 DEFB 13 "WATC".
59972 DEFB 85 "TO,AT".
59973 DEFB 23 "CANN,NATI".
59974 DEFB 254 Terminator.
Matches e.g. "spear to octopus", "spear at octopus", "spear to giant octopus", "spear at giant octopus".
PhraseTokens_SpearAtOctopus 59975 DEFB 19 "SPEA".
59976 DEFB 85 "TO,AT".
59977 DEFB 30 "OCTO".
59978 DEFB 253 Separator.
59979 DEFB 19 "SPEA".
59980 DEFB 85 "TO,AT".
59981 DEFB 98 "GIAN".
59982 DEFB 30 "OCTO".
59983 DEFB 254 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 59984 DEFB 9 "GUNP,POWD".
59985 DEFB 85 "TO,AT".
59986 DEFB 27 "CROC".
59987 DEFB 253 Separator.
59988 DEFB 10 "KEG".
59989 DEFB 85 "TO,AT".
59990 DEFB 27 "CROC".
59991 DEFB 253 Separator.
59992 DEFB 10 "KEG".
59993 DEFB 87 "OF".
59994 DEFB 9 "GUNP,POWD".
59995 DEFB 85 "TO,AT".
59996 DEFB 27 "CROC".
59997 DEFB 254 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 59998 DEFB 0 "MATC".
59999 DEFB 85 "TO,AT".
60000 DEFB 10 "KEG".
60001 DEFB 253 Separator.
60002 DEFB 0 "MATC".
60003 DEFB 85 "TO,AT".
60004 DEFB 9 "GUNP,POWD".
60005 DEFB 253 Separator.
60006 DEFB 0 "MATC".
60007 DEFB 85 "TO,AT".
60008 DEFB 10 "KEG".
60009 DEFB 87 "OF".
60010 DEFB 9 "GUNP,POWD".
60011 DEFB 254 Terminator.
Matches e.g. "match to crocodile", "match at crocodile".
PhraseTokens_MatchAtCrocodile 60012 DEFB 0 "MATC".
60013 DEFB 85 "TO,AT".
60014 DEFB 27 "CROC".
60015 DEFB 254 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 60016 DEFB 3 "ROD".
60017 DEFB 83 "IN".
60018 DEFB 96 "HOLE".
60019 DEFB 253 Separator.
60020 DEFB 3 "ROD".
60021 DEFB 83 "IN".
60022 DEFB 89 "ROUN".
60023 DEFB 96 "HOLE".
60024 DEFB 253 Separator.
60025 DEFB 3 "ROD".
60026 DEFB 84 "INTO".
60027 DEFB 96 "HOLE".
60028 DEFB 253 Separator.
60029 DEFB 3 "ROD".
60030 DEFB 84 "INTO".
60031 DEFB 89 "ROUN".
60032 DEFB 96 "HOLE".
60033 DEFB 253 Separator.
60034 DEFB 3 "ROD".
60035 DEFB 83 "IN".
60036 DEFB 85 "TO,AT".
60037 DEFB 96 "HOLE".
60038 DEFB 253 Separator.
60039 DEFB 3 "ROD".
60040 DEFB 83 "IN".
60041 DEFB 85 "TO,AT".
60042 DEFB 89 "ROUN".
60043 DEFB 96 "HOLE".
60044 DEFB 254 Terminator.
Matches e.g. "octopus with spear", "octopus using spear", "giant octopus with spear", "giant octopus using spear".
PhraseTokens_OctopusWithSpear 60045 DEFB 30 "OCTO".
60046 DEFB 88 "WITH,USIN".
60047 DEFB 19 "SPEA".
60048 DEFB 253 Separator.
60049 DEFB 98 "GIAN".
60050 DEFB 30 "OCTO".
60051 DEFB 88 "WITH,USIN".
60052 DEFB 19 "SPEA".
60053 DEFB 254 Terminator.
Matches e.g. "lion with spear", "lion using spear".
PhraseTokens_LionWithSpear 60054 DEFB 28 "LION".
60055 DEFB 88 "WITH,USIN".
60056 DEFB 19 "SPEA".
60057 DEFB 254 Terminator.
Matches e.g. "cannibals with spear", "cannibals using spear", "natives with spear", "natives using spear".
PhraseTokens_CannibalsWithSpear 60058 DEFB 23 "CANN,NATI".
60059 DEFB 88 "WITH,USIN".
60060 DEFB 19 "SPEA".
60061 DEFB 254 Terminator.
Matches e.g. "pirate with gun", "pirate using gun".
PhraseTokens_PirateWithGun 60062 DEFB 24 "PIRA".
60063 DEFB 88 "WITH,USIN".
60064 DEFB 7 "GUN".
60065 DEFB 254 Terminator.
Matches e.g. "parrot with gun", "parrot using gun".
PhraseTokens_ParrotWithGun 60066 DEFB 25 "PARR".
60067 DEFB 88 "WITH,USIN".
60068 DEFB 7 "GUN".
60069 DEFB 254 Terminator.
Matches e.g. "pirate", "pirate with gun", "pirate using gun".
PhraseTokens_PirateWithGun_2 60070 DEFB 24 "PIRA".
60071 DEFB 253 Separator.
60072 DEFB 24 "PIRA".
60073 DEFB 88 "WITH,USIN".
60074 DEFB 7 "GUN".
60075 DEFB 254 Terminator.
Matches e.g. "parrot", "parrot with gun", "parrot using gun".
PhraseTokens_ParrotWithGun_2 60076 DEFB 25 "PARR".
60077 DEFB 253 Separator.
60078 DEFB 25 "PARR".
60079 DEFB 88 "WITH,USIN".
60080 DEFB 7 "GUN".
60081 DEFB 254 Terminator.
Matches e.g. "u ladder", "up ladder".
PhraseTokens_UpLadder 60082 DEFB 53 "U,UP".
60083 DEFB 20 "LADD".
60084 DEFB 254 Terminator.
Matches e.g. "d ladder", "down ladder".
PhraseTokens_DownLadder 60085 DEFB 54 "D,DOWN".
60086 DEFB 20 "LADD".
60087 DEFB 254 Terminator.
Matches e.g. "rum".
PhraseTokens_Rum 60088 DEFB 5 "RUM".
60089 DEFB 254 Terminator.
Matches e.g. "water".
PhraseTokens_Water 60090 DEFB 102 "WATE".
60091 DEFB 254 Terminator.
Matches e.g. "ladder".
PhraseTokens_Ladder 60092 DEFB 20 "LADD".
60093 DEFB 254 Terminator.
Matches e.g. "door".
PhraseTokens_Door 60094 DEFB 31 "DOOR".
60095 DEFB 254 Terminator.
Matches e.g. "rock door", "door".
PhraseTokens_RockDoor 60096 DEFB 104 "ROCK".
60097 DEFB 31 "DOOR".
60098 DEFB 253 Separator.
60099 DEFB 31 "DOOR".
60100 DEFB 254 Terminator.
Matches e.g. "trapdoor".
PhraseTokens_TrapDoor 60101 DEFB 38 "TRAP".
60102 DEFB 254 Terminator.
Matches e.g. "shout" on its own, or "shout loud".
PhraseTokens_Shout 60103 DEFB 255 UNKNOWN.
60104 DEFB 253 Separator.
60105 DEFB 105 "LOUD".
60106 DEFB 254 Terminator.
Matches e.g. "ring".
PhraseTokens_Ring 60107 DEFB 37 "RING".
60108 DEFB 254 Terminator.
Matches e.g. "cave".
PhraseTokens_Cave 60109 DEFB 39 "CAVE".
60110 DEFB 254 Terminator.
Matches e.g. "boat", "rowing boat", "ship", "pit".
PhraseTokens_Boat 60111 DEFB 21 "BOAT".
60112 DEFB 253 Separator.
60113 DEFB 92 "ROWI".
60114 DEFB 21 "BOAT".
60115 DEFB 253 Separator.
60116 DEFB 41 "SHIP".
60117 DEFB 253 Separator.
60118 DEFB 40 "PIT".
60119 DEFB 254 Terminator.
Matches e.g. "stone", "large stone".
PhraseTokens_Stone 60120 DEFB 95 "STON".
60121 DEFB 253 Separator.
60122 DEFB 101 "LARG".
60123 DEFB 95 "STON".
60124 DEFB 254 Terminator.
Matches e.g. "stone with crowbar", "stone using crowbar", "large stone with crowbar", "large stone using crowbar".
PhraseTokens_StoneWithCrowbar 60125 DEFB 95 "STON".
60126 DEFB 88 "WITH,USIN".
60127 DEFB 16 "CROW".
60128 DEFB 253 Separator.
60129 DEFB 101 "LARG".
60130 DEFB 95 "STON".
60131 DEFB 88 "WITH,USIN".
60132 DEFB 16 "CROW".
60133 DEFB 254 Terminator.
Matches e.g. "door", "door with key", "door using key".
PhraseTokens_Door_2 60134 DEFB 31 "DOOR".
60135 DEFB 253 Separator.
60136 DEFB 31 "DOOR".
60137 DEFB 88 "WITH,USIN".
60138 DEFB 17 "KEY".
60139 DEFB 254 Terminator.
Matches e.g. "n", "north", "boat n", "boat north", "rowing boat n" "rowing boat north".
PhraseTokens_North 60140 DEFB 49 "N,NORT".
60141 DEFB 253 Separator.
60142 DEFB 21 "BOAT".
60143 DEFB 49 "N,NORT".
60144 DEFB 253 Separator.
60145 DEFB 92 "ROWI".
60146 DEFB 21 "BOAT".
60147 DEFB 49 "N,NORT".
60148 DEFB 254 Terminator.
Matches e.g. "s", "south", "boat s", "boat south", "rowing boat s", "rowing boat south".
PhraseTokens_South 60149 DEFB 50 "S,SOUT".
60150 DEFB 253 Separator.
60151 DEFB 21 "BOAT".
60152 DEFB 50 "S,SOUT".
60153 DEFB 253 Separator.
60154 DEFB 92 "ROWI".
60155 DEFB 21 "BOAT".
60156 DEFB 50 "S,SOUT".
60157 DEFB 254 Terminator.
Matches e.g. "e", "east", "boat e", "boat east", "rowing boat e", "rowing boat east".
PhraseTokens_East 60158 DEFB 51 "E,EAST".
60159 DEFB 253 Separator.
60160 DEFB 21 "BOAT".
60161 DEFB 51 "E,EAST".
60162 DEFB 253 Separator.
60163 DEFB 92 "ROWI".
60164 DEFB 21 "BOAT".
60165 DEFB 51 "E,EAST".
60166 DEFB 254 Terminator.
Matches e.g. "w", "west", "boat w", "boat west", "rowing boat w", "rowing boat west".
PhraseTokens_West 60167 DEFB 52 "W,WEST".
60168 DEFB 253 Separator.
60169 DEFB 21 "BOAT".
60170 DEFB 52 "W,WEST".
60171 DEFB 253 Separator.
60172 DEFB 92 "ROWI".
60173 DEFB 21 "BOAT".
60174 DEFB 52 "W,WEST".
60175 DEFB 254 Terminator.
Prev: 59754 Up: Map Next: 60176