--动物朋友 PPP 金图企鹅 function c33700065.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(c33700065.condition) e0:SetOperation(c33700065.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_RECOVER) e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetTarget(c33700065.tg) e1:SetOperation(c33700065.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_INDESTRUCTABLE_EFFECT) e3:SetRange(LOCATION_MZONE) e3:SetTargetRange(LOCATION_MZONE,0) e3:SetCondition(c33700065.con) e3:SetValue(1) e3:SetTarget(aux.TargetBoolFunction(Card.IsSetCard,0x3442)) c:RegisterEffect(e3) --avoid damage local e4=Effect.CreateEffect(c) e4:SetType(EFFECT_TYPE_FIELD) e4:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e4:SetCode(EFFECT_NO_EFFECT_DAMAGE) e4:SetRange(LOCATION_MZONE) e4:SetTargetRange(1,0) e4:SetCondition(c33700065.con) e4:SetValue(c33700065.damval) c:RegisterEffect(e4) end function c33700065.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 c33700065.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 c33700065.cfilter(c) return c:IsFaceup() and c:IsSetCard(0x3442) end function c33700065.cfilter1(c) return c:IsFaceup() and c:IsSetCard(0x442) end function c33700065.con(e) local g=Duel.GetMatchingGroup(c33700065.cfilter,e:GetHandlerPlayer(),LOCATION_MZONE,0,nil) return g:GetClassCount(Card.GetCode)>=3 end function c33700065.tg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return true end local ct=Duel.GetMatchingGroupCount(c33700065.cfilter1,tp,LOCATION_MZONE,0,nil) Duel.SetTargetPlayer(tp) Duel.SetOperationInfo(0,CATEGORY_RECOVER,nil,0,tp,ct*800) end function c33700065.op(e,tp,eg,ep,ev,re,r,rp) local p=Duel.GetChainInfo(0,CHAININFO_TARGET_PLAYER) local ct=Duel.GetMatchingGroupCount(c33700065.cfilter1,p,LOCATION_MZONE,0,nil) if ct>0 then Duel.Recover(p,ct*800,REASON_EFFECT) end end function c33700065.damval(e,re,val,r,rp,rc) if bit.band(r,REASON_EFFECT)~=0 then return 0 end return val end