Commit 514342ff authored by GuGu's avatar GuGu

Update c200210.lua

parent 778d0b34
Pipeline #35097 passed with stage
in 20 seconds
...@@ -32,12 +32,10 @@ function c200210.operation(e,tp,eg,ep,ev,re,r,rp) ...@@ -32,12 +32,10 @@ function c200210.operation(e,tp,eg,ep,ev,re,r,rp)
if ct==0 then return end if ct==0 then return end
Duel.BreakEffect() Duel.BreakEffect()
Duel.RegisterFlagEffect(tp,200210,RESET_PHASE+PHASE_END,0,1) Duel.RegisterFlagEffect(tp,200210,RESET_PHASE+PHASE_END,0,1)
Duel.SkipPhase(tp,PHASE_MAIN1,RESET_PHASE+PHASE_END,1) local p=Duel.GetTurnPlayer()
local e1=Effect.CreateEffect(e:GetHandler()) Duel.SkipPhase(p,PHASE_DRAW,RESET_PHASE|PHASE_END,1)
e1:SetType(EFFECT_TYPE_FIELD) Duel.SkipPhase(p,PHASE_STANDBY,RESET_PHASE|PHASE_END,1)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) Duel.SkipPhase(p,PHASE_MAIN1,RESET_PHASE|PHASE_END,1)
e1:SetTargetRange(1,0) Duel.SkipPhase(p,PHASE_BATTLE,RESET_PHASE|PHASE_END,1,1)
e1:SetCode(EFFECT_CANNOT_BP) Duel.SkipPhase(p,PHASE_MAIN2,RESET_PHASE|PHASE_END,1)
e1:SetReset(RESET_PHASE+PHASE_END)
Duel.RegisterEffect(e1,tp)
end 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