Commit 354dc519 authored by 未闻皂名's avatar 未闻皂名

2022/12/29 新增:秘密行销魔术,更新翻译

parent d258c13d
Pipeline #18895 passed with stages
in 4 minutes and 52 seconds
No preview for this file type
local m=120235042
local cm=_G["c"..m]
cm.name="秘密行销魔术"
function cm.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCost(cm.cost)
e1:SetTarget(cm.target)
e1:SetOperation(cm.activate)
c:RegisterEffect(e1)
end
--Activate
function cm.costfilter(c,e,tp)
if not c:IsAbleToGraveAsCost() then return false end
if RD.IsLPBelow(tp,1000) then return Duel.IsPlayerCanDraw(tp,2) or not c:IsType(TYPE_SPELL) end
return true
end
cm.cost=RD.CostSendHandToGrave(cm.costfilter,1,1,nil,nil,function(g)
return g:GetFirst():GetType()
end)
function cm.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsPlayerCanDraw(tp,1) end
RD.TargetDraw(tp,1)
end
function cm.activate(e,tp,eg,ep,ev,re,r,rp)
if RD.Draw()~=0 and e:GetLabel()&TYPE_SPELL==TYPE_SPELL and RD.IsLPBelow(tp,1000) then
Duel.Draw(tp,1,REASON_EFFECT)
end
end
\ No newline at end of file
local m=120235045
local list={120105001}
local cm=_G["c"..m]
cm.name="大道武器-剑破坏者"
cm.name="大道武器-破刃剑"
function cm.initial_effect(c)
RD.AddCodeList(c,list)
--Activate
......
local m=120235047
local list={120196050}
local cm=_G["c"..m]
cm.name="BACK TO THE☆融合术"
cm.name="回到THE☆融合术"
function cm.initial_effect(c)
RD.AddCodeList(c,list)
--Activate
......
local m=120235053
local cm=_G["c"..m]
cm.name="苍救照览"
cm.name="苍救照览"
function cm.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
......
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