Commit b46f0d80 authored by wind2009's avatar wind2009

Fix 捕食植物デェアデビル

parent 5b9bce45
...@@ -48,7 +48,7 @@ function s.hspfilter2(c,tp,fc) ...@@ -48,7 +48,7 @@ function s.hspfilter2(c,tp,fc)
and c:IsCanBeFusionMaterial(fc,SUMMON_TYPE_SPECIAL) and c:IsCanBeFusionMaterial(fc,SUMMON_TYPE_SPECIAL)
end end
function s.hspfilter(c,tp,fc) function s.hspfilter(c,tp,fc)
return c:IsFaceup() and (c:IsFusionSetCard(0x10f3) or c:GetCounter(0x1041)>0) return (c:IsFaceup() or c:IsControler(tp)) and (c:IsFusionSetCard(0x10f3) or c:GetCounter(0x1041)>0)
and c:IsReleasable(REASON_MATERIAL|REASON_SPSUMMON) and c:IsReleasable(REASON_MATERIAL|REASON_SPSUMMON)
and c:IsCanBeFusionMaterial(fc,SUMMON_TYPE_SPECIAL) and c:IsCanBeFusionMaterial(fc,SUMMON_TYPE_SPECIAL)
end end
...@@ -67,6 +67,7 @@ function s.hsptg(e,tp,eg,ep,ev,re,r,rp,chk,c) ...@@ -67,6 +67,7 @@ function s.hsptg(e,tp,eg,ep,ev,re,r,rp,chk,c)
if sg:GetCount()>0 then if sg:GetCount()>0 then
sg:KeepAlive() sg:KeepAlive()
e:SetLabelObject(sg) e:SetLabelObject(sg)
return true
else return false end else return false end
end end
function s.hspop(e,tp,eg,ep,ev,re,r,rp,c) function s.hspop(e,tp,eg,ep,ev,re,r,rp,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