We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c3856d commit 8e587f5Copy full SHA for 8e587f5
items/code.lua
@@ -3864,18 +3864,24 @@ local quantify = {
3864
or {}
3865
local card = create_card(
3866
kind or tbl.set,
3867
- G.jokers,
+ nil,
3868
tbl.legendary,
3869
tbl.rarity,
3870
tbl.skip_materialize,
3871
tbl.soulable,
3872
tbl.forced_key,
3873
"cry_quantify_booster"
3874
)
3875
- G.jokers:emplace(card)
3876
if to_big(self.ability.choose) <= to_big(0) then
3877
self:start_dissolve()
3878
end
+ G.E_MANAGER:add_event(Event({
3879
+ trigger = "before",
3880
+ func = function()
3881
+ G.jokers:emplace(card)
3882
+ return true
3883
+ end
3884
+ }))
3885
3886
3887
0 commit comments