Mark Trimino as blueprint incompatible
This commit is contained in:
parent
02181d6435
commit
9e14c8e628
2 changed files with 7 additions and 3 deletions
|
|
@ -6,7 +6,7 @@
|
|||
"author": [
|
||||
"Emik"
|
||||
],
|
||||
"version": "2.7.1",
|
||||
"version": "2.7.2",
|
||||
"badge_colour": "8BE9FD",
|
||||
"main_file": "src/main.lua",
|
||||
"badge_text_colour": "44475A",
|
||||
|
|
|
|||
|
|
@ -308,7 +308,7 @@ joker {
|
|||
cost = 8,
|
||||
rarity = 3,
|
||||
eternal_compat = false,
|
||||
blueprint_compat = true,
|
||||
blueprint_compat = false,
|
||||
perishable_compat = true,
|
||||
loc_vars = function(_, _, card)
|
||||
local extra = card.ability.extra
|
||||
|
|
@ -317,7 +317,11 @@ joker {
|
|||
calculate = function(_, card, context)
|
||||
local extra = card.ability.extra
|
||||
|
||||
if (not context.before or card.getting_sliced or context.scoring_name ~= extra.hand_name) and not context.forcetrigger then
|
||||
if (not context.before or
|
||||
context.blueprint or
|
||||
card.getting_sliced or
|
||||
context.scoring_name ~= extra.hand_name) and
|
||||
not context.forcetrigger then
|
||||
return
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue