Commit 9ba182ab authored by 未闻皂名's avatar 未闻皂名
parents 2d897e42 975b6c4b
Pipeline #17827 passed with stages
in 5 minutes and 6 seconds
......@@ -21,10 +21,10 @@ function cm.confilter1(c,tp)
return c:GetSummonPlayer()==tp and c:IsFaceup()
end
function cm.confilter2(c)
return c:IsFaceup() and c:IsRace(RACE_GALAXY)
return c:IsFaceup() and c:IsRace(RACE_GALAXY) and c:IsAttribute(ATTRIBUTE_DARK)
end
function cm.confilter3(c)
return c:IsFaceup() and not c:IsRace(RACE_GALAXY)
return c:IsFaceup() and not (c:IsRace(RACE_GALAXY) and c:IsAttribute(ATTRIBUTE_DARK))
end
function cm.condition(e,tp,eg,ep,ev,re,r,rp)
return eg:IsExists(cm.confilter1,1,nil,1-tp)
......
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