Commit 06ee247b authored by nekrozar's avatar nekrozar

fix

parent 14a6cd90
...@@ -4,6 +4,9 @@ function c54109233.initial_effect(c) ...@@ -4,6 +4,9 @@ function c54109233.initial_effect(c)
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN) e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(TIMING_END_PHASE)
e1:SetTarget(c54109233.target1)
e1:SetOperation(c54109233.activate)
c:RegisterEffect(e1) c:RegisterEffect(e1)
--destroy --destroy
local e2=Effect.CreateEffect(c) local e2=Effect.CreateEffect(c)
...@@ -15,6 +18,7 @@ function c54109233.initial_effect(c) ...@@ -15,6 +18,7 @@ function c54109233.initial_effect(c)
e2:SetCode(EVENT_PHASE+PHASE_END) e2:SetCode(EVENT_PHASE+PHASE_END)
e2:SetTarget(c54109233.target) e2:SetTarget(c54109233.target)
e2:SetOperation(c54109233.activate) e2:SetOperation(c54109233.activate)
e2:SetLabel(1)
c:RegisterEffect(e2) c:RegisterEffect(e2)
if not c54109233.global_check then if not c54109233.global_check then
c54109233.global_check=true c54109233.global_check=true
...@@ -36,13 +40,28 @@ end ...@@ -36,13 +40,28 @@ end
function c54109233.filter(c) function c54109233.filter(c)
return c:IsLevelBelow(3) and c:GetFlagEffect(54109233)~=0 and c:IsDestructable() return c:IsLevelBelow(3) and c:GetFlagEffect(54109233)~=0 and c:IsDestructable()
end end
function c54109233.target(e,tp,eg,ep,ev,re,r,rp,chk) function c54109233.target1(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return true end if chk==0 then return true end
if Duel.GetCurrentPhase()==PHASE_END and Duel.SelectYesNo(tp,94) then
e:SetCategory(CATEGORY_DESTROY)
e:SetLabel(1)
local g=Duel.GetMatchingGroup(c54109233.filter,tp,LOCATION_MZONE,LOCATION_MZONE,nil)
Duel.SetOperationInfo(0,CATEGORY_DESTROY,g,g:GetCount(),0,0)
e:GetHandler():RegisterFlagEffect(54109234,RESET_PHASE+PHASE_END,0,1)
e:GetHandler():RegisterFlagEffect(0,RESET_CHAIN,EFFECT_FLAG_CLIENT_HINT,1,0,65)
else
e:SetCategory(0)
e:SetLabel(0)
end
end
function c54109233.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return e:GetHandler():GetFlagEffect(54109234)==0 end
local g=Duel.GetMatchingGroup(c54109233.filter,tp,LOCATION_MZONE,LOCATION_MZONE,nil) local g=Duel.GetMatchingGroup(c54109233.filter,tp,LOCATION_MZONE,LOCATION_MZONE,nil)
Duel.SetOperationInfo(0,CATEGORY_DESTROY,g,g:GetCount(),0,0) Duel.SetOperationInfo(0,CATEGORY_DESTROY,g,g:GetCount(),0,0)
e:GetHandler():RegisterFlagEffect(54109234,RESET_PHASE+PHASE_END,0,1)
end end
function c54109233.activate(e,tp,eg,ep,ev,re,r,rp) function c54109233.activate(e,tp,eg,ep,ev,re,r,rp)
if not e:GetHandler():IsRelateToEffect(e) then return end if e:GetLabel()==0 or not e:GetHandler():IsRelateToEffect(e) then return end
local g=Duel.GetMatchingGroup(c54109233.filter,tp,LOCATION_MZONE,LOCATION_MZONE,nil) local g=Duel.GetMatchingGroup(c54109233.filter,tp,LOCATION_MZONE,LOCATION_MZONE,nil)
Duel.Destroy(g,REASON_EFFECT) Duel.Destroy(g,REASON_EFFECT)
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