Commit 8b1f96db authored by wind2009's avatar wind2009

Fix ワクチンゲール

parent f28cac1f
Pipeline #26406 passed with stages
in 1 minute and 5 seconds
...@@ -48,7 +48,7 @@ end ...@@ -48,7 +48,7 @@ end
function s.atkop(e,tp,eg,ep,ev,re,r,rp) function s.atkop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
local tc=Duel.GetFirstTarget() local tc=Duel.GetFirstTarget()
if tc:IsFaceup() and tc:IsRelateToEffect(e) and tc:IsLocation(LOCATION_MZONE) then if tc:IsRelateToEffect(e) and tc:IsLocation(LOCATION_MZONE) and s.arkfilter(tc) then
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE) e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
...@@ -87,12 +87,12 @@ function s.atkcon2(e,tp,eg,ep,ev,re,r,rp) ...@@ -87,12 +87,12 @@ function s.atkcon2(e,tp,eg,ep,ev,re,r,rp)
end end
function s.atkfilter(c,e,tp) function s.atkfilter(c,e,tp)
return c:IsSummonPlayer(tp) and (not e or c:IsRelateToEffect(e)) return c:IsSummonPlayer(tp) and (not e or c:IsRelateToEffect(e))
and c:IsType(TYPE_MONSTER) and c:IsFaceup() and c:IsType(TYPE_MONSTER) and c:IsFaceup() and c:IsLocation(LOCATION_MZONE)
end end
function s.atktg2(e,tp,eg,ep,ev,re,r,rp,chk) function s.atktg2(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return eg:IsExists(s.atkfilter,1,nil,nil,tp) end if chk==0 then return eg:IsExists(s.atkfilter,1,nil,nil,tp) end
local g=eg:Filter(s.atkfilter,nil,nil,tp) local g=eg:Filter(s.atkfilter,nil,nil,tp)
Duel.SetTargetCard(eg) Duel.SetTargetCard(g)
end end
function s.atkop2(e,tp,eg,ep,ev,re,r,rp) function s.atkop2(e,tp,eg,ep,ev,re,r,rp)
local g=eg:Filter(s.atkfilter,nil,e,tp):Filter(Card.IsRelateToChain,nil) local g=eg:Filter(s.atkfilter,nil,e,tp):Filter(Card.IsRelateToChain,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