[Timespinner] Added orb damage rando flag
This commit is contained in:
parent
3ee4be2e33
commit
d08d716966
|
@ -50,6 +50,10 @@ class Cantoran(Toggle):
|
||||||
"Cantoran's fight and check are available upon revisiting his room"
|
"Cantoran's fight and check are available upon revisiting his room"
|
||||||
display_name = "Cantoran"
|
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
|
# Some options that are available in the timespinner randomizer arent currently implemented
|
||||||
timespinner_options: Dict[str, Toggle] = {
|
timespinner_options: Dict[str, Toggle] = {
|
||||||
"StartWithJewelryBox": StartWithJewelryBox,
|
"StartWithJewelryBox": StartWithJewelryBox,
|
||||||
|
@ -64,6 +68,7 @@ timespinner_options: Dict[str, Toggle] = {
|
||||||
#"StinkyMaw": StinkyMaw,
|
#"StinkyMaw": StinkyMaw,
|
||||||
"GyreArchives": GyreArchives,
|
"GyreArchives": GyreArchives,
|
||||||
"Cantoran": Cantoran,
|
"Cantoran": Cantoran,
|
||||||
|
"DamageRando": DamageRando,
|
||||||
"DeathLink": DeathLink,
|
"DeathLink": DeathLink,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue