Commit 5cac228f authored by mercury233's avatar mercury233

fix 翻弄するエルフの剣士 and so on

parent 317cf0b3
......@@ -8,5 +8,9 @@ function c20700531.initial_effect(c)
c:RegisterEffect(e1)
end
function c20700531.indes(e,c)
return c:GetAttack()>=1900
if c:IsDefensePos() and Duel.GetAttacker()==c then
return c:IsDefenseAbove(1900)
else
return c:IsAttackAbove(1900)
end
end
......@@ -8,5 +8,9 @@ function c36472900.initial_effect(c)
c:RegisterEffect(e1)
end
function c36472900.indes(e,c)
return c:IsAttackAbove(1900)
if c:IsDefensePos() and Duel.GetAttacker()==c then
return c:IsDefenseAbove(1900)
else
return c:IsAttackAbove(1900)
end
end
......@@ -8,5 +8,9 @@ function c52077741.initial_effect(c)
c:RegisterEffect(e1)
end
function c52077741.indes(e,c)
return c:GetAttack()>=1900
if c:IsDefensePos() and Duel.GetAttacker()==c then
return c:IsDefenseAbove(1900)
else
return c:IsAttackAbove(1900)
end
end
......@@ -16,7 +16,11 @@ function c70083723.initial_effect(c)
c:RegisterEffect(e1)
end
function c70083723.indes(e,c)
return c:GetAttack()>=2000
if c:IsDefensePos() and Duel.GetAttacker()==c then
return c:IsDefenseAbove(2000)
else
return c:IsAttackAbove(2000)
end
end
function c70083723.filter(c)
return c:IsSetCard(0x2a) and c:IsType(TYPE_MONSTER)
......
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