Commit b7e81e92 authored by wind2009's avatar wind2009

Fix 星辰鋏竜シャウラス

parent 1b763777
Pipeline #40901 passed with stages
in 3 minutes and 48 seconds
......@@ -138,7 +138,7 @@ function s.tdfilter1(c,e)
return c:IsSetCard(0x1c9) and c:IsCanBeEffectTarget(e) and c:IsAbleToDeck()
end
function s.typefilter(c,ec)
return (c:GetType()|ec:GetType())&(TYPE_MONSTER+TYPE_SPELL+TYPE_TRAP)~=0
return (c:GetType()&ec:GetType())&(TYPE_MONSTER+TYPE_SPELL+TYPE_TRAP)~=0
end
function s.tdfilter2(c,g)
return c:IsFaceup() and g:IsExists(s.typefilter,1,nil,c) and c:IsAbleToDeck()
......
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