Commit bb1a4bed authored by Huangnan's avatar Huangnan

Update c101203073.lua

parent 1f01f217
...@@ -75,10 +75,10 @@ function s.cedop(e,tp,eg,ep,ev,re,r,rp) ...@@ -75,10 +75,10 @@ function s.cedop(e,tp,eg,ep,ev,re,r,rp)
e:Reset() e:Reset()
end end
function s.filter1(c) function s.filter1(c)
return c:IsCode(78371393) return (c:IsSetCard(0x2a4) or c:IsCode(78371393))
end end
function s.filter2(c) function s.filter2(c)
return c:IsSetCard(0x2a4) and c:IsCanBeFusionMaterial() return (c:IsSetCard(0x2a4) or c:IsCode(78371393)) and c:IsCanBeFusionMaterial()
end end
function s.fscon(e,tp,eg,ep,ev,re,r,rp) function s.fscon(e,tp,eg,ep,ev,re,r,rp)
return Duel.IsExistingMatchingCard(s.filter1,tp,LOCATION_ONFIELD,0,1,nil) and Duel.IsExistingMatchingCard(s.filter2,tp,LOCATION_MZONE,LOCATION_MZONE,1,nil) return Duel.IsExistingMatchingCard(s.filter1,tp,LOCATION_ONFIELD,0,1,nil) and Duel.IsExistingMatchingCard(s.filter2,tp,LOCATION_MZONE,LOCATION_MZONE,1,nil)
......
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