v6: Add Area Cost Shuffle

This commit is contained in:
N00byKing
2022-02-05 16:53:43 +01:00
committed by Fabian Dill
parent bffb8a034e
commit a3c3e4cbd4
3 changed files with 19 additions and 7 deletions

View File

@@ -7,6 +7,10 @@ class DoorCost(Range):
range_end = 3
default = 3
class AreaCostRandomizer(Toggle):
"""Randomize which Area requires which set of DoorCost Trinkets"""
display_name = "Area Cost Randomizer"
class DeathLinkAmnesty(Range):
"""Amount of Deaths to take before sending a DeathLink signal, for balancing difficulty"""
range_start = 0
@@ -25,6 +29,7 @@ v6_options: typing.Dict[str,type(Option)] = {
"MusicRandomizer": MusicRandomizer,
"AreaRandomizer": AreaRandomizer,
"DoorCost": DoorCost,
"AreaCostRandomizer": AreaCostRandomizer,
"DeathLink": DeathLink,
"DeathLinkAmnesty": DeathLinkAmnesty
}