From 23144ff20442a0c5df6a9437da202e81ada13341 Mon Sep 17 00:00:00 2001 From: Colin Lenzen <32756996+TriumphantBass@users.noreply.github.com> Date: Wed, 18 May 2022 18:04:06 -0700 Subject: [PATCH] [Timespinner] Add Show Item Drops in Bestiary --- worlds/timespinner/Options.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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