Moverando item renames

This commit is contained in:
MarioSpore
2025-09-29 18:05:14 -04:00
parent afe1345e34
commit dbc592dad0
2 changed files with 4 additions and 4 deletions

View File

@@ -50,9 +50,9 @@ PVT: str = "Progressive Vacuum Tube"
PC: str = "Pancake"
SR: str = "Sleigh Room Key"
BB: str = "Bad Breath"
PNP: str = "Push & Pull"
SO: str = "Seize Objects"
M: str = "Max"
TT: str = "Tip Toe"
TT: str = "Sneak"
#Gadgets
#All gadgets require at least 4 different blueprints to be unlocked in the computer in Mount Crumpit.

View File

@@ -88,10 +88,10 @@ class GadgetRando(OptionSet):
class Moverando(OptionSet):
"""Randomizes Grinch's moveset along with randomizing max into the pool. [NOT IMPLEMENTED]
Valid keys: "Pancake", "Push & Pull", "Max", "Bad Breath", "Tip Toe"
Valid keys: "Pancake", "Seize Objects", "Max", "Bad Breath", "Sneak"
"""
display_name = "Moves Randomized"
valid_keys = {"Pancake", "Push & Pull", "Max", "Bad Breath", "Tip Toe"}
valid_keys = {"Pancake", "Seize Objects", "Max", "Bad Breath", "Sneak"}
class UnlimitedEggs(Toggle):
"""Determine whether or not you run out of rotten eggs when you utilize your gadgets."""