Commit b7e81e92 authored by wind2009's avatar wind2009

Fix 星辰鋏竜シャウラス

parent 1b763777
...@@ -138,7 +138,7 @@ function s.tdfilter1(c,e) ...@@ -138,7 +138,7 @@ function s.tdfilter1(c,e)
return c:IsSetCard(0x1c9) and c:IsCanBeEffectTarget(e) and c:IsAbleToDeck() return c:IsSetCard(0x1c9) and c:IsCanBeEffectTarget(e) and c:IsAbleToDeck()
end end
function s.typefilter(c,ec) 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 end
function s.tdfilter2(c,g) function s.tdfilter2(c,g)
return c:IsFaceup() and g:IsExists(s.typefilter,1,nil,c) and c:IsAbleToDeck() 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