Skip to content

Commit 96612a8

Browse files
committed
[WIP] Support for Bunco and Paperback suits
Doesn't show in the tooltip yet
1 parent 4f7b2d7 commit 96612a8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

content/cards/03_KairiandNamine.lua

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,7 @@ SMODS.Joker {
168168

169169
if context.individual and context.cardarea == G.play and not context.blueprint then
170170
local side = card.ability.extra.side
171-
172-
if context.other_card:is_suit('Hearts') or context.other_card:is_suit('Diamonds') then
171+
if context.other_card:is_suit('Hearts') or context.other_card:is_suit('Diamonds') or context.other_card:is_suit('bunc_Fleurons') or context.other_card:is_suit('paperback_Stars') then
173172
if side == 'A' then -- KAIRI
174173
-- Gain Chips
175174
card.ability.extra.chips = card.ability.extra.chips + card.ability.extra.dark
@@ -183,7 +182,7 @@ SMODS.Joker {
183182
end
184183
end
185184

186-
if context.other_card:is_suit('Spades') or context.other_card:is_suit('Clubs') then
185+
if context.other_card:is_suit('Spades') or context.other_card:is_suit('Clubs') or context.other_card:is_suit('bunc_Halberds') or context.other_card:is_suit('paperback_Crowns') then
187186
if side == 'A' and card.ability.extra.chips > 0 then -- KAIRI
188187
--Lose Chips
189188
card.ability.extra.chips = card.ability.extra.chips - card.ability.extra.light

0 commit comments

Comments
 (0)