Comment out Sleigh parts for another day

This commit is contained in:
MarioSpore
2025-08-31 13:20:12 -04:00
parent 61885767d5
commit a00cd0212a

View File

@@ -125,18 +125,18 @@ MISSION_ITEMS_TABLE: dict[str, GrinchItemData] = {
} }
#Sleigh Parts #Sleigh Parts
SLEIGH_PARTS_TABLE: dict[str, GrinchItemData] = { # SLEIGH_PARTS_TABLE: dict[str, GrinchItemData] = {
"Exhaust Pipes": GrinchItemData("Sleigh Parts", 300, IC.progression_skip_balancing, # "Exhaust Pipes": GrinchItemData("Sleigh Parts", 300, IC.progression_skip_balancing,
[GrinchRamData(0x0101FB, binary_bit_pos=2)]), # [GrinchRamData(0x0101FB, binary_bit_pos=2)]),
"GPS": GrinchItemData("Sleigh Parts", 301, IC.useful, # "GPS": GrinchItemData("Sleigh Parts", 301, IC.useful,
[GrinchRamData(0x0101FB, binary_bit_pos=5)]), # [GrinchRamData(0x0101FB, binary_bit_pos=5)]),
"Tires": GrinchItemData("Sleigh Parts", 302, IC.progression_skip_balancing, # "Tires": GrinchItemData("Sleigh Parts", 302, IC.progression_skip_balancing,
[GrinchRamData(0x0101FB, binary_bit_pos=4)]), # [GrinchRamData(0x0101FB, binary_bit_pos=4)]),
"Skis": GrinchItemData("Sleigh Parts", 303, IC.progression_skip_balancing, # "Skis": GrinchItemData("Sleigh Parts", 303, IC.progression_skip_balancing,
[GrinchRamData(0x0101FB, binary_bit_pos=3)]), # [GrinchRamData(0x0101FB, binary_bit_pos=3)]),
"Twin-End Tuba": GrinchItemData("Sleigh Parts", 304, IC.progression_skip_balancing, # "Twin-End Tuba": GrinchItemData("Sleigh Parts", 304, IC.progression_skip_balancing,
[GrinchRamData(0x0101FB, binary_bit_pos=6)]) # [GrinchRamData(0x0101FB, binary_bit_pos=6)])
} # }
#Access Keys #Access Keys
KEYS_TABLE: dict[str, GrinchItemData] = { KEYS_TABLE: dict[str, GrinchItemData] = {
@@ -217,12 +217,12 @@ TRAPS_TABLE: dict[str, GrinchItemData] = {
ALL_ITEMS_TABLE: dict[str, GrinchItemData] = { ALL_ITEMS_TABLE: dict[str, GrinchItemData] = {
**GADGETS_TABLE, **GADGETS_TABLE,
**MISSION_ITEMS_TABLE, **MISSION_ITEMS_TABLE,
**SLEIGH_PARTS_TABLE,
**KEYS_TABLE, **KEYS_TABLE,
**MISC_ITEMS_TABLE, **MISC_ITEMS_TABLE,
**TRAPS_TABLE, **TRAPS_TABLE,
**USEFUL_IC_TABLE **USEFUL_IC_TABLE,
# **MOVES_TABLE # **SLEIGH_PARTS_TABLE,
# **MOVES_TABLE,
} }
# Psuedocoding traplink table # Psuedocoding traplink table