summaryrefslogtreecommitdiffstats
path: root/weatbag/words.py
diff options
context:
space:
mode:
authorJulian Irwin <julian.irwin@gmail.com>2013-01-26 13:03:36 -0500
committerJulian Irwin <julian.irwin@gmail.com>2013-01-26 13:03:36 -0500
commit96ec51791405fd8982fdda3ee430a0520f0a822c (patch)
tree337afbc8831baddd574700b0a0150102d5120e69 /weatbag/words.py
parent7f6cb008d54bb650662605ecd702089f87eea70d (diff)
parentf19f86792b33beaf2e1e12989a85557ae7fbc29c (diff)
Merge branch 'master' of git://github.com/takluyver/weatbag into southern-tiles-1
Getting everything up to date before I continue. Also see if anyone has added cool new features.
Diffstat (limited to 'weatbag/words.py')
-rw-r--r--weatbag/words.py7
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'}