diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-20 19:18:03 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-29 03:21:16 +0300 |
| commit | fbdc3b4b0419547eb8a1534e278d97e1c2e2544f (patch) | |
| tree | 68aa2a17ec4e00c15de3f4c9b124ba027b8606fb /weatbag | |
| parent | e3612c7544341abf9e84234d4bda5f65ce8ee47a (diff) | |
Added tile n1w1.
Diffstat (limited to 'weatbag')
| -rw-r--r-- | weatbag/tiles/n1w1.py | 9 |
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 |
