diff options
| author | Thomas Kluyver <takowl@gmail.com> | 2013-01-05 16:10:21 +0000 |
|---|---|---|
| committer | Thomas Kluyver <takowl@gmail.com> | 2013-01-05 16:10:21 +0000 |
| commit | f89cde0eb4f11d525acdaa2bb0edbe8c48117dc3 (patch) | |
| tree | d792bcad6a872a9158dfe8c091405c01335c6156 /weatbag/words.py | |
| parent | ba2ade314b07f7e16b7860afc621df02f3df46b8 (diff) | |
Add initial documentation
Diffstat (limited to 'weatbag/words.py')
| -rw-r--r-- | weatbag/words.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/weatbag/words.py b/weatbag/words.py index 8212657..11ede7d 100644 --- a/weatbag/words.py +++ b/weatbag/words.py @@ -1,3 +1,12 @@ +"""A thesaurus of words the player might use, so you can easily accept +synonyms of the word you want. + +e.g. This will recognise take, pick, get or collect:: + + if do[0] in weatbag.words.take: + #... +""" + move = {'move','walk','go'} give = {'give', 'feed', 'present'} use = {'eat', 'use', 'wear'} |
