diff options
| -rw-r--r-- | weatbag/tiles/n3w1.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/weatbag/tiles/n3w1.py b/weatbag/tiles/n3w1.py new file mode 100644 index 0000000..5eb7d18 --- /dev/null +++ b/weatbag/tiles/n3w1.py @@ -0,0 +1,17 @@ +class Tile: + def describe(self): + print("The beach is quiet. You see on the south children playing.") + + def action(self, player, do): + print("Sorry, I don't understand") + + def leave(self, player, direction): + if direction=='w': + print("I'm afraid you can't go west.\nThe sea on that part is " + "fool of electric eels and you don't have a transport.") + return False + elif direction=='e': + print("There is the side of a cave in front of you.\nYou can't go " + "east.") + return False + return True |
