Commit 40c0ae99 authored by Huangnan's avatar Huangnan

fix

parent b31b5368
Pipeline #35885 passed with stages
in 40 minutes and 29 seconds
...@@ -69,7 +69,7 @@ end ...@@ -69,7 +69,7 @@ end
function s.syncfilter(c) function s.syncfilter(c)
return c:IsSynchroSummonable(nil) return c:IsType(TYPE_SYNCHRO) and c:IsSynchroSummonable(nil)
end end
function s.sctarg(e,tp,eg,ep,ev,re,r,rp,chk) function s.sctarg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(s.syncfilter,tp,LOCATION_EXTRA,0,1,nil) and Duel.CheckLPCost(tp,800) end if chk==0 then return Duel.IsExistingMatchingCard(s.syncfilter,tp,LOCATION_EXTRA,0,1,nil) and Duel.CheckLPCost(tp,800) end
...@@ -88,7 +88,7 @@ function s.scop(e,tp,eg,ep,ev,re,r,rp) ...@@ -88,7 +88,7 @@ function s.scop(e,tp,eg,ep,ev,re,r,rp)
end end
function s.xyzfilter(c) function s.xyzfilter(c)
return c:IsXyzSummonable(nil) return c:IsType(TYPE_XYZ) and c:IsXyzSummonable(nil)
end end
function s.xyztg(e,tp,eg,ep,ev,re,r,rp,chk) function s.xyztg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(s.xyzfilter,tp,LOCATION_EXTRA,0,1,nil) and Duel.CheckLPCost(tp,800) end if chk==0 then return Duel.IsExistingMatchingCard(s.xyzfilter,tp,LOCATION_EXTRA,0,1,nil) and Duel.CheckLPCost(tp,800) 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