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)
end
end
function c12003016.efilter(e,te)
local g,te=Duel.GetChainInfo(0,CHAININFO_TARGET_CARDS,CHAININFO_TRIGGERING_EFFECT)
return ( not (te and te:IsHasProperty(EFFECT_FLAG_CARD_TARGET))
or not (g and g:IsContains(e:GetHandler())) ) and te:GetOwnerPlayer()~=e:GetHandlerPlayer()
if te:GetHandlerPlayer()==e:GetHandlerPlayer() then return false end
if not te:IsHasProperty(EFFECT_FLAG_CARD_TARGET) then return true end
local g=Duel.GetChainInfo(0,CHAININFO_TARGET_CARDS)
return not g or not g:IsContains(e:GetHandler())
end
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