--动物朋友 苏利羊驼 function c33700076.initial_effect(c) c33700076[c]={} local effect_list=c33700076[c] --tohand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(3841833,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) effect_list[3]=e1 e1:SetCost(c33700076.cost) e1:SetTarget(c33700076.target) e1:SetOperation(c33700076.operation) c:RegisterEffect(e1) --recover local e2=Effect.CreateEffect(c) e2:SetCategory(CATEGORY_RECOVER) e2:SetDescription(aux.Stringid(25165047,0)) e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e2:SetCode(EVENT_SUMMON_SUCCESS) e2:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e2:SetCondition(c33700076.recon) e2:SetTarget(c33700076.retg) e2:SetOperation(c33700076.reop) c:RegisterEffect(e2) end function c33700076.cost(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return e:GetHandler():IsDiscardable() end Duel.SendtoGrave(e:GetHandler(),REASON_COST+REASON_DISCARD) end function c33700076.thfilter(c) return c:IsSetCard(0x442) and c:IsType(TYPE_MONSTER) and c:IsAbleToHand() and not c:IsCode(33700076) end function c33700076.target(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.IsExistingMatchingCard(c33700076.thfilter,tp,LOCATION_DECK,0,1,nil) end Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,1,tp,LOCATION_DECK) end function c33700076.operation(e,tp,eg,ep,ev,re,r,rp) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_ATOHAND) local g=Duel.SelectMatchingCard(tp,c33700076.thfilter,tp,LOCATION_DECK,0,1,1,nil) if g:GetCount()>0 then Duel.SendtoHand(g,nil,REASON_EFFECT) Duel.ConfirmCards(1-tp,g) local tc=g:GetFirst() if tc:IsLocation(LOCATION_HAND) then local e1=Effect.CreateEffect(e:GetHandler()) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EFFECT_CANNOT_ACTIVATE) e1:SetTargetRange(1,0) e1:SetValue(c33700076.aclimit) e1:SetLabelObject(tc) e1:SetReset(RESET_PHASE+PHASE_END) Duel.RegisterEffect(e1,tp) end end end function c33700076.aclimit(e,re,tp) local tc=e:GetLabelObject() return re:GetHandler():IsCode(tc:GetCode()) and not re:GetHandler():IsImmuneToEffect(e) end function c33700076.confilter(c) return c:IsSetCard(0x442) and c:IsFaceup() and c:IsType(TYPE_MONSTER) end function c33700076.recon(e,tp,eg,ep,ev,re,r,rp) local g=Duel.GetMatchingGroup(c33700076.confilter,tp,LOCATION_GRAVE,0,nil) return g:GetClassCount(Card.GetCode)>=3 or e:GetHandler():IsHasEffect(33700090) end function c33700076.retg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return true end Duel.SetOperationInfo(0,CATEGORY_RECOVER,nil,0,tp,0) end function c33700076.jfilter(c) return c:GetCode()==33700090 and c:IsFaceup() and not c:IsDisabled() end function c33700076.reop(e,tp,eg,ep,ev,re,r,rp) local g=Duel.GetMatchingGroup(c33700076.confilter,tp,LOCATION_GRAVE,0,nil) if g:GetClassCount(Card.GetCode)>=3 or e:GetLabel()==33700090 then Duel.Recover(tp,1000,REASON_EFFECT) end if g:GetClassCount(Card.GetCode)>=7 or e:GetLabel()==33700090 then Duel.Recover(tp,3000,REASON_EFFECT) end if g:GetClassCount(Card.GetCode)>=22 then Duel.Recover(tp,5000,REASON_EFFECT) end end