Commit 07edd3d6 authored by Tachibana's avatar Tachibana

eme

parent 75f0a3d8
Pipeline #6030 passed with stages
in 28 minutes and 21 seconds
......@@ -25,7 +25,7 @@ function c66915001.initial_effect(c)
c:RegisterEffect(e2)
end
function c66915001.filter(c,e,tp)
return c:IsCanBeSpecialSummoned(e,0,tp,true,false) and c:IsSetCard(0x1374) and Duel.GetLocationCountFromEx(tp,tp,nil,c)>0
return c:IsCanBeSpecialSummoned(e,0,tp,true,false) and (c:IsSetCard(0x1374) and not c:IsCode(66915073) and not c:IsCode(66915074) and not c:IsCode(66915075) and not c:IsCode(66915077)) and Duel.GetLocationCountFromEx(tp,tp,nil,c)>0
end
function c66915001.spcon(e,tp,eg,ep,ev,re,r,rp)
return Duel.IsExistingMatchingCard(c66915001.filters,tp,LOCATION_SZONE,0,1,nil)
......
......@@ -27,7 +27,7 @@ function cm.initial_effect(c)
c:RegisterEffect(e3)
end
function cm.spfilter(c,e,tp)
return c:IsSetCard(0x1374) and c:IsCanBeSpecialSummoned(e,0,tp,true,true) and Duel.GetLocationCountFromEx(tp,tp,nil,c)>0
return (c:IsSetCard(0x1374) and not c:IsCode(66915073) and not c:IsCode(66915074) and not c:IsCode(66915075) and not c:IsCode(66915077)) and c:IsCanBeSpecialSummoned(e,0,tp,true,true) and Duel.GetLocationCountFromEx(tp,tp,nil,c)>0
end
function cm.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(cm.spfilter,tp,LOCATION_EXTRA,0,1,nil,e,tp) end
......
......@@ -43,8 +43,8 @@ function c85402000.spop(e,tp,eg,ep,ev,re,r,rp)
end
end
function c85402000.eftg(e,c)
local seq=aux.MZoneSequence(c:GetSequence())
return c:IsType(TYPE_MONSTER) and seq<5 and (math.abs(aux.MZoneSequence(e:GetHandler():GetSequence())-seq)==1 or math.abs(aux.MZoneSequence(e:GetHandler():GetSequence())-seq)==0)
local seq=aux.GetColumn(c,0)
return c:IsType(TYPE_MONSTER) and aux.GetColumn(e:GetHandler(),0)-seq==1 or aux.GetColumn(e:GetHandler(),0)-seq==0 or aux.GetColumn(e:GetHandler(),0)-seq==-1
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