Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content/joker/off_switch.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ SMODS.Joker {
'j_paperback_off_epsilon',
},
paperback_secret_unlock = true,
paperback_nine_of_cups_rarity_override = 3,

paperback_credit = {
artist = { 'dylan_hall' },
Expand Down
4 changes: 3 additions & 1 deletion content/minor_arcana/nine_of_cups.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ PB_UTIL.MinorArcana {
local joker = G.jokers.highlighted[1]
local rarity = joker.config.center.rarity

if type(rarity) == "number" then
if joker.config.center.paperback_nine_of_cups_rarity_override then
rarity = joker.config.center.paperback_nine_of_cups_rarity_override
elseif type(rarity) == "number" then
if rarity < 3 then
rarity = rarity + 1
end
Expand Down