Commit f7db1d83 authored by GuGu's avatar GuGu

Update c23197.lua

parent 320cd670
Pipeline #29227 passed with stage
in 12 seconds
...@@ -34,35 +34,11 @@ end ...@@ -34,35 +34,11 @@ end
function c23197.desop(e,tp,eg,ep,ev,re,r,rp) function c23197.desop(e,tp,eg,ep,ev,re,r,rp)
local tc=Duel.GetFirstTarget() local tc=Duel.GetFirstTarget()
if not tc:IsRelateToEffect(e) then return end if not tc:IsRelateToEffect(e) then return end
local pos=0 local e1=Effect.CreateEffect(e:GetHandler())
if tc:IsFacedown() then pos=1 end e1:SetType(EFFECT_TYPE_SINGLE)
--forbidden e1:SetProperty(EFFECT_FLAG_SET_AVAILABLE)
local e1=Effect.CreateEffect(e:GetHandler()) e1:SetCode(EFFECT_FORBIDDEN)
e1:SetType(EFFECT_TYPE_FIELD) e1:SetReset(RESET_EVENT+RESETS_STANDARD+RESET_PHASE+PHASE_END)
e1:SetProperty(EFFECT_FLAG_SET_AVAILABLE+EFFECT_FLAG_IGNORE_RANGE) tc:RegisterEffect(e1,true)
e1:SetCode(EFFECT_FORBIDDEN) end
e1:SetCondition(c23197.bancon)
e1:SetTarget(c23197.bantg)
e1:SetLabel(pos)
e1:SetLabelObject(tc)
Duel.RegisterEffect(e1,tp)
end
function c23197.banfilter1(c,e)
return c==e:GetLabelObject() and c:IsFaceup() and c:IsOnField()
end
function c23197.banfilter2(c,e)
return c==e:GetLabelObject() and c:IsFacedown() and c:IsOnField()
end
function c23197.bancon(e)
local tp=e:GetHandlerPlayer()
local tc=e:GetLabelObject()
local pos=e:GetLabel()
if pos==1 and Duel.IsExistingMatchingCard(c23197.banfilter2,tp,LOCATION_ONFIELD,LOCATION_ONFIELD,1,nil,e) then return true
else e:SetLabel(0) end
if Duel.IsExistingMatchingCard(c23197.banfilter1,tp,LOCATION_ONFIELD,LOCATION_ONFIELD,1,nil,e) then return true end
e:Reset()
return false
end
function c23197.bantg(e,c)
return c==e:GetLabelObject()
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