summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--weatbag/tiles/n1w1.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/weatbag/tiles/n1w1.py b/weatbag/tiles/n1w1.py
new file mode 100644
index 0000000..eda65a8
--- /dev/null
+++ b/weatbag/tiles/n1w1.py
@@ -0,0 +1,9 @@
+class Tile:
+ def describe(self):
+ print("There is a small island northwest.\n"
+ "Unfortunatelly you can't swim so you need a transport to go there.\n"
+ "Luckilly to the north you see 2 children with a raft sitting "
+ "under a tree." )
+
+ def action(self, player, do):
+ pass