Commit 6b20c22e authored by GuGu's avatar GuGu

Update c7770133.lua 对单卡“不能使用”效果相关问题修复

parent 3a045bb3
Pipeline #24393 passed with stage
in 7 seconds
......@@ -54,10 +54,20 @@ function l.activate(e,tp,eg,ep,ev,re,r,rp)
e2:SetType(EFFECT_TYPE_FIELD)
e2:SetProperty(EFFECT_FLAG_SET_AVAILABLE+EFFECT_FLAG_IGNORE_RANGE)
e2:SetCode(EFFECT_FORBIDDEN)
e2:SetCondition(l.bancon)
e2:SetTargetRange(0xff,0xff)
--e2:SetCondition(l.bancon)
e2:SetTarget(l.bantg)
e2:SetLabelObject(tc)
Duel.RegisterEffect(e2,tp)
--adjust
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e3:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE)
e3:SetCode(EVENT_ADJUST)
e3:SetOperation(l.adjustcon)
e3:SetOperation(l.adjustop)
e3:SetLabelObject(e2)
Duel.RegisterEffect(e3,tp)
tc=g:GetNext()
end
end
......@@ -72,6 +82,26 @@ function l.bancon(e)
e:Reset()
return false
end
function l.banfilter2(c,tc)
return c==tc and c:IsPublic()
end
function l.adjustcon(e,tp,eg,ep,ev,re,r,rp)
local e2=e:GetLabelObject()
if not e2 then return false end
local tc=e2:GetLabelObject()
if not tc then return false end
return not Duel.IsExistingMatchingCard(l.banfilter2,tp,LOCATION_HAND,LOCATION_HAND,1,nil,tc)
end
function l.adjustop(e,tp,eg,ep,ev,re,r,rp)
local e2=e:GetLabelObject()
if not e2 then return false end
local tc=e2:GetLabelObject()
if not tc then return false end
if not Duel.IsExistingMatchingCard(l.banfilter2,tp,LOCATION_HAND,LOCATION_HAND,1,nil,tc) then
e2:Reset()
e:Reset()
end
end
function l.bantg(e,c)
return c==e:GetLabelObject()
end
\ No newline at end of file
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