[Timespinner] Added orb damage rando flag

This commit is contained in:
Jarno 2021-12-20 14:26:16 +01:00 committed by Fabian Dill
parent 3ee4be2e33
commit d08d716966
1 changed files with 5 additions and 0 deletions

View File

@ -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,
}