From 05e2c70dc648c9ed46159e1c96e70713e6988ace Mon Sep 17 00:00:00 2001 From: NeatsTopFoo Date: Wed, 11 Mar 2026 03:57:47 +0000 Subject: [PATCH] Adjust Chaos the Clown Makes Chaos the Clown actually use its extra value instead of just being a flat 1; This improves flexibility if a mod wanted to say, scale its reroll count using ``scale_card`` as part of a mechanic effect or some other interaction. --- lovely/shop.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lovely/shop.toml b/lovely/shop.toml index 89ec1f4e4..2b2c4296d 100644 --- a/lovely/shop.toml +++ b/lovely/shop.toml @@ -183,7 +183,7 @@ pattern = ''' G.GAME.current_round.free_rerolls = G.GAME.current_round.free_rerolls + 1 ''' payload = ''' -SMODS.change_free_rerolls(1) +SMODS.change_free_rerolls(self.ability.extra or 1) ''' [[patches]] [patches.pattern] @@ -194,7 +194,7 @@ pattern = ''' G.GAME.current_round.free_rerolls = G.GAME.current_round.free_rerolls - 1 ''' payload = ''' -SMODS.change_free_rerolls(-1) +SMODS.change_free_rerolls(-(self.ability.extra or 1)) ''' ## Shop Card Area Width