Commit f1a32071 authored by wind2009's avatar wind2009

Merge branch 'patch-7' into 'master'

Fix ドラゴンメイド・ラティス

See merge request !155
parents 9f7d4faa bceb6e93
Pipeline #31696 passed with stages
in 4 minutes and 41 seconds
...@@ -98,10 +98,10 @@ function s.spop1(e,tp,eg,ep,ev,re,r,rp) ...@@ -98,10 +98,10 @@ function s.spop1(e,tp,eg,ep,ev,re,r,rp)
end end
end end
function s.filter0(c,e) function s.filter0(c,e)
return c:IsLocation(LOCATION_MZONE) and c:IsCanBeFusionMaterial() and c:IsAbleToDeck() and not c:IsImmuneToEffect(e) return c:IsLocation(LOCATION_MZONE) and c:IsType(TYPE_MONSTER) and c:IsCanBeFusionMaterial() and c:IsAbleToDeck() and not c:IsImmuneToEffect(e)
end end
function s.filter1(c,e) function s.filter1(c,e)
return c:IsFaceupEx() and c:IsCanBeFusionMaterial() and c:IsAbleToDeck() and not c:IsImmuneToEffect(e) return c:IsFaceupEx() and c:IsType(TYPE_MONSTER) and c:IsCanBeFusionMaterial() and c:IsAbleToDeck() and not c:IsImmuneToEffect(e)
end end
function s.filter2(c,e,tp,m,f,chkf) function s.filter2(c,e,tp,m,f,chkf)
return c:IsType(TYPE_FUSION) and c:IsRace(RACE_DRAGON) and (not f or f(c)) return c:IsType(TYPE_FUSION) and c:IsRace(RACE_DRAGON) and (not f or f(c))
......
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