diff options
| author | Thomas Kluyver <takowl@gmail.com> | 2013-01-13 15:23:46 +0000 |
|---|---|---|
| committer | Thomas Kluyver <takowl@gmail.com> | 2013-01-13 15:23:46 +0000 |
| commit | 8ac7a65685ffe58529087bbe5a0063d1e0168f5c (patch) | |
| tree | c25e5bac9f8c51627f2f9f1c9fa8380d075f7841 /weatbag/words.py | |
| parent | d327e21c9c8fec8dea82035e87bfd1a3ba2b813c (diff) | |
New framework to allow combining items.
Diffstat (limited to 'weatbag/words.py')
| -rw-r--r-- | weatbag/words.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/weatbag/words.py b/weatbag/words.py index 25f762e..94d2134 100644 --- a/weatbag/words.py +++ b/weatbag/words.py @@ -6,7 +6,7 @@ e.g. This will recognise take, pick, get or collect:: if do[0] in weatbag.words.take: #... """ - +# Verbs move = {'move','walk','go'} give = {'give', 'feed', 'present'} use = {'eat', 'use', 'wear'} @@ -15,7 +15,10 @@ drop = {'drop'} take = {'pick', 'take', 'get', 'collect'} look = {'look', 'inspect', 'examine'} attack = {'attack', 'swing', 'hit', 'punch', 'fight'} +combine = {'combine', 'join', 'mix'} + +# Nouns inventory = {'inventory', 'possessions', 'belongings', 'bag'} surroundings = {'surroundings', 'around', 'scenery'} -prepositions = {'up', 'down', 'on', 'under', 'in', 'at', 'to'} +prepositions = {'up', 'down', 'on', 'under', 'in', 'at', 'to', 'with', 'and'} |
