-
Notifications
You must be signed in to change notification settings - Fork 708
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LADX: Implement various upstream adjustments (#3829)
* magnifying lens changes daid/LADXR#156 * restore enemy visibility in mermaid statue cave daid/LADXR#155 * mermaid statue scale bugfix daid/LADXR#163 * restore vanilla map when rooster is an item daid/LADXR#132 * fix * fixes to magnifying lens changes * load marin singing even if you have marin date daid/LADXR@4feb309 * Revert "load marin singing even if you have marin date" This reverts commit a7a546e. * always patch tradequest not upstream, but included in this PR because it touches the same parts of the code. https://discord.com/channels/731205301247803413/1227373762412937347 * marin date fix * fix logic
- Loading branch information
1 parent
1a5d22c
commit ed721dd
Showing
9 changed files
with
110 additions
and
57 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,6 @@ | ||
from .droppedKey import DroppedKey | ||
from ..roomEditor import RoomEditor | ||
from ..assembler import ASM | ||
|
||
|
||
class BirdKey(DroppedKey): | ||
def __init__(self): | ||
super().__init__(0x27A) | ||
|
||
def patch(self, rom, option, *, multiworld=None): | ||
super().patch(rom, option, multiworld=multiworld) | ||
|
||
re = RoomEditor(rom, self.room) | ||
|
||
# Make the bird key accessible without the rooster | ||
re.removeObject(1, 6) | ||
re.removeObject(2, 6) | ||
re.removeObject(3, 5) | ||
re.removeObject(3, 6) | ||
re.moveObject(1, 5, 2, 6) | ||
re.moveObject(2, 5, 3, 6) | ||
re.addEntity(3, 5, 0x9D) | ||
re.store(rom) |
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.