Commit be45e8d1 authored by 未闻皂名's avatar 未闻皂名

2023/9/19 新增:月魔将 雅灭鲁娜,更新卡表

parent ed15ac86
Pipeline #23512 passed with stages
in 8 minutes and 22 seconds
No preview for this file type
...@@ -13,8 +13,10 @@ ...@@ -13,8 +13,10 @@
120160003 1 -- 死灵女仆·小七 120160003 1 -- 死灵女仆·小七
120183015 1 -- 火雷神 雷击勇士 120183015 1 -- 火雷神 雷击勇士
120203029 1 -- 魔法石采掘 120203029 1 -- 魔法石采掘
120155049 1 -- 大极流
#Semi-Limit #Semi-Limit
120217035 2 -- 革新制壶陶艺家 120217035 2 -- 革新制壶陶艺家
120203024 2 -- 潜入开始 120203024 2 -- 潜入开始
120231039 2 -- 超可爱执行者紧急出动! 120231039 2 -- 超可爱执行者紧急出动!
\ No newline at end of file 120244054 2 -- 七魔导奇妙融合
local m=120246046
local list={120120029}
local cm=_G["c"..m]
cm.name="月魔将 雅灭鲁娜"
function cm.initial_effect(c)
RD.AddCodeList(c,list)
--Special Summon Procedure
RD.AddHandSpecialSummonProcedure(c,aux.Stringid(m,0),cm.spcon)
--Atk Up
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(m,1))
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(cm.cost)
e1:SetTarget(cm.target)
e1:SetOperation(cm.operation)
c:RegisterEffect(e1)
end
--Special Summon Procedure
function cm.spconfilter(c)
return c:IsFaceup() and c:IsCode(list[1])
end
function cm.spcon(e,c)
if c==nil then return true end
local tp=c:GetControler()
return Duel.GetLocationCount(tp,LOCATION_MZONE)>0
and Duel.IsExistingMatchingCard(cm.spconfilter,tp,LOCATION_ONFIELD,0,1,nil)
end
--Atk Up
function cm.costfilter(c)
return RD.IsCanChangePosition(c)
end
function cm.filter(c)
return c:IsFaceup() and c:IsCode(list[1])
end
function cm.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(cm.costfilter,tp,LOCATION_MZONE,0,1,nil) end
RD.SelectAndDoAction(HINTMSG_POSCHANGE,cm.costfilter,tp,LOCATION_MZONE,0,1,1,nil,function(g)
RD.ChangePosition(g)
end)
end
function cm.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(cm.filter,tp,LOCATION_MZONE,0,1,nil) end
end
function cm.operation(e,tp,eg,ep,ev,re,r,rp)
RD.SelectAndDoAction(aux.Stringid(m,2),cm.filter,tp,LOCATION_MZONE,0,1,1,nil,function(g)
local tc=g:GetFirst()
RD.AttachAtkDef(e,tc,500,0,RESET_EVENT+RESETS_STANDARD)
RD.AttachPierce(e,tc,aux.Stringid(m,3),RESET_EVENT+RESETS_STANDARD)
end)
end
\ No newline at end of file
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