--动物朋友 PPP 皇家企鹅 function c33700067.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(c33700067.condition) e0:SetOperation(c33700067.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_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetTarget(c33700067.sptg) e1:SetOperation(c33700067.spop) c:RegisterEffect(e1) local e2=e1:Clone() e2:SetCode(EVENT_SPSUMMON_SUCCESS) c:RegisterEffect(e2) --atk/def local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_SINGLE) e3:SetRange(LOCATION_MZONE) e3:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e3:SetCode(EFFECT_SET_ATTACK_FINAL) e3:SetCondition(c33700067.con) e3:SetValue(3500) c:RegisterEffect(e3) local e4=e3:Clone() e4:SetCode(EFFECT_SET_DEFENSE_FINAL) e4:SetValue(3500) c:RegisterEffect(e4) end function c33700067.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 c33700067.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 c33700067.spfilter(c,e,tp) return c:IsSetCard(0x3442) and c:IsCanBeSpecialSummoned(e,0,tp,false,false) end function c33700067.sptg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.GetMZoneCount(tp)>0 and Duel.IsExistingMatchingCard(c33700067.spfilter,tp,LOCATION_HAND,0,1,nil,e,tp) end Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_HAND) end function c33700067.spop(e,tp,eg,ep,ev,re,r,rp) local ft=Duel.GetMZoneCount(tp) if ft<=0 then return end if Duel.IsPlayerAffectedByEffect(tp,59822133) then ft=1 end local g=Duel.SelectMatchingCard(tp,c33700067.spfilter,tp,LOCATION_HAND,0,1,ft,nil,e,tp) local tc=g:GetFirst() while tc do if tc then Duel.SpecialSummon(tc,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) tc:RegisterEffect(e3,true) local e4=e3:Clone() e4:SetCode(EFFECT_CANNOT_BE_SYNCHRO_MATERIAL) tc:RegisterEffect(e4,true) local e5=e3:Clone() e5:SetCode(EFFECT_CANNOT_BE_XYZ_MATERIAL) tc:RegisterEffect(e5,true) end tc=g:GetNext() end end function c33700067.cfilter(c) return c:IsFaceup() and c:IsSetCard(0x3442) end function c33700067.con(e) local g=Duel.GetMatchingGroup(c33700067.cfilter,e:GetHandlerPlayer(),LOCATION_MZONE,0,nil) if g:GetClassCount(Card.GetCode)==5 then if e:GetHandler():GetFlagEffect(33700067)==0 then e:GetHandler():RegisterFlagEffect(33700067,0x1fe1000,0,1) Duel.Hint(HINT_MUSIC,0,aux.Stringid(33700067,0)) end return true else return false end end