Commit e706a0ab authored by REIKAI's avatar REIKAI 💬

Update c12003016.lua

parent 3883c4f2
Pipeline #17072 passed with stages
in 28 minutes and 4 seconds
...@@ -75,9 +75,10 @@ function c12003016.negop(e,tp,eg,ep,ev,re,r,rp) ...@@ -75,9 +75,10 @@ function c12003016.negop(e,tp,eg,ep,ev,re,r,rp)
end end
end end
function c12003016.efilter(e,te) function c12003016.efilter(e,te)
local g,te=Duel.GetChainInfo(0,CHAININFO_TARGET_CARDS,CHAININFO_TRIGGERING_EFFECT) if te:GetHandlerPlayer()==e:GetHandlerPlayer() then return false end
return ( not (te and te:IsHasProperty(EFFECT_FLAG_CARD_TARGET)) if not te:IsHasProperty(EFFECT_FLAG_CARD_TARGET) then return true end
or not (g and g:IsContains(e:GetHandler())) ) and te:GetOwnerPlayer()~=e:GetHandlerPlayer() local g=Duel.GetChainInfo(0,CHAININFO_TARGET_CARDS)
return not g or not g:IsContains(e:GetHandler())
end end
function c12003016.cfilter(c,tp) function c12003016.cfilter(c,tp)
......
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