Commit 00d37669 authored by GuGu's avatar GuGu

Update c86379017.lua filter范围修正

parent cba00d34
Pipeline #21194 passed with stage
in 1 minute and 15 seconds
......@@ -24,10 +24,10 @@ function c86379017.initial_effect(c)
end
--
function c86379017.filter1(c)
return c:GetAttack()~=3000 or not c:IsPosition(POS_FACEUP_ATTACK)
return c:IsFaceup() and (c:GetAttack()~=3000 or not c:IsPosition(POS_FACEUP_ATTACK))
end
function c86379017.filter2(c)
return c:GetAttack()~=0 or not c:IsPosition(POS_FACEUP_ATTACK)
return c:IsFaceup() and (c:GetAttack()~=0 or not c:IsPosition(POS_FACEUP_ATTACK))
end
function c86379017.condition(e,tp,eg,ep,ev,re,r,rp)
return eg:GetFirst()==e:GetHandler()
......
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