[Timespinner]HP cap setting (#536)

This commit is contained in:
weffjebster 2022-05-18 23:25:08 -04:00 committed by GitHub
parent 23144ff204
commit 2b702528fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -172,6 +172,13 @@ class DamageRandoOverrides(OptionDict):
"Radiant": { "MinusOdds": 1, "NormalOdds": 1, "PlusOdds": 1 }, "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): class ShopFill(Choice):
"""Sets the items for sale in Merchant Crow's shops. """Sets the items for sale in Merchant Crow's shops.
Default: No sunglasses or trendy jacket, but sand vials for sale. Default: No sunglasses or trendy jacket, but sand vials for sale.
@ -230,6 +237,7 @@ timespinner_options: Dict[str, Option] = {
"LoreChecks": LoreChecks, "LoreChecks": LoreChecks,
"DamageRando": DamageRando, "DamageRando": DamageRando,
"DamageRandoOverrides": DamageRandoOverrides, "DamageRandoOverrides": DamageRandoOverrides,
"HpCap": HpCap,
"ShopFill": ShopFill, "ShopFill": ShopFill,
"ShopWarpShards": ShopWarpShards, "ShopWarpShards": ShopWarpShards,
"ShopMultiplier": ShopMultiplier, "ShopMultiplier": ShopMultiplier,