diff --git a/worlds/timespinner/Options.py b/worlds/timespinner/Options.py index 60c3d331f0..13355ee8dd 100644 --- a/worlds/timespinner/Options.py +++ b/worlds/timespinner/Options.py @@ -209,6 +209,10 @@ class ShowBestiary(Toggle): "All entries in the bestiary are visible, without needing to kill one of a given enemy first" display_name = "Show Bestiary Entries" +class ShowDrops(Toggle): + "All item drops in the bestiary are visible, without needing an enemy to drop one of a given item first" + display_name = "Show Bestiary Item Drops" + # Some options that are available in the timespinner randomizer arent currently implemented timespinner_options: Dict[str, Option] = { "StartWithJewelryBox": StartWithJewelryBox, @@ -231,6 +235,7 @@ timespinner_options: Dict[str, Option] = { "ShopMultiplier": ShopMultiplier, "LootPool": LootPool, "ShowBestiary": ShowBestiary, + "ShowDrops": ShowDrops, "DeathLink": DeathLink, } @@ -242,4 +247,4 @@ def get_option_value(world: MultiWorld, player: int, name: str) -> Union[int, di if option == None: return 0 - return option[player].value \ No newline at end of file + return option[player].value