Commit e9e12a74 authored by Huangnan's avatar Huangnan

光之战士 艾克斯 描述纠正

parent 49c5ae96
Pipeline #29801 failed with stages
in 29 minutes and 36 seconds
No preview for this file type
...@@ -49,22 +49,19 @@ function c60152011.initial_effect(c) ...@@ -49,22 +49,19 @@ function c60152011.initial_effect(c)
--c:RegisterEffect(e3) --c:RegisterEffect(e3)
end end
function c60152011.cfilter(c) function c60152011.cfilter(c)
return c:IsSetCard(0x6b25) and c:IsType(TYPE_MONSTER) and not c:IsCode(60152011) and c:IsReleasable() return c:IsSetCard(0x6b25) and c:IsType(TYPE_MONSTER) and not c:IsCode(60152011)
end end
function c60152011.spcon(e,c) function c60152011.spcon(e,c)
if c==nil then return true end if c==nil then return true end
local tp=c:GetControler() local tp=c:GetControler()
local mg=Duel.GetMatchingGroup(c60152011.cfilter,tp,LOCATION_MZONE,0,nil) local g=Duel.GetReleaseGroup(tp,false,REASON_SPSUMMON):Filter(c60152011.cfilter,nil)
return mg:CheckSubGroup(aux.mzctcheck,3,3,tp) return g:CheckSubGroup(aux.mzctcheckrel,3,3,tp,REASON_SPSUMMON)
end end
function c60152011.spop(e,tp,eg,ep,ev,re,r,rp,c) function c60152011.spop(e,tp,eg,ep,ev,re,r,rp,c)
local g=Duel.SelectReleaseGroup(REASON_COST,c:GetControler(),c60152011.cfilter,3,3,nil) local g=Duel.GetReleaseGroup(tp,false,REASON_SPSUMMON):Filter(c60152011.cfilter,nil)
local tc2=g:GetFirst() Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_RELEASE)
while tc2 do local sg=g:SelectSubGroup(tp,aux.mzctcheckrel,false,3,3,tp,REASON_SPSUMMON)
if not tc2:IsFaceup() then Duel.ConfirmCards(1-tp,tc2) end Duel.Release(sg,REASON_SPSUMMON)
tc2=g:GetNext()
end
Duel.Release(g,REASON_COST)
end end
function c60152011.spcost2(e,tp,eg,ep,ev,re,r,rp,chk) function c60152011.spcost2(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.GetMatchingGroup(Card.IsReleasable,tp,LOCATION_MZONE,0,e:GetHandler()) if chk==0 then return Duel.GetMatchingGroup(Card.IsReleasable,tp,LOCATION_MZONE,0,e:GetHandler())
......
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