Commit 16b97ab8 authored by 独孤朲's avatar 独孤朲

Update c44394295.lua

fix:now it can no longer use monsters in deck as material when Dimension Fortress Weapon is on the field.
parent f543d360
...@@ -28,7 +28,7 @@ function c44394295.checkop(e,tp,eg,ep,ev,re,r,rp) ...@@ -28,7 +28,7 @@ function c44394295.checkop(e,tp,eg,ep,ev,re,r,rp)
end end
end end
function c44394295.filter1(c,e) function c44394295.filter1(c,e)
return c:IsCanBeFusionMaterial() and not c:IsImmuneToEffect(e) return c:IsCanBeFusionMaterial() and not c:IsImmuneToEffect(e) and c:IsAbleToGrave()
end end
function c44394295.filter2(c,e,tp,m,f,chkf) function c44394295.filter2(c,e,tp,m,f,chkf)
return c:IsType(TYPE_FUSION) and c:IsSetCard(0x9d) and (not f or f(c)) return c:IsType(TYPE_FUSION) and c:IsSetCard(0x9d) and (not f or f(c))
......
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