Commit 12593fb3 authored by 未闻皂名's avatar 未闻皂名

2025/10/15 bug修复

parent cc383bad
Pipeline #41058 passed with stages
in 9 minutes and 34 seconds
...@@ -15,6 +15,12 @@ function cm.initial_effect(c) ...@@ -15,6 +15,12 @@ function cm.initial_effect(c)
c:RegisterEffect(e1) c:RegisterEffect(e1)
end end
--Change Code --Change Code
function cm.confilter1(c)
return c:IsRace(RACE_DRAGON) or c:IsRace(RACE_HYDRAGON)
end
function cm.confilter2(c)
return c:IsType(TYPE_MONSTER) and not cm.confilter1(c)
end
function cm.matfilter(c) function cm.matfilter(c)
return c:IsAbleToDeck() return c:IsAbleToDeck()
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment