diff options
Diffstat (limited to 'weatbag/tiles/s2.py')
| -rw-r--r-- | weatbag/tiles/s2.py | 11 |
1 files changed, 11 insertions, 0 deletions
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") |
