From 2b702528fddf99d9c06124cab44d257ad6be4e8d Mon Sep 17 00:00:00 2001 From: weffjebster <94584218+weffjebster@users.noreply.github.com> Date: Wed, 18 May 2022 23:25:08 -0400 Subject: [PATCH] [Timespinner]HP cap setting (#536) --- worlds/timespinner/Options.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/worlds/timespinner/Options.py b/worlds/timespinner/Options.py index 13355ee8..601882b8 100644 --- a/worlds/timespinner/Options.py +++ b/worlds/timespinner/Options.py @@ -172,6 +172,13 @@ class DamageRandoOverrides(OptionDict): "Radiant": { "MinusOdds": 1, "NormalOdds": 1, "PlusOdds": 1 }, } +class HpCap(Range): + "Sets the number that Lunais's HP maxes out at." + display_name = "HP Cap" + range_start = 1 + range_end = 999 + default = 999 + class ShopFill(Choice): """Sets the items for sale in Merchant Crow's shops. Default: No sunglasses or trendy jacket, but sand vials for sale. @@ -230,6 +237,7 @@ timespinner_options: Dict[str, Option] = { "LoreChecks": LoreChecks, "DamageRando": DamageRando, "DamageRandoOverrides": DamageRandoOverrides, + "HpCap": HpCap, "ShopFill": ShopFill, "ShopWarpShards": ShopWarpShards, "ShopMultiplier": ShopMultiplier,