diff options
Diffstat (limited to 'weatbag/tiles/n1.py')
| -rw-r--r-- | weatbag/tiles/n1.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/weatbag/tiles/n1.py b/weatbag/tiles/n1.py new file mode 100644 index 0000000..1484ca4 --- /dev/null +++ b/weatbag/tiles/n1.py @@ -0,0 +1,8 @@ +class Tile: + def describe(self): + print("A path runs through dense jungle. To the north, you can see the " + "entrance to a cave.") + + def action(self, player, do): + # Nothing to do here yet. + print("Sorry, I don't understand") |
