Commit 40f40b92 authored by 未闻皂名's avatar 未闻皂名

2023/2/12 新增:钢铁马 马赫圣毒

parent ca9ab5d9
Pipeline #20092 passed with stages
in 6 minutes and 17 seconds
No preview for this file type
local m=120238016
local cm=_G["c"..m]
cm.name="钢铁马 马赫圣毒"
function cm.initial_effect(c)
--Coin
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(m,0))
e1:SetCategory(CATEGORY_COIN)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetTarget(cm.target)
e1:SetOperation(cm.operation)
c:RegisterEffect(e1)
end
cm.toss_coin=true
--Destroy
function cm.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(Card.IsFaceup,tp,0,LOCATION_MZONE,1,nil) end
local ct=Duel.GetMatchingGroupCount(Card.IsFaceup,tp,0,LOCATION_MZONE,nil)
Duel.SetOperationInfo(0,CATEGORY_COIN,nil,0,tp,ct)
end
function cm.operation(e,tp,eg,ep,ev,re,r,rp)
local ct=Duel.GetMatchingGroupCount(Card.IsFaceup,tp,0,LOCATION_MZONE,nil)
if ct==0 then return end
local coin=0
local res={Duel.TossCoin(tp,ct)}
for i=1,ct do
coin=coin+res[i]
end
local c=e:GetHandler()
if c:IsFaceup() and c:IsRelateToEffect(e) then
if coin>0 then
RD.AttachExtraAttack(e,c,1,aux.Stringid(m,1),RESET_EVENT+RESETS_STANDARD+RESET_DISABLE+RESET_PHASE+PHASE_END)
end
if coin==3 then
RD.AttachPierce(e,c,aux.Stringid(m,2),RESET_EVENT+RESETS_STANDARD+RESET_DISABLE+RESET_PHASE+PHASE_END)
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