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

2022/11/7 新增:破灭的龙魔导士

parent 370cd3bd
No preview for this file type
local m=120231049
local list={120105013}
local cm=_G["c"..m]
cm.name="破灭的龙魔导士"
function cm.initial_effect(c)
RD.AddCodeList(c,list)
--Indes
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(m,0))
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
--Indes
cm.indval=RD.ValueEffectIndesType(0,TYPE_TRAP)
function cm.costfilter(c)
return c:IsRace(RACE_SPELLCASTER+RACE_DRAGON) and c:IsAbleToDeckOrExtraAsCost()
end
function cm.filter(c)
return c:IsFaceup() and RD.IsCanAttachEffectIndes(c,cm.indval)
end
function cm.setfilter(c)
return c:IsCode(list[1]) and c:IsSSetable()
end
cm.cost=RD.CostSendGraveToDeck(cm.costfilter,4,4)
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,1),cm.filter,tp,LOCATION_MZONE,0,1,1,nil,function(g)
RD.AttachEffectIndes(e,g:GetFirst(),cm.indval,aux.Stringid(m,2),RESET_EVENT+RESETS_STANDARD+RESET_PHASE+PHASE_END)
RD.CanSelectAndSet(aux.Stringid(m,3),aux.NecroValleyFilter(cm.setfilter),tp,LOCATION_GRAVE,0,1,1,nil,e)
end)
end
\ No newline at end of file
local m=120231051
local cm=_G["c"..m]
cm.name="重双生龙"
cm.name="重双生龙"
function cm.initial_effect(c)
--Extra Tribute
local e1=Effect.CreateEffect(c)
......@@ -15,7 +15,7 @@ end
--Extra Tribute
function cm.trival(e,c)
if e==nil then
return false,0,RACE_DRAGON
return true,0,RACE_DRAGON
end
return c:IsLevel(7) and c:IsRace(RACE_DRAGON)
end
......
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