Skip to content
Closed
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 lib/misprintize.lua
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ function Cryptid.sanity_check(val, is_big)
end
return val
end
-- Do i not untersand smth or is this function literally not used for anything?
function Cryptid.misprintize(card, override, force_reset, stack, grow_type, pow_level)
local clamps = card.config.center.misprintize_caps or {}
if Card.no(card, "immutable", true) then
Expand Down
5 changes: 4 additions & 1 deletion lib/overrides.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1127,6 +1127,9 @@ function create_card(_type, area, legendary, _rarity, skip_materialize, soulable
if not (card.edition and (card.edition.cry_oversat or card.edition.cry_glitched)) then
Cryptid.manipulate(card)
end
if card.ability.set == "Joker" and G.GAME.modifiers.cry_jkr_misprint_mod then
Cryptid.manipulate(card, { value = G.GAME.modifiers.cry_jkr_misprint_mod })
end
if card.ability.set == "Joker" and G.GAME.modifiers.cry_common_value_quad then
if card.config.center.rarity == 1 then
Cryptid.manipulate(card, { value = 4 })
Expand Down Expand Up @@ -2315,5 +2318,5 @@ end

local smods_shatters_ref = SMODS.shatters
function SMODS.shatters(card)
return card.cry_glass_trigger or smods_shatters_ref(card)
return card.cry_glass_trigger or smods_shatters_ref(card)
end