diff --git a/worlds/timespinner/Options.py b/worlds/timespinner/Options.py index d3a848c6..da3cff08 100644 --- a/worlds/timespinner/Options.py +++ b/worlds/timespinner/Options.py @@ -50,6 +50,10 @@ class Cantoran(Toggle): "Cantoran's fight and check are available upon revisiting his room" display_name = "Cantoran" +class DamageRando(Toggle): + "Each orb has a high chance of having lower base damage and a low chance of having much higher base damage." + display_name = "Damage Rando" + # Some options that are available in the timespinner randomizer arent currently implemented timespinner_options: Dict[str, Toggle] = { "StartWithJewelryBox": StartWithJewelryBox, @@ -64,6 +68,7 @@ timespinner_options: Dict[str, Toggle] = { #"StinkyMaw": StinkyMaw, "GyreArchives": GyreArchives, "Cantoran": Cantoran, + "DamageRando": DamageRando, "DeathLink": DeathLink, }