Commit 10fc9ff3 authored by GuGu's avatar GuGu

Update c19045.lua

parent b9f3b819
Pipeline #41727 passed with stage
in 5 seconds
......@@ -38,7 +38,7 @@ aux.FilterBoolFunction(Card.IsFusionSetCard,0x214a),
}
--
function c19045.limit1(e,c)
return c:GetAttack()>1899 and not c:IsImmuneToEffect(e)
return c:GetAttack()>=1900 and not c:IsImmuneToEffect(e)
end
--
function c19045.op2(e,tp,eg,ep,ev,re,r,rp)
......@@ -57,7 +57,7 @@ function c19045.con3(e,tp,eg,ep,ev,re,r,rp)
end
--
function c19045.tfilter3(c,num)
return c:IsType(TYPE_MONSTER) and c:IsAbleToHand() and c:GetAttack()<num
return c:IsType(TYPE_MONSTER) and c:IsAbleToHand() and c:GetAttack()<=num
end
function c19045.tg3(e,tp,eg,ep,ev,re,r,rp,chk)
local rc=re: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