--动物朋友 PPP 帝企鹅 function c33700063.initial_effect(c) --special summon local e0=Effect.CreateEffect(c) e0:SetCategory(CATEGORY_SPECIAL_SUMMON) e0:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e0:SetCode(EVENT_TO_HAND) e0:SetCondition(c33700063.condition) e0:SetOperation(c33700063.operation) c:RegisterEffect(e0) --effect local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(40044918,0)) e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetCondition(c33700063.descon) e1:SetTarget(c33700063.tg) e1:SetOperation(c33700063.op) c:RegisterEffect(e1) local e2=e1:Clone() e2:SetCode(EVENT_SPSUMMON_SUCCESS) c:RegisterEffect(e2) --pierce local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_FIELD) e3:SetCode(EFFECT_PIERCE) e3:SetRange(LOCATION_MZONE) e3:SetTargetRange(LOCATION_MZONE,0) e3:SetCondition(c33700063.con) e3:SetTarget(aux.TargetBoolFunction(Card.IsSetCard,0x3442)) c:RegisterEffect(e3) end function c33700063.condition(e,tp,eg,ep,ev,re,r,rp) local c=e:GetHandler() local rc=re and re:GetHandler() return c:IsReason(REASON_EFFECT) and c:IsPreviousLocation(LOCATION_DECK) and c:GetPreviousControler()==tp and rc and rc:IsSetCard(0x442) and Duel.GetMZoneCount(tp)>0 and c:IsCanBeSpecialSummoned(e,0,tp,false,false) and Duel.GetTurnCount()>0 end function c33700063.operation(e,tp,eg,ep,ev,re,r,rp) if Duel.GetMZoneCount(tp)>0 and e:GetHandler():IsCanBeSpecialSummoned(e,0,tp,false,false) and Duel.SelectYesNo(tp,aux.Stringid(33700063,0)) then Duel.SpecialSummon(e:GetHandler(),0,tp,tp,false,false,POS_FACEUP) local e3=Effect.CreateEffect(e:GetHandler()) e3:SetType(EFFECT_TYPE_SINGLE) e3:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e3:SetCode(EFFECT_CANNOT_BE_FUSION_MATERIAL) e3:SetValue(1) e3:SetReset(RESET_EVENT+0x1fe0000) e:GetHandler():RegisterEffect(e3,true) local e4=e3:Clone() e4:SetCode(EFFECT_CANNOT_BE_SYNCHRO_MATERIAL) e:GetHandler():RegisterEffect(e4,true) local e5=e3:Clone() e5:SetCode(EFFECT_CANNOT_BE_XYZ_MATERIAL) e:GetHandler():RegisterEffect(e5,true) end end function c33700063.cfilter(c) return c:IsFaceup() and c:IsSetCard(0x3442) end function c33700063.desfilter(c) return c:IsFaceup() and c:IsSetCard(0x442) end function c33700063.descon(e,tp,eg,ep,ev,re,r,rp) return Duel.IsExistingMatchingCard(c33700063.desfilter,tp,LOCATION_MZONE,0,1,e:GetHandler()) end function c33700063.tg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.IsExistingMatchingCard(aux.TRUE,tp,LOCATION_ONFIELD,LOCATION_ONFIELD,1,nil) end local g=Duel.GetMatchingGroup(aux.TRUE,tp,LOCATION_ONFIELD,LOCATION_ONFIELD,nil) Duel.SetOperationInfo(0,CATEGORY_DESTROY,g,1,0,0) end function c33700063.op(e,tp,eg,ep,ev,re,r,rp) local ct=Duel.GetMatchingGroupCount(c33700063.desfilter,tp,LOCATION_MZONE,0,e:GetHandler()) if ct==0 then return end Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_DESTROY) local g=Duel.SelectMatchingCard(tp,aux.TRUE,tp,LOCATION_ONFIELD,LOCATION_ONFIELD,1,ct,nil) if g:GetCount()>0 then Duel.Destroy(g,REASON_EFFECT) end end function c33700063.con(e) local g=Duel.GetMatchingGroup(c33700063.cfilter,e:GetHandlerPlayer(),LOCATION_MZONE,0,nil) return g:GetClassCount(Card.GetCode)>=3 end