-
Notifications
You must be signed in to change notification settings - Fork 32
New tricks and fixes for dungeon logic #191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
pull from upstream
| - run: python3 main.py SKIP_ROM_GENERATION --timeout 120 -s seashells=0 -s heartpiece=0 -s dungeon_keys=keysanity --output /dev/null | ||
| - run: python3 main.py SKIP_ROM_GENERATION --timeout 120 -s logic=glitched -s dungeon_keys=keysanity -s heartpiece=0 -s seashells=0 -s heartcontainers=0 -s instruments=1 -s owlstatues=both -s dungeonshuffle=1 -s witch=0 -s boomerang=gift -s steal=never -s goal=instruments -s goalcount=random --output /dev/null | ||
| - run: python3 main.py SKIP_ROM_GENERATION --timeout 120 -s logic=casual -s dungeon_keys=removed -s itempool=casual --output /dev/null | ||
| - run: python3 main.py SKIP_ROM_GENERATION --timeout 120 -s logic=hell -s overworld=dungeondive -s hardmode=ohko --output /dev/null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added this test to catch itempool mismatch when damage-dealing tricks that require medicine/toadstool aren't possible due to the overworld not being available, and thus toadstool/medicine is not guaranteed
| self.add(POWER_BRACELET) | ||
| self.add(SHOVEL) | ||
| self.add(RUPEES_200, 2) | ||
| self.remove("SWITCH7B_RANGE") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"SWITCH7B_RANGE" only used by diagonal boomerang throw, which is excluded from casual logic
Most of the changes are described 1:1 with this google doc: Logic Changes