Adds mount crumpit crate locations

This commit is contained in:
MarioSpore
2025-09-08 22:41:22 -04:00
parent b3749b7fe3
commit b8dfd5ce4c
2 changed files with 20 additions and 20 deletions

View File

@@ -183,11 +183,11 @@ grinch_locations = {
"Twin-End Tuba in Submarine World": GrinchLocationData("Sleigh Room", "Sleigh Ride", 1603, [GrinchRamData(0x0101FB, binary_bit_pos=6)]), "Twin-End Tuba in Submarine World": GrinchLocationData("Sleigh Room", "Sleigh Ride", 1603, [GrinchRamData(0x0101FB, binary_bit_pos=6)]),
"GPS in Who Lake": GrinchLocationData("Sleigh Room", "Sleigh Ride", 1604, [GrinchRamData(0x0101FB, binary_bit_pos=5)]), "GPS in Who Lake": GrinchLocationData("Sleigh Room", "Sleigh Ride", 1604, [GrinchRamData(0x0101FB, binary_bit_pos=5)]),
# Mount Crumpit Locations # Mount Crumpit Locations
# "1st Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1700, [GrinchRamData(0x095343, value=1)]), "1st Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1700, [GrinchRamData(0x095343, value=1)]),
# "2nd Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1701, [GrinchRamData(0x095343, value=2)]), "2nd Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1701, [GrinchRamData(0x095343, value=2)]),
# "3rd Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1702, [GrinchRamData(0x095343, value=3)]), "3rd Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1702, [GrinchRamData(0x095343, value=3)]),
# "4th Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1703, [GrinchRamData(0x095343, value=4)]), "4th Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1703, [GrinchRamData(0x095343, value=4)]),
# "5th Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1704, [GrinchRamData(0x095343, value=5)]), "5th Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1704, [GrinchRamData(0x095343, value=5)]),
} }
def grinch_locations_to_id() -> dict[str,int]: def grinch_locations_to_id() -> dict[str,int]:

View File

@@ -494,21 +494,21 @@ rules_dict: dict[str,list[list[str]]] = {
], ],
"GPS in Who Lake": [ "GPS in Who Lake": [
["Who Lake Vacuum Access", "Rotten Egg Launcher"] ["Who Lake Vacuum Access", "Rotten Egg Launcher"]
# ], ],
# "1st Crate Squashed": [ "1st Crate Squashed": [
# [] []
# ], ],
# "2nd Crate Squashed": [ "2nd Crate Squashed": [
# [] []
# ], ],
# "3rd Crate Squashed": [ "3rd Crate Squashed": [
# [] []
# ], ],
# "4th Crate Squashed": [ "4th Crate Squashed": [
# [] []
# ], ],
# "5th Crate Squashed": [ "5th Crate Squashed": [
# [] []
] ]
} }