Prev: E508 Up: Map Next: E714
E519: 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. "urn".
PhraseTokens_Urn E519 DEFB $2F "URN".
E51A DEFB $FE Terminator.
Matches e.g. "helmet", "bronze helmet".
PhraseTokens_Helmet E51B DEFB $32 "HELM".
E51C DEFB $FD Separator.
E51D DEFB $64 "BRON".
E51E DEFB $32 "HELM".
E51F DEFB $FE Terminator.
Matches e.g. "monolith", "stone monolith".
PhraseTokens_Monolith E520 DEFB $35 "MONO".
E521 DEFB $FD Separator.
E522 DEFB $69 "STON".
E523 DEFB $35 "MONO".
E524 DEFB $FE Terminator.
Matches e.g. "sword".
PhraseTokens_Sword E525 DEFB $3C "SWOR".
E526 DEFB $FE Terminator.
Matches e.g. "amulet", "talisman".
PhraseTokens_Amulet E527 DEFB $44 "AMUL,TALI".
E528 DEFB $FE Terminator.
Matches e.g. "staff", "oak staff".
PhraseTokens_Staff E529 DEFB $4F "STAF".
E52A DEFB $FD Separator.
E52B DEFB $71 "OAK".
E52C DEFB $4F "STAF".
E52D DEFB $FE Terminator.
Matches e.g. "body".
PhraseTokens_Body E52E DEFB $50 "BODY".
E52F DEFB $FE Terminator.
Matches e.g. "torc", "bronze torc".
PhraseTokens_Torc E530 DEFB $5A "TORC".
E531 DEFB $FD Separator.
E532 DEFB $64 "BRON".
E533 DEFB $5A "TORC".
E534 DEFB $FE Terminator.
Matches e.g. "salt".
PhraseTokens_Salt E535 DEFB $2C "SALT".
E536 DEFB $FE Terminator.
Matches e.g. "pot", "clay pot".
PhraseTokens_Pot E537 DEFB $2D "POT".
E538 DEFB $FD Separator.
E539 DEFB $65 "CLAY".
E53A DEFB $2D "POT".
E53B DEFB $FE Terminator.
Matches e.g. "acorns".
PhraseTokens_Acorns E53C DEFB $2E "ACOR".
E53D DEFB $FE Terminator.
Matches e.g. "food".
PhraseTokens_Food E53E DEFB $33 "FOOD".
E53F DEFB $FE Terminator.
Matches e.g. "iron".
PhraseTokens_Iron E540 DEFB $34 "IRON".
E541 DEFB $FE Terminator.
Matches e.g. "vase".
PhraseTokens_Vase E542 DEFB $3A "VASE".
E543 DEFB $FE Terminator.
Matches e.g. "meat".
PhraseTokens_Meat E544 DEFB $3D "MEAT".
E545 DEFB $FE Terminator.
Matches e.g. "slab", "stone slab".
PhraseTokens_Slab E546 DEFB $30 "SLAB".
E547 DEFB $FD Separator.
E548 DEFB $69 "STON".
E549 DEFB $30 "SLAB".
E54A DEFB $FE Terminator.
Matches e.g. "rope".
PhraseTokens_Rope E54B DEFB $47 "ROPE".
E54C DEFB $FE Terminator.
Matches e.g. "skull", "human skull".
PhraseTokens_Skull E54D DEFB $5B "SKUL".
E54E DEFB $FD Separator.
E54F DEFB $70 "HUMA".
E550 DEFB $5B "SKUL".
E551 DEFB $FE Terminator.
Matches e.g. "shield".
PhraseTokens_Shield E552 DEFB $4A "SHIE".
E553 DEFB $FE Terminator.
Matches e.g. "ladder".
PhraseTokens_Ladder E554 DEFB $4D "LADD".
E555 DEFB $FE Terminator.
Matches e.g. "cloak", "white cloak".
PhraseTokens_Cloak E556 DEFB $51 "CLOA".
E557 DEFB $FD Separator.
E558 DEFB $6B "WHIT".
E559 DEFB $51 "CLOA".
E55A DEFB $FE Terminator.
Matches e.g. "silver".
PhraseTokens_Silver E55B DEFB $52 "SILV".
E55C DEFB $FE Terminator.
Matches e.g. "meat from trader".
PhraseTokens_MeatFromTrader E55D DEFB $3D "MEAT".
E55E DEFB $61 "FROM".
E55F DEFB $3E "TRAD".
E560 DEFB $FE Terminator.
Matches e.g. "amulet from druid", "talisman from druid".
PhraseTokens_AmuletFromDruid E561 DEFB $44 "AMUL,TALI".
E562 DEFB $61 "FROM".
E563 DEFB $43 "DRUI".
E564 DEFB $FE Terminator.
Matches e.g. "cloak from body".
PhraseTokens_CloakFromBody E565 DEFB $51 "CLOA".
E566 DEFB $61 "FROM".
E567 DEFB $50 "BODY".
E568 DEFB $FE Terminator.
Matches e.g. "meat to bear".
PhraseTokens_MeatToBear E569 DEFB $3D "MEAT".
E56A DEFB $6D "TO".
E56B DEFB $41 "BEAR".
E56C DEFB $FE Terminator.
Matches e.g. "meat to wolves".
PhraseTokens_MeatToWolves E56D DEFB $3D "MEAT".
E56E DEFB $6D "TO".
E56F DEFB $40 "WOLV".
E570 DEFB $FE Terminator.
Matches e.g. "acorns to raven".
PhraseTokens_AcornsToRaven E571 DEFB $2E "ACOR".
E572 DEFB $6D "TO".
E573 DEFB $31 "RAVE".
E574 DEFB $FE Terminator.
Matches e.g. "sword to trader".
PhraseTokens_SwordToTrader E575 DEFB $3C "SWOR".
E576 DEFB $6D "TO".
E577 DEFB $3E "TRAD".
E578 DEFB $FE Terminator.
Matches e.g. "salt to guard".
PhraseTokens_SaltToGuard E579 DEFB $2C "SALT".
E57A DEFB $6D "TO".
E57B DEFB $42 "GUAR".
E57C DEFB $FE Terminator.
Matches e.g. "iron to trader".
PhraseTokens_IronToTrader E57D DEFB $34 "IRON".
E57E DEFB $6D "TO".
E57F DEFB $3E "TRAD".
E580 DEFB $FE Terminator.
Matches e.g. "roman to druid".
PhraseTokens_RomanToDruid E581 DEFB $25 "ROMA".
E582 DEFB $6D "TO".
E583 DEFB $43 "DRUI".
E584 DEFB $FE Terminator.
Matches e.g. "food to bear".
PhraseTokens_FoodToBear E585 DEFB $33 "FOOD".
E586 DEFB $6D "TO".
E587 DEFB $41 "BEAR".
E588 DEFB $FE Terminator.
Matches e.g. "food to wolves".
PhraseTokens_FoodToWolves E589 DEFB $33 "FOOD".
E58A DEFB $6D "TO".
E58B DEFB $40 "WOLV".
E58C DEFB $FE Terminator.
Matches e.g. "salt to trader".
PhraseTokens_SaltToTrader E58D DEFB $2C "SALT".
E58E DEFB $6D "TO".
E58F DEFB $3E "TRAD".
E590 DEFB $FE Terminator.
Matches e.g. "sword from slab", "sword from stone slab", "sword from groove".
PhraseTokens_SwordFromSlab E591 DEFB $3C "SWOR".
E592 DEFB $61 "FROM".
E593 DEFB $30 "SLAB".
E594 DEFB $FD Separator.
E595 DEFB $3C "SWOR".
E596 DEFB $61 "FROM".
E597 DEFB $69 "STON".
E598 DEFB $30 "SLAB".
E599 DEFB $FD Separator.
E59A DEFB $3C "SWOR".
E59B DEFB $61 "FROM".
E59C DEFB $49 "GROO".
E59D DEFB $FE Terminator.
Matches e.g. "salt to warrior", "salt to armed warrior".
PhraseTokens_SaltToWarrior E59E DEFB $2C "SALT".
E59F DEFB $6D "TO".
E5A0 DEFB $37 "WARR".
E5A1 DEFB $FD Separator.
E5A2 DEFB $2C "SALT".
E5A3 DEFB $6D "TO".
E5A4 DEFB $72 "ARME".
E5A5 DEFB $37 "WARR".
E5A6 DEFB $FE Terminator.
Matches e.g. "helmet to trader", "bronze helmet to trader".
PhraseTokens_HelmetToTrader E5A7 DEFB $32 "HELM".
E5A8 DEFB $6D "TO".
E5A9 DEFB $3E "TRAD".
E5AA DEFB $FD Separator.
E5AB DEFB $64 "BRON".
E5AC DEFB $32 "HELM".
E5AD DEFB $6D "TO".
E5AE DEFB $3E "TRAD".
E5AF DEFB $FE Terminator.
Matches e.g. "shield to trader".
PhraseTokens_ShieldToTrader E5B0 DEFB $4A "SHIE".
E5B1 DEFB $6D "TO".
E5B2 DEFB $3E "TRAD".
E5B3 DEFB $FE Terminator.
Matches e.g. "iron to guard".
PhraseTokens_IronToGuard E5B4 DEFB $34 "IRON".
E5B5 DEFB $6D "TO".
E5B6 DEFB $42 "GUAR".
E5B7 DEFB $FE Terminator.
Matches e.g. "helmet to guard", "bronze helmet to guard".
PhraseTokens_HelmetToGuard E5B8 DEFB $32 "HELM".
E5B9 DEFB $6D "TO".
E5BA DEFB $42 "GUAR".
E5BB DEFB $FD Separator.
E5BC DEFB $64 "BRON".
E5BD DEFB $32 "HELM".
E5BE DEFB $6D "TO".
E5BF DEFB $42 "GUAR".
E5C0 DEFB $FE Terminator.
Matches e.g. "silver to druid".
PhraseTokens_SilverToDruid E5C1 DEFB $52 "SILV".
E5C2 DEFB $6D "TO".
E5C3 DEFB $43 "DRUI".
E5C4 DEFB $FE Terminator.
Matches e.g. "helmet to druid", "bronze helmet to druid".
PhraseTokens_HelmetToDruid E5C5 DEFB $32 "HELM".
E5C6 DEFB $6D "TO".
E5C7 DEFB $43 "DRUI".
E5C8 DEFB $FD Separator.
E5C9 DEFB $64 "BRON".
E5CA DEFB $32 "HELM".
E5CB DEFB $6D "TO".
E5CC DEFB $43 "DRUI".
E5CD DEFB $FE Terminator.
Matches e.g. "iron to druid".
PhraseTokens_IronToDruid E5CE DEFB $34 "IRON".
E5CF DEFB $6D "TO".
E5D0 DEFB $43 "DRUI".
E5D1 DEFB $FE Terminator.
Matches e.g. "meat at bear".
PhraseTokens_MeatAtBear E5D2 DEFB $3D "MEAT".
E5D3 DEFB $60 "AT".
E5D4 DEFB $41 "BEAR".
E5D5 DEFB $FE Terminator.
Matches e.g. "meat at wolves".
PhraseTokens_MeatAtWolves E5D6 DEFB $3D "MEAT".
E5D7 DEFB $60 "AT".
E5D8 DEFB $40 "WOLV".
E5D9 DEFB $FE Terminator.
Matches e.g. "food at bear".
PhraseTokens_FoodAtBear E5DA DEFB $33 "FOOD".
E5DB DEFB $60 "AT".
E5DC DEFB $41 "BEAR".
E5DD DEFB $FE Terminator.
Matches e.g. "food at wolves".
PhraseTokens_FoodAtWolves E5DE DEFB $33 "FOOD".
E5DF DEFB $60 "AT".
E5E0 DEFB $40 "WOLV".
E5E1 DEFB $FE Terminator.
Matches e.g. "roman".
PhraseTokens_Roman E5E2 DEFB $25 "ROMA".
E5E3 DEFB $FE Terminator.
Matches e.g. "hare".
PhraseTokens_Hare E5E4 DEFB $29 "HARE".
E5E5 DEFB $FE Terminator.
Matches e.g. "ox", "wild ox".
PhraseTokens_Ox E5E6 DEFB $48 "OX".
E5E7 DEFB $FD Separator.
E5E8 DEFB $63 "WILD".
E5E9 DEFB $48 "OX".
E5EA DEFB $FE Terminator.
Matches e.g. "trap", "hare from trap".
PhraseTokens_Trap E5EB DEFB $2A "TRAP".
E5EC DEFB $FD Separator.
E5ED DEFB $29 "HARE".
E5EE DEFB $61 "FROM".
E5EF DEFB $2A "TRAP".
E5F0 DEFB $FE Terminator.
Matches e.g. "pig".
PhraseTokens_Pig E5F1 DEFB $46 "PIG".
E5F2 DEFB $FE Terminator.
Matches e.g. "water".
PhraseTokens_Water E5F3 DEFB $54 "WATE".
E5F4 DEFB $FE Terminator.
Matches e.g. "in pool", "into pool", "in pool of water", "into pool of water", "in deep pool", "into deep pool", "in deep pool of water", "into deep pool of water".
PhraseTokens_IntoPool E5F5 DEFB $6F "IN,INTO".
E5F6 DEFB $2B "POOL".
E5F7 DEFB $FD Separator.
E5F8 DEFB $6F "IN,INTO".
E5F9 DEFB $2B "POOL".
E5FA DEFB $68 "OF".
E5FB DEFB $54 "WATE".
E5FC DEFB $FD Separator.
E5FD DEFB $6F "IN,INTO".
E5FE DEFB $73 "DEEP".
E5FF DEFB $2B "POOL".
E600 DEFB $FD Separator.
E601 DEFB $6F "IN,INTO".
E602 DEFB $73 "DEEP".
E603 DEFB $2B "POOL".
E604 DEFB $68 "OF".
E605 DEFB $54 "WATE".
E606 DEFB $FE Terminator.
Matches e.g. "in lake", "into lake".
PhraseTokens_IntoLake E607 DEFB $6F "IN,INTO".
E608 DEFB $4C "LAKE".
E609 DEFB $FE Terminator.
Matches e.g. "in water", "into water".
PhraseTokens_IntoWater E60A DEFB $6F "IN,INTO".
E60B DEFB $54 "WATE".
E60C DEFB $FE Terminator.
Matches e.g. "on straw", "onto straw", "on pile of straw", "onto pile of straw", "on straw pile", "onto straw pile", "from platform".
PhraseTokens_OntoStraw E60D DEFB $6E "ON,ONTO".
E60E DEFB $4E "STRA".
E60F DEFB $FD Separator.
E610 DEFB $6E "ON,ONTO".
E611 DEFB $67 "PILE".
E612 DEFB $68 "OF".
E613 DEFB $4E "STRA".
E614 DEFB $FD Separator.
E615 DEFB $6E "ON,ONTO".
E616 DEFB $4E "STRA".
E617 DEFB $67 "PILE".
E618 DEFB $FD Separator.
E619 DEFB $61 "FROM".
E61A DEFB $53 "PLAT".
E61B DEFB $FE Terminator.
Matches e.g. "out of pool", "out of pool of water", "out of deep pool", "out of deep pool of water".
PhraseTokens_OutOfPool E61C DEFB $74 "OUT".
E61D DEFB $68 "OF".
E61E DEFB $2B "POOL".
E61F DEFB $FD Separator.
E620 DEFB $74 "OUT".
E621 DEFB $68 "OF".
E622 DEFB $2B "POOL".
E623 DEFB $68 "OF".
E624 DEFB $54 "WATE".
E625 DEFB $FD Separator.
E626 DEFB $74 "OUT".
E627 DEFB $68 "OF".
E628 DEFB $73 "DEEP".
E629 DEFB $2B "POOL".
E62A DEFB $FD Separator.
E62B DEFB $74 "OUT".
E62C DEFB $68 "OF".
E62D DEFB $73 "DEEP".
E62E DEFB $2B "POOL".
E62F DEFB $68 "OF".
E630 DEFB $54 "WATE".
E631 DEFB $FE Terminator.
Matches e.g. "out of lake".
PhraseTokens_OutOfLake E632 DEFB $74 "OUT".
E633 DEFB $68 "OF".
E634 DEFB $4C "LAKE".
E635 DEFB $FE Terminator.
Matches e.g. "out of water".
PhraseTokens_OutOfWater E636 DEFB $74 "OUT".
E637 DEFB $68 "OF".
E638 DEFB $54 "WATE".
E639 DEFB $FE Terminator.
Matches e.g. "out".
PhraseTokens_Out E63A DEFB $74 "OUT".
E63B DEFB $FE Terminator.
Matches e.g. "u ladder", "up ladder".
PhraseTokens_UpLadder E63C DEFB $0C "U,UP".
E63D DEFB $4D "LADD".
E63E DEFB $FE Terminator.
Matches e.g. "d ladder", "down ladder".
PhraseTokens_DownLadder E63F DEFB $0D "D,DOWN".
E640 DEFB $4D "LADD".
E641 DEFB $FE Terminator.
Matches e.g. "n", "north".
PhraseTokens_North E642 DEFB $08 "N,NORT".
E643 DEFB $FE Terminator.
Matches e.g. "s", "south".
PhraseTokens_South E644 DEFB $09 "S,SOUT".
E645 DEFB $FE Terminator.
Matches e.g. "e", "east".
PhraseTokens_East E646 DEFB $0A "E,EAST".
E647 DEFB $FE Terminator.
Matches e.g. "w", "west".
PhraseTokens_West E648 DEFB $0B "W,WEST".
E649 DEFB $FE Terminator.
Matches e.g. "u", "up".
PhraseTokens_Up E64A DEFB $0C "U,UP".
E64B DEFB $FE Terminator.
Matches e.g. "d", "down".
PhraseTokens_Down E64C DEFB $0D "D,DOWN".
E64D DEFB $FE Terminator.
Matches e.g. "fissure", "monolith", "stone monolith".
PhraseTokens_Fissure E64E DEFB $36 "FISS".
E64F DEFB $FD Separator.
E650 DEFB $35 "MONO".
E651 DEFB $FD Separator.
E652 DEFB $69 "STON".
E653 DEFB $35 "MONO".
E654 DEFB $FE Terminator.
Matches e.g. "hut".
PhraseTokens_Hut E655 DEFB $39 "HUT".
E656 DEFB $FE Terminator.
Matches e.g. "cavern".
PhraseTokens_Cavern E657 DEFB $3B "CAVE".
E658 DEFB $FE Terminator.
Matches e.g. "in ring", "into ring", "in crystal ring", "into crystal ring", "in ring of crystals", "into ring of crystals".
PhraseTokens_IntoRing E659 DEFB $6F "IN,INTO".
E65A DEFB $45 "RING".
E65B DEFB $FD Separator.
E65C DEFB $6F "IN,INTO".
E65D DEFB $66 "CRYS".
E65E DEFB $45 "RING".
E65F DEFB $FD Separator.
E660 DEFB $6F "IN,INTO".
E661 DEFB $45 "RING".
E662 DEFB $68 "OF".
E663 DEFB $66 "CRYS".
E664 DEFB $FE Terminator.
Matches e.g. "ring", "crystal ring", "ring of crystals".
PhraseTokens_Ring E665 DEFB $45 "RING".
E666 DEFB $FD Separator.
E667 DEFB $66 "CRYS".
E668 DEFB $45 "RING".
E669 DEFB $FD Separator.
E66A DEFB $45 "RING".
E66B DEFB $68 "OF".
E66C DEFB $66 "CRYS".
E66D DEFB $FE Terminator.
Matches e.g. "urn in fire", "urn in flames", "urn into fire", "urn into flames".
PhraseTokens_UrnIntoFire E66E DEFB $2F "URN".
E66F DEFB $6F "IN,INTO".
E670 DEFB $4B "FIRE,FLAM".
E671 DEFB $FE Terminator.
Matches e.g. "ladder against platform".
PhraseTokens_LadderAgainstPlatform E672 DEFB $4D "LADD".
E673 DEFB $62 "AGAI".
E674 DEFB $53 "PLAT".
E675 DEFB $FE Terminator.
Matches e.g. "sword on slab", "sword onto slab", "sword on stone slab", "sword onto stone slab", "sword in groove", "sword into groove".
PhraseTokens_SwordOnSlab E676 DEFB $3C "SWOR".
E677 DEFB $6E "ON,ONTO".
E678 DEFB $30 "SLAB".
E679 DEFB $FD Separator.
E67A DEFB $3C "SWOR".
E67B DEFB $6E "ON,ONTO".
E67C DEFB $69 "STON".
E67D DEFB $30 "SLAB".
E67E DEFB $FD Separator.
E67F DEFB $3C "SWOR".
E680 DEFB $6F "IN,INTO".
E681 DEFB $49 "GROO".
E682 DEFB $FE Terminator.
Matches e.g. "meat from trader", "meat".
PhraseTokens__MeatFromTrader E683 DEFB $3D "MEAT".
E684 DEFB $61 "FROM".
E685 DEFB $3E "TRAD".
E686 DEFB $FD Separator.
E687 DEFB $3D "MEAT".
E688 DEFB $FE Terminator.
Matches e.g. "meat with iron", "meat using iron", "meat from trader with iron", "meat from trader using iron".
PhraseTokens_MeatWithIron E689 DEFB $3D "MEAT".
E68A DEFB $6C "WITH,USIN".
E68B DEFB $34 "IRON".
E68C DEFB $FD Separator.
E68D DEFB $3D "MEAT".
E68E DEFB $61 "FROM".
E68F DEFB $3E "TRAD".
E690 DEFB $6C "WITH,USIN".
E691 DEFB $34 "IRON".
E692 DEFB $FE Terminator.
Matches e.g. "meat with salt", "meat using salt", "meat from trader with salt", "meat from trader using salt", "meat with acorns", "meat using acorns", "meat from trader with acorns", "meat from trader using acorns", "meat with helmet", "meat using helmet", "meat from trader with helmet", "meat from trader using helmet", "meat with sword", "meat using sword", "meat from trader with sword", "meat from trader using sword".
PhraseTokens_MeatWithSalt E693 DEFB $3D "MEAT".
E694 DEFB $6C "WITH,USIN".
E695 DEFB $2C "SALT".
E696 DEFB $FD Separator.
E697 DEFB $3D "MEAT".
E698 DEFB $61 "FROM".
E699 DEFB $3E "TRAD".
E69A DEFB $6C "WITH,USIN".
E69B DEFB $2C "SALT".
E69C DEFB $FD Separator.
E69D DEFB $3D "MEAT".
E69E DEFB $6C "WITH,USIN".
E69F DEFB $2E "ACOR".
E6A0 DEFB $FD Separator.
E6A1 DEFB $3D "MEAT".
E6A2 DEFB $61 "FROM".
E6A3 DEFB $3E "TRAD".
E6A4 DEFB $6C "WITH,USIN".
E6A5 DEFB $2E "ACOR".
E6A6 DEFB $FD Separator.
E6A7 DEFB $3D "MEAT".
E6A8 DEFB $6C "WITH,USIN".
E6A9 DEFB $32 "HELM".
E6AA DEFB $FD Separator.
E6AB DEFB $3D "MEAT".
E6AC DEFB $61 "FROM".
E6AD DEFB $3E "TRAD".
E6AE DEFB $6C "WITH,USIN".
E6AF DEFB $32 "HELM".
E6B0 DEFB $FD Separator.
E6B1 DEFB $3D "MEAT".
E6B2 DEFB $6C "WITH,USIN".
E6B3 DEFB $3C "SWOR".
E6B4 DEFB $FD Separator.
E6B5 DEFB $3D "MEAT".
E6B6 DEFB $61 "FROM".
E6B7 DEFB $3E "TRAD".
E6B8 DEFB $6C "WITH,USIN".
E6B9 DEFB $3C "SWOR".
E6BA DEFB $FE Terminator.
Matches e.g. "in ring", "into ring", "in crystal ring", "into crystal ring", "in ring of crystals", "into ring of crystals".
PhraseTokens_IntoRing_Duplicate E6BB DEFB $6F "IN,INTO".
E6BC DEFB $45 "RING".
E6BD DEFB $FD Separator.
E6BE DEFB $6F "IN,INTO".
E6BF DEFB $66 "CRYS".
E6C0 DEFB $45 "RING".
E6C1 DEFB $FD Separator.
E6C2 DEFB $6F "IN,INTO".
E6C3 DEFB $45 "RING".
E6C4 DEFB $68 "OF".
E6C5 DEFB $66 "CRYS".
E6C6 DEFB $FE Terminator.
Matches e.g. "roman", "roman with sword", "roman using sword".
PhraseTokens_RomanWithSword E6C7 DEFB $25 "ROMA".
E6C8 DEFB $FD Separator.
E6C9 DEFB $25 "ROMA".
E6CA DEFB $6C "WITH,USIN".
E6CB DEFB $3C "SWOR".
E6CC DEFB $FE Terminator.
Matches e.g. "fomorian", "fomorian with sword", "fomorian using sword".
PhraseTokens_Fomorian E6CD DEFB $26 "FOMO".
E6CE DEFB $FD Separator.
E6CF DEFB $26 "FOMO".
E6D0 DEFB $6C "WITH,USIN".
E6D1 DEFB $3C "SWOR".
E6D2 DEFB $FE Terminator.
Matches e.g. "hare", "hare with sword", "hare using sword".
PhraseTokens_HareWithSword E6D3 DEFB $29 "HARE".
E6D4 DEFB $FD Separator.
E6D5 DEFB $29 "HARE".
E6D6 DEFB $6C "WITH,USIN".
E6D7 DEFB $3C "SWOR".
E6D8 DEFB $FE Terminator.
Matches e.g. "trader", "trader with sword", "trader using sword".
PhraseTokens_Trader E6D9 DEFB $3E "TRAD".
E6DA DEFB $FD Separator.
E6DB DEFB $3E "TRAD".
E6DC DEFB $6C "WITH,USIN".
E6DD DEFB $3C "SWOR".
E6DE DEFB $FE Terminator.
Matches e.g. "warrior", "armed warrior".
PhraseTokens_Warrior E6DF DEFB $37 "WARR".
E6E0 DEFB $FD Separator.
E6E1 DEFB $72 "ARME".
E6E2 DEFB $37 "WARR".
E6E3 DEFB $FE Terminator.
Matches e.g. "wolves", "wolves with sword", "wolves using sword".
PhraseTokens_Wolves E6E4 DEFB $40 "WOLV".
E6E5 DEFB $FD Separator.
E6E6 DEFB $40 "WOLV".
E6E7 DEFB $6C "WITH,USIN".
E6E8 DEFB $3C "SWOR".
E6E9 DEFB $FE Terminator.
Matches e.g. "bear", "bear with sword", "bear using sword".
PhraseTokens_Bear E6EA DEFB $41 "BEAR".
E6EB DEFB $FD Separator.
E6EC DEFB $41 "BEAR".
E6ED DEFB $6C "WITH,USIN".
E6EE DEFB $3C "SWOR".
E6EF DEFB $FE Terminator.
Matches e.g. "guard", "guard with sword", "guard using sword".
PhraseTokens_Guard E6F0 DEFB $42 "GUAR".
E6F1 DEFB $FD Separator.
E6F2 DEFB $42 "GUAR".
E6F3 DEFB $6C "WITH,USIN".
E6F4 DEFB $3C "SWOR".
E6F5 DEFB $FE Terminator.
Matches e.g. "druid", "druid with sword", "druid using sword".
PhraseTokens_Druid E6F6 DEFB $43 "DRUI".
E6F7 DEFB $FD Separator.
E6F8 DEFB $43 "DRUI".
E6F9 DEFB $6C "WITH,USIN".
E6FA DEFB $3C "SWOR".
E6FB DEFB $FE Terminator.
Matches e.g. "pig", "pig with sword", "pig using sword".
PhraseTokens_PigWithSword E6FC DEFB $46 "PIG".
E6FD DEFB $FD Separator.
E6FE DEFB $46 "PIG".
E6FF DEFB $6C "WITH,USIN".
E700 DEFB $3C "SWOR".
E701 DEFB $FE Terminator.
Matches e.g. "ox", "wild ox", "ox with sword", "ox using sword", "wild ox with sword", "wild ox using sword".
PhraseTokens_OxWithSword E702 DEFB $48 "OX".
E703 DEFB $FD Separator.
E704 DEFB $63 "WILD".
E705 DEFB $48 "OX".
E706 DEFB $FD Separator.
E707 DEFB $48 "OX".
E708 DEFB $6C "WITH,USIN".
E709 DEFB $3C "SWOR".
E70A DEFB $FD Separator.
E70B DEFB $63 "WILD".
E70C DEFB $48 "OX".
E70D DEFB $6C "WITH,USIN".
E70E DEFB $3C "SWOR".
E70F DEFB $FE Terminator.
Matches e.g. "hill".
PhraseTokens_Hill E710 DEFB $5C "HILL".
E711 DEFB $FE Terminator.
Matches e.g. "broch".
PhraseTokens_Broch E712 DEFB $5D "BROC".
E713 DEFB $FE Terminator.
Prev: E508 Up: Map Next: E714