Commit 209186a9 authored by mercury233's avatar mercury233

fix

parent 29f09785
...@@ -49,7 +49,7 @@ function c100417003.cfilter(c,tp) ...@@ -49,7 +49,7 @@ function c100417003.cfilter(c,tp)
return c:IsControler(1-tp) and c:IsLocation(LOCATION_ONFIELD) return c:IsControler(1-tp) and c:IsLocation(LOCATION_ONFIELD)
end end
function c100417003.atkcon(e,tp,eg,ep,ev,re,r,rp) function c100417003.atkcon(e,tp,eg,ep,ev,re,r,rp)
return rp==tp and re:IsSetCard(0x26f) and (re:IsActiveType(TYPE_MONSTER) or re:IsHasType(EFFECT_TYPE_ACTIVATE)) return rp==tp and re:GetHandler():IsSetCard(0x26f) and (re:IsActiveType(TYPE_MONSTER) or re:IsHasType(EFFECT_TYPE_ACTIVATE))
and eg:IsExists(c100417003.cfilter,1,nil,tp) and eg:IsExists(c100417003.cfilter,1,nil,tp)
end end
function c100417003.atktg(e,tp,eg,ep,ev,re,r,rp,chk,chkc) function c100417003.atktg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
......
...@@ -48,9 +48,10 @@ function c100417007.spop(e,tp,eg,ep,ev,re,r,rp) ...@@ -48,9 +48,10 @@ function c100417007.spop(e,tp,eg,ep,ev,re,r,rp)
local ft=Duel.GetLocationCount(tp,LOCATION_MZONE) local ft=Duel.GetLocationCount(tp,LOCATION_MZONE)
if ft<=0 then return end if ft<=0 then return end
if ft>1 and Duel.IsPlayerAffectedByEffect(tp,59822133) then ft=1 end if ft>1 and Duel.IsPlayerAffectedByEffect(tp,59822133) then ft=1 end
local ct=math.min(ft,2)
local g=Duel.GetMatchingGroup(c100417007.spfilter,tp,LOCATION_HAND+LOCATION_DECK,0,nil,e,tp) local g=Duel.GetMatchingGroup(c100417007.spfilter,tp,LOCATION_HAND+LOCATION_DECK,0,nil,e,tp)
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON)
local sg=g:SelectSubGroup(tp,aux.dncheck,false,1,ft) local sg=g:SelectSubGroup(tp,aux.dncheck,false,1,ct)
if sg then if sg then
Duel.SpecialSummon(sg,0,tp,tp,false,false,POS_FACEUP_DEFENSE) Duel.SpecialSummon(sg,0,tp,tp,false,false,POS_FACEUP_DEFENSE)
end end
......
...@@ -8,7 +8,6 @@ function c101106030.initial_effect(c) ...@@ -8,7 +8,6 @@ function c101106030.initial_effect(c)
e1:SetType(EFFECT_TYPE_IGNITION) e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND) e1:SetRange(LOCATION_HAND)
e1:SetCountLimit(1,101106030) e1:SetCountLimit(1,101106030)
e1:SetTarget(c101106030.target)
e1:SetOperation(c101106030.operation) e1:SetOperation(c101106030.operation)
c:RegisterEffect(e1) c:RegisterEffect(e1)
--special summon --special summon
...@@ -25,9 +24,6 @@ function c101106030.initial_effect(c) ...@@ -25,9 +24,6 @@ function c101106030.initial_effect(c)
e2:SetOperation(c101106030.spop) e2:SetOperation(c101106030.spop)
c:RegisterEffect(e2) c:RegisterEffect(e2)
end end
function c101106030.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return not e:GetHandler():IsPublic() end
end
function c101106030.operation(e,tp,eg,ep,ev,re,r,rp) function c101106030.operation(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
if not c:IsRelateToEffect(e) then return end if not c:IsRelateToEffect(e) then return end
...@@ -84,7 +80,7 @@ function c101106030.spop(e,tp,eg,ep,ev,re,r,rp) ...@@ -84,7 +80,7 @@ function c101106030.spop(e,tp,eg,ep,ev,re,r,rp)
Duel.BreakEffect() Duel.BreakEffect()
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SET) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SET)
local sg=g:Select(tp,1,1,nil) local sg=g:Select(tp,1,1,nil)
Duel.SSet(tp,sg) Duel.SSet(tp,sg,tp,false)
local tc=sg:GetFirst() local tc=sg:GetFirst()
tc:RegisterFlagEffect(101106030,RESET_EVENT+RESETS_STANDARD,0,1) tc:RegisterFlagEffect(101106030,RESET_EVENT+RESETS_STANDARD,0,1)
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(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