Compare commits

...

2 commits
1.11.0 ... main

Author SHA1 Message Date
bb05a0512b
Nerf Saint 2026-06-26 16:50:28 +02:00
8122036a55
Buff Saint 2026-06-26 14:28:28 +02:00

View file

@ -622,7 +622,7 @@ SMODS.Joker {
end, end,
update = function(_, card, _) update = function(_, card, _)
if card.edition and card.edition.Roland_frozen then if card.edition and card.edition.Roland_frozen then
card:set_edition("e_jane_moire") card:set_edition("e_base")
elseif card.children.floating_sprite then elseif card.children.floating_sprite then
card.children.floating_sprite:set_sprite_pos({x = card.ability.extra.is_attuned and 2 or 1, y = 0}) card.children.floating_sprite:set_sprite_pos({x = card.ability.extra.is_attuned and 2 or 1, y = 0})
end end
@ -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