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

2025/9/16 新增:牧牛医挚爱

parent 5f0c0605
Pipeline #40632 passed with stages
in 8 minutes and 56 seconds
No preview for this file type
......@@ -6,6 +6,7 @@
#Forbidden
120226013 0 -- 业火之结界像
120238008 0 -- 虚无魔人
#Limit
120160003 1 -- 死灵女仆·小七
......@@ -23,6 +24,7 @@
120247005 1 -- 鹰身女郎2
120277027 1 -- 魔力动物守卫者
120274065 1 -- 梦中的拥抱
120280006 1 -- 混沌之翼龙
#Semi-Limit
120217035 2 -- 革新制壶陶艺家
......@@ -34,5 +36,6 @@
120247014 2 -- 万华镜-华丽的分身-
120263030 2 -- 元素循环
120208053 2 -- 幽灵旋风
120235024 2 -- 苍救骑士 西埃拉
120264028 2 -- 莓果新人·羞怯小莓
120280007 2 -- 进军的路易斯
120257066 2 -- 日落逆转
local cm,m=GetID()
local list={120290026}
cm.name="牧牛医挚爱"
function cm.initial_effect(c)
RD.AddCodeList(c,list)
--Fusion Material
RD.AddFusionProcedure(c,list[1],cm.matfilter)
--No Damage
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_AVOID_BATTLE_DAMAGE)
e1:SetValue(1)
c:RegisterEffect(e1)
local e2=e1:Clone()
e2:SetCode(EFFECT_NO_BATTLE_DAMAGE)
c:RegisterEffect(e2)
--Atk Up
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_SINGLE)
e3:SetCode(EFFECT_UPDATE_ATTACK)
e3:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e3:SetRange(LOCATION_MZONE)
e3:SetCondition(cm.atkcon)
e3:SetValue(200)
c:RegisterEffect(e3)
--Continuous Effect
RD.AddContinuousEffect(c,e1,e2)
end
--Fusion Material
cm.unspecified_funsion=true
function cm.matfilter(c)
return c:IsLevelBelow(4) and c:IsFusionAttribute(ATTRIBUTE_WIND)
end
--Atk Up
function cm.atkcon(e)
return Duel.GetTurnPlayer()==e:GetHandlerPlayer()
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