Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bb05a0512b | |||
| 8122036a55 |
1 changed files with 3 additions and 2 deletions
|
|
@ -622,7 +622,7 @@ SMODS.Joker {
|
|||
end,
|
||||
update = function(_, card, _)
|
||||
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
|
||||
card.children.floating_sprite:set_sprite_pos({x = card.ability.extra.is_attuned and 2 or 1, y = 0})
|
||||
end
|
||||
|
|
@ -667,7 +667,8 @@ SMODS.Joker {
|
|||
end
|
||||
|
||||
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()
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue