Change Jokerful to include Ms. Joker

This commit is contained in:
Emik 2026-02-23 23:24:34 +01:00
parent 2f20a084c5
commit f5df8a58d8
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
2 changed files with 3 additions and 3 deletions

View file

@ -381,7 +381,7 @@ return {
ch_c_Roland_Eternally_Crimson = {"{C:attention}Crimson Heart{}'s effect is active every blind"}, 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_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_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_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_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"}, ch_c_Roland_Showdown = {"Showdown blinds are {C:attention}Venerable Visage"},

View file

@ -11,7 +11,7 @@ local function adder(tbl)
end end
local function is_banned_from_pastry(v) 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 end
local function is_center_banned_from_pastry(v) local function is_center_banned_from_pastry(v)
@ -20,7 +20,7 @@ local function is_center_banned_from_pastry(v)
end end
local function is_joker(v) 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 end
local function is_showdown_except(key) local function is_showdown_except(key)