Commit 12f0e901 authored by TanakaKotoha's avatar TanakaKotoha

fix

parent 4a4406ae
No preview for this file type
......@@ -53,7 +53,7 @@ function cm.Mercenary_Arthur(c)
end
function cm.IsMillion_Arthur(c)
local m=_G["c"..c:GetCode()]
return m and m.is_named_with_Million_Arthur
return m and (m.is_named_with_Million_Arthur or c:IsSetCard(0x7f0))
end
function cm.atktg(e,c)
return c:IsFaceup() and cm.IsMillion_Arthur(c) and c:IsSummonType(SUMMON_TYPE_PENDULUM)
......
......@@ -37,7 +37,7 @@ function cm.IsRegal_Arthur(c)
end
function cm.IsMillion_Arthur(c)
local m=_G["c"..c:GetCode()]
return m and m.is_named_with_Million_Arthur
return m and (m.is_named_with_Million_Arthur or c:IsSetCard(0x7f0))
end
function iCount(name,tp,m,id)
return ((name=="get" or name=="set")
......@@ -63,7 +63,6 @@ end
function cm.damval(e,re,val,r,rp,rc)
return val/2
end
function cm.spcon(e,tp,eg,ep,ev,re,r,rp)
return e:GetHandler():IsSummonType(SUMMON_TYPE_PENDULUM)
end
......
......@@ -33,7 +33,7 @@ function cm.IsSinger_Arthur(c)
end
function cm.IsMillion_Arthur(c)
local m=_G["c"..c:GetCode()]
return m and m.is_named_with_Million_Arthur
return m and (m.is_named_with_Million_Arthur or c:IsSetCard(0x7f0))
end
function cm.target(e,c)
return c:IsFaceup() and cm.IsMillion_Arthur(c) and c:IsSummonType(SUMMON_TYPE_PENDULUM)
......
......@@ -32,7 +32,7 @@ end
cm.is_named_with_Million_Arthur=1
function cm.IsMillion_Arthur(c)
local m=_G["c"..c:GetCode()]
return m and m.is_named_with_Million_Arthur
return m and (m.is_named_with_Million_Arthur or c:IsSetCard(0x7f0))
end
function cm.target(e,c)
return c:IsFaceup() and cm.IsMillion_Arthur(c) and c:IsSummonType(SUMMON_TYPE_PENDULUM)
......
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