Commit 7123d26a authored by 未闻皂名's avatar 未闻皂名

2022/6/5 新增:辉煌F阶层大师

parent 0e61f5c0
Pipeline #13443 passed with stages
in 4 minutes and 14 seconds
No preview for this file type
local m=120222044
local list={120186019}
local cm=_G["c"..m]
cm.name="辉煌F阶层大师"
function cm.initial_effect(c)
aux.AddCodeList(c,list[1])
--Fusion Material
aux.AddFusionProcCode2(c,list[1],list[1],true,true)
--Draw
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(m,0))
e1:SetCategory(CATEGORY_COIN+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
cm.toss_coin=true
--Draw
cm.cost=RD.CostPayLP(600)
function cm.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsPlayerCanDraw(tp,2) end
Duel.SetOperationInfo(0,CATEGORY_COIN,nil,0,tp,1)
Duel.SetOperationInfo(0,CATEGORY_DRAW,nil,0,tp,1)
end
function cm.operation(e,tp,eg,ep,ev,re,r,rp)
local res=Duel.TossCoin(tp,1)
if res==1 then
Duel.Draw(tp,2,REASON_EFFECT)
else
Duel.Draw(tp,1,REASON_EFFECT)
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