diff options
| author | Thomas <thomas@study-old.(none)> | 2012-12-29 19:36:19 +0000 |
|---|---|---|
| committer | Thomas <thomas@study-old.(none)> | 2012-12-29 19:36:19 +0000 |
| commit | ba2ade314b07f7e16b7860afc621df02f3df46b8 (patch) | |
| tree | 3299a91636c0dea59d5ae1cea48d091d609aae63 /weatbag/words.py | |
| parent | dfa96fc3a20785d1d405003748a368e5b2ac3aec (diff) | |
Create initial game framework.
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'} |
