Commit 7210c08c authored by wyykak's avatar wyykak

fix

Signed-off-by: wyykak's avatarwyykak <wyy_1414@126.com>
parent 67524e9f
Pipeline #14483 passed with stage
in 1 minute and 59 seconds
......@@ -57,7 +57,7 @@ function c74563015.spcost(e,tp,eg,ep,ev,re,r,rp,chk)
end
end
function c74563015.desfilter2(c,num)
return c:IsFaceup() and c74563015.customdef(c)<=num
return c74563015.customdef(c)<=num and aux.NegateMonsterFilter(c)
end
function c74563015.eqtg(e,tp,eg,ep,ev,re,r,rp,chk)
local c=e:GetHandler()
......
......@@ -58,9 +58,9 @@ function c74563016.spcost(e,tp,eg,ep,ev,re,r,rp,chk)
end
function c74563016.desfilter2(c,num)
if c:IsType(TYPE_LINK) or c:IsFacedown() then
return num>1200
return num>=1200
elseif c:IsType(TYPE_SPELL+TYPE_TRAP) then
return num>1200
return num>=1200
else
return c:IsDefenseBelow(num)
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