forked from Tacoman369/MM3D-Randomizer-Dev
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bug Fixes & New Things - Adjusts text on Kokiri Sword item obtain message to have proper capitalization - Adjust Vanilla & No Logic fills to respect starting inventory, excluded locations, and generate hints (only no logic) - Renames Circus Leader Mask to Troupe Leader Mask - Adjusts name of Ocean Spider House Reward to no longer include "Day 1" as in 3D it can be obtained any day - Adds overrides for Heart Containers from bosses - Adds Giants Mask back into randomization logic - Adds Deku Mask requirement to the North Clock Town Great Fairy Deku check - Adds Bunny Hood to Postman Game check (will add trick later to not require it) - Adds Seahorse to all Pinnacle Rock checks (No longer need to navigate the murky water without a guide (likely will add trick later for doing the maze without the seahorse)) - Adjusts a few logical helpers as they only accounted for one bottle not any - Adjusts Gold Dust and Mystery Milk to be considered Quest Items during placement (ensures they will be placed in a location available on day 1) - Adds option in dungeon settings for shuffling Heart Containers * Update Z3DR to bring in patch features. * Include chest size option for contents. --------- Co-authored-by: Tacoman369 <[email protected]>
- Loading branch information
1 parent
356514f
commit db09533
Showing
10 changed files
with
73 additions
and
57 deletions.
There are no files selected for viewing
Submodule Z3DR
updated
27 files
+1 −1 | code/Makefile | |
+22 −16 | code/include/game/actor.h | |
+55 −0 | code/include/game/actors/chest.h | |
+4 −4 | code/include/game/common_data.h | |
+2 −1 | code/include/game/player.h | |
+39 −0 | code/include/game/skelanime.h | |
+27 −0 | code/include/game/ui.h | |
+69 −0 | code/include/game/ui/screens/gearscreen.h | |
+15 −6 | code/include/rnd/chest.h | |
+26 −0 | code/include/rnd/custom_screen.h | |
+1 −0 | code/include/rnd/item_effect.h | |
+15 −9 | code/include/rnd/savefile.h | |
+86 −50 | code/mm.ld | |
+20 −0 | code/source/asm/hooks.s | |
+7 −0 | code/source/asm/patches.s | |
+66 −0 | code/source/asm/trade_item_hooks.s | |
+41 −0 | code/source/asm/trade_item_patches.s | |
+8 −0 | code/source/game/ui/screens/gearscreen.cpp | |
+2 −5 | code/source/main.cpp | |
+37 −0 | code/source/rnd/chest.cpp | |
+189 −0 | code/source/rnd/custom_screen.cpp | |
+32 −0 | code/source/rnd/item_effect.cpp | |
+111 −34 | code/source/rnd/item_override.cpp | |
+49 −44 | code/source/rnd/item_table.cpp | |
+9 −8 | code/source/rnd/item_upgrade.cpp | |
+2 −1 | code/source/rnd/link.cpp | |
+79 −4 | code/source/rnd/savefile.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.