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

2024/4/16 新增:宇宙姬的嬉戏

parent d51391a3
Pipeline #26525 passed with stages
in 8 minutes and 8 seconds
No preview for this file type
......@@ -16,7 +16,7 @@ function cm.initial_effect(c)
end
--Activate
function cm.target(c,e,tp)
return c:IsFaceup()
return c:IsFaceup() and c:IsControler(tp)
end
--Atk & Def Up
function cm.upval(e,c)
......
local m=120261058
local cm=_G["c"..m]
cm.name="宇宙姬的嬉戏"
function cm.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(cm.cost)
e1:SetTarget(cm.target)
e1:SetOperation(cm.activate)
c:RegisterEffect(e1)
end
--Activate
function cm.costfilter(c)
return c:IsType(TYPE_MONSTER)
end
function cm.check(g,e,tp)
return g:IsExists(cm.costfilter,2,nil)
end
cm.cost=RD.CostSendHandSubToGrave(Card.IsAbleToGraveAsCost,cm.check,3,3)
function cm.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(nil,tp,0,LOCATION_ONFIELD,1,nil) end
Duel.SetOperationInfo(0,CATEGORY_DESTROY,nil,1,1-tp,LOCATION_ONFIELD)
end
function cm.activate(e,tp,eg,ep,ev,re,r,rp)
RD.SelectAndDoAction(HINTMSG_DESTROY,nil,tp,0,LOCATION_ONFIELD,1,2,nil,function(g)
if Duel.Destroy(g,REASON_EFFECT)~=0
and Duel.GetFieldGroupCount(tp,0,LOCATION_ONFIELD)>=2 then
RD.CanDraw(aux.Stringid(m,1),tp,2,true)
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