Changed "Vacuum Access" to "Vacuum Tube" to reflect the game manual

This commit is contained in:
MarioSpore
2025-09-18 22:12:11 -04:00
parent 92d932da55
commit babc4f441c
2 changed files with 17 additions and 17 deletions

View File

@@ -140,15 +140,15 @@ MISSION_ITEMS_TABLE: dict[str, GrinchItemData] = {
#Access Keys #Access Keys
KEYS_TABLE: dict[str, GrinchItemData] = { KEYS_TABLE: dict[str, GrinchItemData] = {
# "Whoville Vacuum Access": GrinchItemData("Vacuum Access", 400, IC.progression, # "Whoville Vacuum Tube": GrinchItemData("Vacuum Tubes", 400, IC.progression,
# [GrinchRamData()]), # [GrinchRamData()]),
"Who Forest Vacuum Access": GrinchItemData("Vacuum Access", 401, IC.progression, "Who Forest Vacuum Tube": GrinchItemData("Vacuum Tubes", 401, IC.progression,
[GrinchRamData(0x0100AA, binary_bit_pos=2)]), [GrinchRamData(0x0100AA, binary_bit_pos=2)]),
"Who Dump Vacuum Access": GrinchItemData("Vacuum Access", 402, IC.progression, "Who Dump Vacuum Tube": GrinchItemData("Vacuum Tubes", 402, IC.progression,
[GrinchRamData(0x0100AA, binary_bit_pos=3)]), [GrinchRamData(0x0100AA, binary_bit_pos=3)]),
"Who Lake Vacuum Access": GrinchItemData("Vacuum Access", 403, IC.progression, "Who Lake Vacuum Tube": GrinchItemData("Vacuum Tubes", 403, IC.progression,
[GrinchRamData(0x0100AA, binary_bit_pos=4)]), [GrinchRamData(0x0100AA, binary_bit_pos=4)]),
# "Progressive Vacuum Access": GrinchItemData("Vacuum Access", 404, IC.progression, # "Progressive Vacuum Access": GrinchItemData("Vacuum Tubes", 404, IC.progression,
# [GrinchRamData()]), # [GrinchRamData()]),
# "Spin N' Win Door Unlock": GrinchItemData("Supadow Door Unlocks", 405, IC.progression, # "Spin N' Win Door Unlock": GrinchItemData("Supadow Door Unlocks", 405, IC.progression,
# [GrinchRamData()]), # [GrinchRamData()]),

View File

@@ -424,11 +424,11 @@ rules_dict: dict[str,list[list[str]]] = {
], ],
"Stealing All Gifts": [ "Stealing All Gifts": [
# ["Exhaust Pipes", "Tires", "Skis", "Twin-End Tuba"] # ["Exhaust Pipes", "Tires", "Skis", "Twin-End Tuba"]
["Rotten Egg Launcher", "Who Forest Vacuum Access", "Who Dump Vacuum Access", "Who Lake Vacuum Access", "Rocket Spring", "Marine Mobile"] ["Rotten Egg Launcher", "Who Forest Vacuum Tube", "Who Dump Vacuum Tube", "Who Lake Vacuum Tube", "Rocket Spring", "Marine Mobile"]
], ],
"Neutralizing Santa": [ "Neutralizing Santa": [
# ["Exhaust Pipes", "Tires", "Skis", "Twin-End Tuba"] # ["Exhaust Pipes", "Tires", "Skis", "Twin-End Tuba"]
["Rotten Egg Launcher", "Who Forest Vacuum Access", "Who Dump Vacuum Access", "Who Lake Vacuum Access", "Rocket Spring", "Marine Mobile"] ["Rotten Egg Launcher", "Who Forest Vacuum Tube", "Who Dump Vacuum Tube", "Who Lake Vacuum Tube", "Rocket Spring", "Marine Mobile"]
], ],
"Heart of Stone - Whoville's Post Office": [ "Heart of Stone - Whoville's Post Office": [
[] []
@@ -484,16 +484,16 @@ rules_dict: dict[str,list[list[str]]] = {
["Rotten Egg Launcher"] ["Rotten Egg Launcher"]
], ],
"Skis in Who Forest": [ "Skis in Who Forest": [
["Who Forest Vacuum Access"] ["Who Forest Vacuum Tube"]
], ],
"Tires in Who Dump": [ "Tires in Who Dump": [
["Who Dump Vacuum Access", "Rocket Spring", "Rotten Egg Launcher"] ["Who Dump Vacuum Tube", "Rocket Spring", "Rotten Egg Launcher"]
], ],
"Twin-End Tuba in Submarine World": [ "Twin-End Tuba in Submarine World": [
["Who Lake Vacuum Access", "Marine Mobile"] ["Who Lake Vacuum Tube", "Marine Mobile"]
], ],
"GPS in Who Lake": [ "GPS in Who Lake": [
["Who Lake Vacuum Access", "Rotten Egg Launcher"] ["Who Lake Vacuum Tube", "Rotten Egg Launcher"]
], ],
"1st Crate Squashed": [ "1st Crate Squashed": [
[] []
@@ -541,8 +541,8 @@ access_rules_dict: dict[str,list[list[str]]] = {
[] []
], ],
"Who Forest": [ "Who Forest": [
["Who Forest Vacuum Access"], ["Who Forest Vacuum Tube"],
# ["Progressive Vacuum Access": 1] # ["Progressive Vacuum Tube": 1]
], ],
"Ski Resort": [ "Ski Resort": [
["Cable Car Access Card"] ["Cable Car Access Card"]
@@ -552,8 +552,8 @@ access_rules_dict: dict[str,list[list[str]]] = {
["Octopus Climbing Device"] ["Octopus Climbing Device"]
], ],
"Who Dump": [ "Who Dump": [
["Who Dump Vacuum Access"], ["Who Dump Vacuum Tube"],
# ["Progressive Vacuum Access": 2] # ["Progressive Vacuum Tube": 2]
], ],
"Minefield": [ "Minefield": [
["Rotten Egg Launcher", "Rocket Spring"], ["Rotten Egg Launcher", "Rocket Spring"],
@@ -569,8 +569,8 @@ access_rules_dict: dict[str,list[list[str]]] = {
["Rotten Egg Launcher", "Octopus Climbing Device", "Slime Shooter", "Rocket Spring"] ["Rotten Egg Launcher", "Octopus Climbing Device", "Slime Shooter", "Rocket Spring"]
], ],
"Who Lake": [ "Who Lake": [
["Who Lake Vacuum Access"], ["Who Lake Vacuum Tube"],
# ["Progressive Vacuum Access": 3] # ["Progressive Vacuum Tube": 3]
], ],
"Scout's Hut": [ "Scout's Hut": [
["Grinch Copter"], ["Grinch Copter"],