Change Jokerful to include Ms. Joker
This commit is contained in:
parent
2f20a084c5
commit
f5df8a58d8
2 changed files with 3 additions and 3 deletions
|
|
@ -381,7 +381,7 @@ return {
|
|||
ch_c_Roland_Eternally_Crimson = {"{C:attention}Crimson Heart{}'s effect is active every blind"},
|
||||
ch_c_Roland_Eternally_Verdant = {"{C:attention}Verdant Leaf{}'s effect is active every blind"},
|
||||
ch_c_Roland_Eternally_Violet = {"{C:attention}Violet Vessel{}'s effect is active every blind"},
|
||||
ch_c_Roland_Jokerful = {"Only the {C:common}default Joker{} can appear in shops"},
|
||||
ch_c_Roland_Jokerful = {"The only jokers are {C:mult}Joker{} and {C:chips}Ms. Joker"},
|
||||
ch_c_Roland_Ornate = {"Anything vanilla is banned"},
|
||||
ch_c_Roland_Pastries = {"All blinds, cards, and tags are of {C:gold}Bakery{} or {C:blue}Roland"},
|
||||
ch_c_Roland_Showdown = {"Showdown blinds are {C:attention}Venerable Visage"},
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ local function adder(tbl)
|
|||
end
|
||||
|
||||
local function is_banned_from_pastry(v)
|
||||
return not ({Bakery = true, Roland = true})[(v.mod or {}).id]
|
||||
return not ({Bakery = true, Roland = true})[(v.mod or {}).key]
|
||||
end
|
||||
|
||||
local function is_center_banned_from_pastry(v)
|
||||
|
|
@ -20,7 +20,7 @@ local function is_center_banned_from_pastry(v)
|
|||
end
|
||||
|
||||
local function is_joker(v)
|
||||
return v.set == "Joker"
|
||||
return v.set == "Joker" and not ({j_joker = true, j_Roland_msjoker = true})[v.id]
|
||||
end
|
||||
|
||||
local function is_showdown_except(key)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue