Commit 6a96b030 authored by nanahira's avatar nanahira

fix

parent 804275c5
...@@ -59,7 +59,11 @@ function cm.matfilter1(c,syncard) ...@@ -59,7 +59,11 @@ function cm.matfilter1(c,syncard)
return (c:IsLocation(LOCATION_HAND) or c:IsFaceup()) and c:IsSynchroType(TYPE_TUNER) and c:IsCanBeSynchroMaterial(syncard) return (c:IsLocation(LOCATION_HAND) or c:IsFaceup()) and c:IsSynchroType(TYPE_TUNER) and c:IsCanBeSynchroMaterial(syncard)
end end
function cm.matfilter2(c,syncard) function cm.matfilter2(c,syncard)
return (c:IsLocation(LOCATION_HAND) or c:IsFaceup()) and c:IsSynchroType(TYPE_PENDULUM) and c:IsNotTuner() and c:IsRace(RACE_FAIRY) and c:IsCanBeSynchroMaterial(syncard) return (c:IsLocation(LOCATION_HAND) or c:IsFaceup())
and c:IsSynchroType(TYPE_PENDULUM)
and c:IsNotTuner(syncard)
and c:IsRace(RACE_FAIRY)
and c:IsCanBeSynchroMaterial(syncard)
end end
function cm.matfilter3(c,syncard) function cm.matfilter3(c,syncard)
return c:IsFaceup() and c:IsSynchroType(TYPE_TUNER) and c:IsCode(37564765) and c:IsCanBeSynchroMaterial(syncard) return c:IsFaceup() and c:IsSynchroType(TYPE_TUNER) and c:IsCode(37564765) and c:IsCanBeSynchroMaterial(syncard)
...@@ -182,4 +186,4 @@ function cm.hdop(e,tp,eg,ep,ev,re,r,rp) ...@@ -182,4 +186,4 @@ function cm.hdop(e,tp,eg,ep,ev,re,r,rp)
local sg=g:RandomSelect(tp,1) local sg=g:RandomSelect(tp,1)
Duel.SendtoGrave(sg,REASON_EFFECT) Duel.SendtoGrave(sg,REASON_EFFECT)
end end
end end
\ No newline at end of file
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