mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00

## What is this fixing or adding? Adds Bombless Start option, along with proper bomb logic. This involves updating `can_kill_most_things` to include checking how many bombs can be held. Many places where the ability to kill enemies was assumed, now have logic. This fixes some possible existing logic issues, for example: Mini Moldorm cave checks currently are always in logic despite the fact that on expert enemy health it would require 12 bombs to kill each mini moldorm. Overhauls options, pulling them out of core and in particular making large changes to how the shop options work. Co-authored-by: espeon65536 <81029175+espeon65536@users.noreply.github.com> Co-authored-by: black-sliver <59490463+black-sliver@users.noreply.github.com> Co-authored-by: Bondo <38083232+BadmoonzZ@users.noreply.github.com> Co-authored-by: espeon65536 <espeon65536@gmail.com> Co-authored-by: Fabian Dill <Berserker66@users.noreply.github.com>
31 lines
1.4 KiB
Python
31 lines
1.4 KiB
Python
from .TestDungeon import TestDungeon
|
|
|
|
|
|
class TestEasternPalace(TestDungeon):
|
|
|
|
def testEastern(self):
|
|
self.starting_regions = ["Eastern Palace"]
|
|
self.run_tests([
|
|
["Eastern Palace - Compass Chest", True, []],
|
|
|
|
["Eastern Palace - Cannonball Chest", True, []],
|
|
|
|
["Eastern Palace - Big Chest", False, []],
|
|
["Eastern Palace - Big Chest", False, [], ['Big Key (Eastern Palace)']],
|
|
["Eastern Palace - Big Chest", True, ['Big Key (Eastern Palace)']],
|
|
|
|
["Eastern Palace - Map Chest", True, []],
|
|
|
|
["Eastern Palace - Big Key Chest", False, []],
|
|
["Eastern Palace - Big Key Chest", False, [], ['Lamp']],
|
|
["Eastern Palace - Big Key Chest", True, ['Lamp', 'Small Key (Eastern Palace)', 'Small Key (Eastern Palace)', 'Progressive Sword']],
|
|
["Eastern Palace - Big Key Chest", True, ['Lamp', 'Big Key (Eastern Palace)', 'Progressive Sword']],
|
|
|
|
#@todo: Advanced?
|
|
["Eastern Palace - Boss", False, []],
|
|
["Eastern Palace - Boss", False, [], ['Lamp']],
|
|
["Eastern Palace - Boss", False, [], ['Progressive Bow']],
|
|
["Eastern Palace - Boss", False, [], ['Big Key (Eastern Palace)']],
|
|
["Eastern Palace - Boss", True, ['Lamp', 'Progressive Bow', 'Big Key (Eastern Palace)']]
|
|
])
|