diff options
Diffstat (limited to 'weatbag/tiles/s3.py')
| -rw-r--r-- | weatbag/tiles/s3.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/weatbag/tiles/s3.py b/weatbag/tiles/s3.py new file mode 100644 index 0000000..1f377f1 --- /dev/null +++ b/weatbag/tiles/s3.py @@ -0,0 +1,10 @@ +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") |
