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

2026/1/5 新增:虚空噬骸兵新卡

parent fb8d3789
Pipeline #42410 passed with stages
in 9 minutes and 11 seconds
No preview for this file type
...@@ -11,6 +11,7 @@ function cm.initial_effect(c) ...@@ -11,6 +11,7 @@ function cm.initial_effect(c)
e1:SetCode(EFFECT_CANNOT_TO_HAND_EFFECT) e1:SetCode(EFFECT_CANNOT_TO_HAND_EFFECT)
e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
e1:SetRange(LOCATION_MZONE) e1:SetRange(LOCATION_MZONE)
e1:SetCondition(cm.econ)
e1:SetValue(cm.efilter) e1:SetValue(cm.efilter)
c:RegisterEffect(e1) c:RegisterEffect(e1)
local e2=e1:Clone() local e2=e1:Clone()
...@@ -34,6 +35,9 @@ function cm.matfilter(c,fc,sub) ...@@ -34,6 +35,9 @@ function cm.matfilter(c,fc,sub)
return c:IsFusionAttribute(ATTRIBUTE_DARK) and c:IsRace(RACE_GALAXY) return c:IsFusionAttribute(ATTRIBUTE_DARK) and c:IsRace(RACE_GALAXY)
end end
--Cannot To Hand & Deck & Extra --Cannot To Hand & Deck & Extra
function cm.econ(e)
return Duel.GetTurnPlayer()~=e:GetHandlerPlayer()
end
function cm.efilter(e,re,r,rp) function cm.efilter(e,re,r,rp)
return re:IsActiveType(TYPE_MONSTER) return re:IsActiveType(TYPE_MONSTER)
end end
......
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