diff options
| author | Julian Irwin <julian.irwin@gmail.com> | 2013-01-08 21:32:24 -0600 |
|---|---|---|
| committer | Julian Irwin <julian.irwin@gmail.com> | 2013-01-08 21:32:24 -0600 |
| commit | 0e7d8f5218800643115b6d127356949f4574a0e0 (patch) | |
| tree | 275de4b368603937ea85c8f137ea686a0f1c2431 /weatbag | |
| parent | 3400844980917bb3d59da322a3e33f55f81afe12 (diff) | |
Added s2 (basically stub). I plan to add some adventures in this direction.
Diffstat (limited to 'weatbag')
| -rw-r--r-- | weatbag/tiles/s1.py | 2 | ||||
| -rw-r--r-- | weatbag/tiles/s2.py | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/weatbag/tiles/s1.py b/weatbag/tiles/s1.py index efdc041..c12ac9b 100644 --- a/weatbag/tiles/s1.py +++ b/weatbag/tiles/s1.py @@ -1,6 +1,6 @@ class Tile: def describe(self): - print("You push through the undergrowth - there's hardly a path here at all.") + print("You push through the undergrowth - the path is overgrown but continues on..") def action(self, player, do): # Nothing to do here yet. diff --git a/weatbag/tiles/s2.py b/weatbag/tiles/s2.py new file mode 100644 index 0000000..59f66e2 --- /dev/null +++ b/weatbag/tiles/s2.py @@ -0,0 +1,11 @@ + +from weatbag import words + +class Tile: + def describe(self): + print( "The foliage along the path begins to thin and you " + "notice that you are now climbing a gentle slope.") + + def action(self, player, do): + # Nothing to do here yet. + print("Sorry, I don't understand") |
