You need to sign in or sign up before continuing.
Commit b4fd95ea authored by Amiya's avatar Amiya

修复

parent 58ae1485
Pipeline #43761 passed with stages
in 2 minutes and 19 seconds
...@@ -18,10 +18,11 @@ function s.cfilter(c,tp) ...@@ -18,10 +18,11 @@ function s.cfilter(c,tp)
and aux.MustMaterialCheck(c,tp,EFFECT_MUST_BE_XMATERIAL) and aux.MustMaterialCheck(c,tp,EFFECT_MUST_BE_XMATERIAL)
end end
function s.spfilter(c,e,tp,g) function s.spfilter(c,e,tp,g)
g:AddCard(c) local sg=g:Clone()
sg:AddCard(c)
return c:IsFaceupEx() and c:IsSetCard(0x10db,0x2073) return c:IsFaceupEx() and c:IsSetCard(0x10db,0x2073)
and c:IsCanBeSpecialSummoned(e,0,tp,false,false) and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
and g:IsExists(s.stfilter,1,nil,e,tp) and sg:IsExists(s.stfilter,1,nil,e,tp)
end end
function s.stfilter(c,e,tp) function s.stfilter(c,e,tp)
return c:IsFaceupEx() and c:IsType(TYPE_XYZ) and c:IsAttribute(ATTRIBUTE_DARK) return c:IsFaceupEx() and c:IsType(TYPE_XYZ) and c:IsAttribute(ATTRIBUTE_DARK)
......
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