diff options
Diffstat (limited to 'weatbag/words.py')
| -rw-r--r-- | weatbag/words.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/weatbag/words.py b/weatbag/words.py new file mode 100644 index 0000000..8212657 --- /dev/null +++ b/weatbag/words.py @@ -0,0 +1,11 @@ +move = {'move','walk','go'} +give = {'give', 'feed', 'present'} +use = {'eat', 'use', 'wear'} +fight = {'fight', 'kill', 'hit', 'attack'} +drop = {'drop'} +take = {'pick', 'take', 'get', 'collect'} +look = {'look', 'inspect', 'examine'} +inventory = {'inventory', 'possessions', 'belongings', 'bag'} +surroundings = {'surroundings', 'around', 'scenery'} + +prepositions = {'up', 'down', 'on', 'under', 'in', 'at', 'to'} |
