Commit 6ade8cab authored by 未闻皂名's avatar 未闻皂名

2022/6/23 新增:梦中的蝴蝶兰

parent 02ecd92a
Pipeline #14189 passed with stages
in 6 minutes and 40 seconds
No preview for this file type
local m=120222035
local cm=_G["c"..m]
cm.name="梦中的蝴蝶兰"
function cm.initial_effect(c)
--Race Change
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(m,0))
e1:SetCategory(CATEGORY_DRAW)
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
--Race Change
function cm.filter(c)
return c:IsFaceup() and not c:IsRace(RACE_INSECT)
end
function cm.exfilter(c)
return c:IsPosition(POS_FACEUP_DEFENSE)
end
function cm.cost(e,tp,eg,ep,ev,re,r,rp,chk)
local c=e:GetHandler()
if chk==0 then return c:IsAttackPos() and RD.IsCanChangePosition(c) end
RD.ChangePosition(c,POS_FACEUP_DEFENSE)
end
function cm.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(cm.filter,tp,0,LOCATION_MZONE,1,nil) end
end
function cm.operation(e,tp,eg,ep,ev,re,r,rp)
RD.SelectAndDoAction(aux.Stringid(m,1),cm.filter,tp,0,LOCATION_MZONE,1,1,nil,function(g)
RD.ChangeRace(e,g:GetFirst(),RACE_INSECT,RESET_EVENT+RESETS_STANDARD+RESET_PHASE+PHASE_END)
if Duel.IsExistingMatchingCard(cm.exfilter,tp,LOCATION_MZONE,LOCATION_MZONE,1,e:GetHandler()) then
RD.CanDraw(aux.Stringid(m,1),tp,1)
end
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