Skip to content

Commit e5fd548

Browse files
committed
some other stuff
1 parent 356f97d commit e5fd548

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

items/jokers/misc_jokers.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ local insatiable_dagger = {
466466
local check2
467467
if not Card.no(G.jokers.cards[check], "immutable", true) then
468468
Cryptid.with_deck_effects(G.jokers.cards[check], function(card)
469-
Cryptid.misprintize(G.jokers.cards[check], { min = sliced_card.sell_cost * 0.05 + 1, max = sliced_card.sell_cost * 0.05 + 1 }, nil, true)
469+
Cryptid.manipulate(G.jokers.cards[check], { value = sliced_card.sell_cost * 0.05 + 1 })
470470
end)
471471
check2 = true
472472
end

items/misc/blinds.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ local alabaster = {
776776
if context.after or context.pre_discard then
777777
for i = 1, #G.jokers.cards do
778778
Cryptid.with_deck_effects(G.jokers.cards[i], function(card)
779-
Cryptid.misprintize(card, { min = 0.95, max = 0.95 }, nil, true)
779+
Cryptid.manipulate(card, { value = 0.95 })
780780
end)
781781
G.jokers.cards[i].config.cry_multiply = (G.jokers.cards[i].config.cry_multiply or 1) * 0.95
782782
end
@@ -789,7 +789,7 @@ function Card:highlight(is_highlighted)
789789
if Entropy.BlindIs("bl_entr_alabaster_anchor") and self.area == G.hand and G.hand then
790790
for i = 1, #G.jokers.cards do
791791
Cryptid.with_deck_effects(G.jokers.cards[i], function(card)
792-
Cryptid.misprintize(card, { min = 0.95, max = 0.95 }, nil, true)
792+
Cryptid.manipulate(card, { value = 0.95 })
793793
end)
794794
G.jokers.cards[i].config.cry_multiply = (G.jokers.cards[i].config.cry_multiply or 1) * 0.95
795795
end

items/misc/tags.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ local voucher = {
327327
G.P_CENTERS[voucher_key],
328328
{ bypass_discovery_center = true, bypass_discovery_ui = true }
329329
)
330-
Cryptid.misprintize(card)
330+
Cryptid.manipulate(card)
331331
create_shop_card_ui(card, "Voucher", G.shop_vouchers)
332332
card:start_materialize()
333333
if G.GAME.modifiers.cry_force_edition and not G.GAME.modifiers.cry_force_random_edition then

0 commit comments

Comments
 (0)