diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-22 02:12:27 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-29 03:21:17 +0300 |
| commit | ffc953be0e5dbefdd3e70f5136895f9d86aa91c5 (patch) | |
| tree | aaa142abbdb3f741c076954f910b09e27d943941 | |
| parent | ce8936e360c1d07a3aa72c24ca23b26449781329 (diff) | |
added comments
| -rw-r--r-- | weatbag/tiles/n2w3.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/weatbag/tiles/n2w3.py b/weatbag/tiles/n2w3.py new file mode 100644 index 0000000..dadbbf9 --- /dev/null +++ b/weatbag/tiles/n2w3.py @@ -0,0 +1,13 @@ +class Tile: + def describe(self): + print("You are walking through the trees. It looks like the path you " + "took leads to a small wooden hut.\nYou saw a tree fall and it didn't " + "make any sound and WOW... that was weired because you were there and " + "observed it!") + # "If a tree falls in a forest and no one is around to hear it, + # does it make a sound?" is a philosophical thought experiment that + # raises questions regarding observation and knowledge of reality. + + def action(self, player, do): + print("Sorry, I don't understand") + |
