Nerf Saint

This commit is contained in:
Emik 2026-06-26 16:50:28 +02:00
parent 8122036a55
commit bb05a0512b
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
2 changed files with 4 additions and 3 deletions

View file

@ -18,5 +18,5 @@
"conflicts": [ "conflicts": [
"Jen" "Jen"
], ],
"version": "1.11.1" "version": "1.11.0"
} }

View file

@ -590,7 +590,7 @@ SMODS.Joker {
Jane.cry and "{C:inactive}(Gateway has no downside)" or nil, Jane.cry and "{C:inactive}(Gateway has no downside)" or nil,
}, },
}, },
config = {extra = {changes_editions = false, jokers = Jane.cry and 10 or 1, karma = 0, max_karma = Jane.cry and 10 or 2}}, config = {extra = {changes_editions = false, jokers = Jane.cry and 10 or 1, karma = 0, max_karma = Jane.cry and 10 or 3}},
pos = {x = 0, y = 0}, pos = {x = 0, y = 0},
soul_pos = {x = 1, y = 0}, soul_pos = {x = 1, y = 0},
cost = 20, cost = 20,
@ -667,7 +667,8 @@ SMODS.Joker {
end end
if extra.karma >= max_karma then if extra.karma >= max_karma then
G.jokers:change_size((extra.is_attuned and 0 or extra.karma) * extra.jokers) local karma = (extra.is_attuning or extra.is_attuned) and 0 or extra.karma
G.jokers:change_size(karma * extra.jokers)
ascend() ascend()
end end