Commit 84ce7d89 authored by 未闻皂名's avatar 未闻皂名

2025/11/5 新增:暴风之眼

parent d039beb0
Pipeline #41508 passed with stages
in 7 minutes and 48 seconds
No preview for this file type
local cm,m=GetID()
local list={120109051}
cm.name="暴风之眼"
function cm.initial_effect(c)
RD.AddCodeList(c,list)
--Fusion Summon
local e1=RD.CreateFusionEffect(c,cm.matfilter,cm.spfilter,cm.exfilter,LOCATION_GRAVE,0,nil,RD.FusionToDeck)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_FUSION_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetProperty(EFFECT_FLAG_SPSUM_PARAM)
e1:SetRange(LOCATION_MZONE)
e1:SetLabel(2,2)
e1:SetCondition(RD.ConditionSummonTurn)
c:RegisterEffect(e1)
end
--Fusion Summon
function cm.matfilter(c)
return c:IsOnField() and c:IsLevelBelow(6) and c:IsAbleToDeck()
end
function cm.spfilter(c)
return c:IsCode(list[1])
end
function cm.exfilter(c)
return c:IsLevelBelow(6) and c:IsCanBeFusionMaterial() and c:IsAbleToDeck()
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