diff options
| author | Ben Friedland <ben174@gmail.com> | 2013-01-07 05:16:17 -0800 |
|---|---|---|
| committer | Ben Friedland <ben174@gmail.com> | 2013-01-07 05:16:17 -0800 |
| commit | bf461cbd055b2f1a4c5b092f5e5f44a4c64f1a03 (patch) | |
| tree | 303a64de519dd47aeff578004256bdfdc808e032 /weatbag/tiles/n2.py | |
| parent | cbe1bce30306133a02de664008ca552f3618302c (diff) | |
Orc battle at entrance of cave. Player now has hit_points.
Diffstat (limited to 'weatbag/tiles/n2.py')
| -rw-r--r-- | weatbag/tiles/n2.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/weatbag/tiles/n2.py b/weatbag/tiles/n2.py index b903ed3..a9bca43 100644 --- a/weatbag/tiles/n2.py +++ b/weatbag/tiles/n2.py @@ -2,7 +2,9 @@ from weatbag import words class Tile: def describe(self): - print("You are standing in the mouth of a cave. The air feels cool.") + print("You are standing in the mouth of a cave. The air feels cool and " + "is filled with the stench of rotting flesh. " + "A dark path leads to the north. An exit to the south.") def leave(self, player, direction): if direction=='s': |
