Commit eb864b7c authored by Amiya's avatar Amiya

修复

parent b6c26185
Pipeline #42480 failed with stages
in 1 minute and 48 seconds
...@@ -35,8 +35,11 @@ function s.sucfilter(c,tp) ...@@ -35,8 +35,11 @@ function s.sucfilter(c,tp)
return c:IsSummonType(SUMMON_TYPE_ADVANCE) and c:IsControler(tp) return c:IsSummonType(SUMMON_TYPE_ADVANCE) and c:IsControler(tp)
end end
function s.sucop(e,tp,eg,ep,ev,re,r,rp) function s.sucop(e,tp,eg,ep,ev,re,r,rp)
if eg:IsExists(s.sucfilter,1,nil,tp) and Duel.GetCurrentChain()==1 then if not eg:IsExists(s.sucfilter,1,nil,tp) then return end
e:GetHandler():RegisterFlagEffect(id,RESET_EVENT+RESETS_STANDARD,0,1) if Duel.GetCurrentChain()==0 then
Duel.SetChainLimitTillChainEnd(s.chainlm)
elseif Duel.GetCurrentChain()==1 then
Duel.RegisterFlagEffect(tp,id+o,RESET_EVENT+RESETS_STANDARD,0,1)
local e1=Effect.CreateEffect(e:GetHandler()) local e1=Effect.CreateEffect(e:GetHandler())
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetCode(EVENT_CHAINING) e1:SetCode(EVENT_CHAINING)
...@@ -49,14 +52,14 @@ function s.sucop(e,tp,eg,ep,ev,re,r,rp) ...@@ -49,14 +52,14 @@ function s.sucop(e,tp,eg,ep,ev,re,r,rp)
end end
end end
function s.resetop(e,tp,eg,ep,ev,re,r,rp) function s.resetop(e,tp,eg,ep,ev,re,r,rp)
e:GetHandler():ResetFlagEffect(id) Duel.ResetFlagEffect(tp,id+o)
e:Reset() e:Reset()
end end
function s.cedop(e,tp,eg,ep,ev,re,r,rp) function s.cedop(e,tp,eg,ep,ev,re,r,rp)
if e:GetHandler():GetFlagEffect(id)~=0 then if Duel.GetFlagEffect(tp,id+o)~=0 then
Duel.SetChainLimitTillChainEnd(s.chainlm) Duel.SetChainLimitTillChainEnd(s.chainlm)
end end
e:GetHandler():ResetFlagEffect(id) Duel.ResetFlagEffect(tp,id+o)
end end
function s.tdfilter(c) function s.tdfilter(c)
return c:IsFaceupEx() and c:IsType(TYPE_SYNCHRO) and c:IsAbleToDeck() return c:IsFaceupEx() and c:IsType(TYPE_SYNCHRO) and c:IsAbleToDeck()
......
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