2022-12-11 12:15:23 +00:00
|
|
|
from .TestDungeon import TestDungeon
|
2020-03-16 06:39:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestThievesTown(TestDungeon):
|
|
|
|
|
|
|
|
def testThievesTown(self):
|
|
|
|
self.starting_regions = ['Thieves Town (Entrance)']
|
|
|
|
self.run_tests([
|
|
|
|
|
|
|
|
["Thieves' Town - Big Key Chest", True, []],
|
|
|
|
|
|
|
|
["Thieves' Town - Map Chest", True, []],
|
|
|
|
|
|
|
|
["Thieves' Town - Compass Chest", True, []],
|
|
|
|
|
|
|
|
["Thieves' Town - Ambush Chest", True, []],
|
|
|
|
|
2023-09-27 03:24:10 +00:00
|
|
|
["Thieves' Town - Hallway Pot Key", False, []],
|
|
|
|
["Thieves' Town - Hallway Pot Key", False, [], ['Big Key (Thieves Town)']],
|
|
|
|
["Thieves' Town - Hallway Pot Key", True, ['Big Key (Thieves Town)']],
|
|
|
|
|
|
|
|
["Thieves' Town - Spike Switch Pot Key", False, []],
|
|
|
|
["Thieves' Town - Spike Switch Pot Key", False, [], ['Big Key (Thieves Town)']],
|
2024-02-25 21:28:33 +00:00
|
|
|
["Thieves' Town - Spike Switch Pot Key", False, [], ['Small Key (Thieves Town)']],
|
|
|
|
["Thieves' Town - Spike Switch Pot Key", True, ['Big Key (Thieves Town)', 'Small Key (Thieves Town)']],
|
2023-09-27 03:24:10 +00:00
|
|
|
|
|
|
|
["Thieves' Town - Attic", False, []],
|
|
|
|
["Thieves' Town - Attic", False, [], ['Big Key (Thieves Town)']],
|
|
|
|
["Thieves' Town - Attic", False, [], ['Small Key (Thieves Town)']],
|
2024-02-25 21:28:33 +00:00
|
|
|
["Thieves' Town - Attic", True, ['Big Key (Thieves Town)', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)']],
|
2023-09-27 03:24:10 +00:00
|
|
|
|
2020-03-16 06:39:54 +00:00
|
|
|
["Thieves' Town - Big Chest", False, []],
|
|
|
|
["Thieves' Town - Big Chest", False, [], ['Big Key (Thieves Town)']],
|
|
|
|
["Thieves' Town - Big Chest", False, [], ['Small Key (Thieves Town)']],
|
|
|
|
["Thieves' Town - Big Chest", False, [], ['Hammer']],
|
2024-02-25 21:28:33 +00:00
|
|
|
["Thieves' Town - Big Chest", True, ['Hammer', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)', 'Big Key (Thieves Town)']],
|
2020-03-16 06:39:54 +00:00
|
|
|
|
|
|
|
["Thieves' Town - Blind's Cell", False, []],
|
|
|
|
["Thieves' Town - Blind's Cell", False, [], ['Big Key (Thieves Town)']],
|
|
|
|
["Thieves' Town - Blind's Cell", True, ['Big Key (Thieves Town)']],
|
|
|
|
|
|
|
|
["Thieves' Town - Boss", False, []],
|
|
|
|
["Thieves' Town - Boss", False, [], ['Big Key (Thieves Town)']],
|
|
|
|
["Thieves' Town - Boss", False, [], ['Hammer', 'Progressive Sword', 'Cane of Somaria', 'Cane of Byrna']],
|
2024-02-20 00:07:49 +00:00
|
|
|
["Thieves' Town - Boss", False, [], ['Bomb Upgrade (+5)', 'Bomb Upgrade (+10)', 'Bomb Upgrade (50)']],
|
2024-02-25 21:28:33 +00:00
|
|
|
["Thieves' Town - Boss", True, ['Bomb Upgrade (+5)', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)', 'Big Key (Thieves Town)', 'Hammer']],
|
|
|
|
["Thieves' Town - Boss", True, ['Bomb Upgrade (+5)', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)', 'Big Key (Thieves Town)', 'Progressive Sword']],
|
|
|
|
["Thieves' Town - Boss", True, ['Bomb Upgrade (+5)', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)', 'Big Key (Thieves Town)', 'Cane of Somaria']],
|
|
|
|
["Thieves' Town - Boss", True, ['Bomb Upgrade (+5)', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)', 'Small Key (Thieves Town)', 'Big Key (Thieves Town)', 'Cane of Byrna']],
|
2020-03-16 06:39:54 +00:00
|
|
|
])
|