diff options
| author | George Angelopoulos <l4than.d3vers@gmail.com> | 2013-04-24 17:06:30 +0300 |
|---|---|---|
| committer | George Angelopoulos <l4than.d3vers@gmail.com> | 2013-04-24 17:06:30 +0300 |
| commit | f2a794bd17cf21a15a43e8fd76a0fde5e000f23b (patch) | |
| tree | 43b59e54d67750cd7628972fa9944fe2234fdbb7 /weatbag/tiles | |
| parent | 4af6ad330528179fe53b897c880116037b8a51bd (diff) | |
deleted placeholder files
Diffstat (limited to 'weatbag/tiles')
| -rw-r--r-- | weatbag/tiles/s1e2.py | 22 | ||||
| -rw-r--r-- | weatbag/tiles/s2e2.py | 22 | ||||
| -rw-r--r-- | weatbag/tiles/s3e1.py | 22 |
3 files changed, 0 insertions, 66 deletions
diff --git a/weatbag/tiles/s1e2.py b/weatbag/tiles/s1e2.py deleted file mode 100644 index 9ea254f..0000000 --- a/weatbag/tiles/s1e2.py +++ /dev/null @@ -1,22 +0,0 @@ -class Tile: - - def describe(self): - print("s1e2") - - def action(self, player, do): - pass - - # For future hackers: - # I have placed this restriction here so that - # the player cannot accidentaly enter - # the bug quest early. (which should start by going south from e1) - # Unless the bug quest is appropriately modified, - # please do not remove this restriction from this tile. - def leave(self, player, direction): - restricted_directions = { 'w' } - if direction in restricted_directions: - print("The undergrowth in that direction " - "is impassable. You turn back.") - return False - else: - return True diff --git a/weatbag/tiles/s2e2.py b/weatbag/tiles/s2e2.py deleted file mode 100644 index 5665a4e..0000000 --- a/weatbag/tiles/s2e2.py +++ /dev/null @@ -1,22 +0,0 @@ -class Tile: - - def describe(self): - print("s2e2") - - def action(self, player, do): - pass - - # For future hackers: - # I have placed this restriction here so that - # the player cannot accidentaly enter - # the bug quest early. (which should start by going south from e1) - # Unless the bug quest is appropriately modified, - # please do not remove this restriction from this tile. - def leave(self, player, direction): - restricted_directions = { 'w' } - if direction in restricted_directions: - print("The undergrowth in that direction " - "is impassable. You turn back.") - return False - else: - return True diff --git a/weatbag/tiles/s3e1.py b/weatbag/tiles/s3e1.py deleted file mode 100644 index 2ce9adf..0000000 --- a/weatbag/tiles/s3e1.py +++ /dev/null @@ -1,22 +0,0 @@ -class Tile: - - def describe(self): - print("s3e1") - - def action(self, player, do): - pass - - # For future hackers: - # I have placed this restriction here so that - # the player cannot accidentaly enter - # the bug quest early. (which should start by going south from e1) - # Unless the bug quest is appropriately modified, - # please do not remove this restriction from this tile. - def leave(self, player, direction): - restricted_directions = { 'n' } - if direction in restricted_directions: - print("The undergrowth in that direction " - "is impassable. You turn back.") - return False - else: - return True |
