Commit 3db5c394 authored by a597449807's avatar a597449807 Committed by GitHub

Fix RR-ストラングル・レイニアス (#2725)

修复②效果在自己场上只有用暗属性超量怪兽在作为超量素材中的超量怪兽里侧表示的场合,应不能发动的问题。

https://ocg-rule.readthedocs.io/zh-cn/latest/c06/2020.html#id137
parent 6b00ba44
...@@ -60,7 +60,7 @@ function c87321742.mfilter(c) ...@@ -60,7 +60,7 @@ function c87321742.mfilter(c)
return c:IsType(TYPE_XYZ) and c:IsAttribute(ATTRIBUTE_DARK) return c:IsType(TYPE_XYZ) and c:IsAttribute(ATTRIBUTE_DARK)
end end
function c87321742.ffilter(c) function c87321742.ffilter(c)
return c:IsType(TYPE_XYZ) and c:GetOverlayGroup():IsExists(c87321742.mfilter,1,nil) return c:IsType(TYPE_XYZ) and c:GetOverlayGroup():IsExists(c87321742.mfilter,1,nil) and c:IsFaceup()
end end
function c87321742.spcon(e,tp,eg,ep,ev,re,r,rp) function c87321742.spcon(e,tp,eg,ep,ev,re,r,rp)
return Duel.IsExistingMatchingCard(c87321742.ffilter,tp,LOCATION_MZONE,0,1,nil) return Duel.IsExistingMatchingCard(c87321742.ffilter,tp,LOCATION_MZONE,0,1,nil)
......
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