--动物朋友 狸 local m=33700751 local cm=_G["c"..m] function cm.initial_effect(c) --tohand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(m,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCost(cm.cost) e1:SetTarget(cm.target) e1:SetOperation(cm.operation) c:RegisterEffect(e1) --hand effect local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(m,1)) e2:SetCategory(CATEGORY_TOHAND) e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e2:SetProperty(EFFECT_FLAG_DELAY) e2:SetCode(EVENT_DISCARD) e2:SetRange(LOCATION_HAND) e2:SetCost(cm.cost) e2:SetTarget(cm.thtg1) e2:SetOperation(cm.thop1) c:RegisterEffect(e2) local e3=e2:Clone() e3:SetCode(EVENT_TO_GRAVE) e3:SetCondition(cm.con) e3:SetTarget(cm.thtg2) e3:SetOperation(cm.thop2) c:RegisterEffect(e3) end function cm.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 cm.thfilter(c) return c:IsSetCard(0x442) and c:IsType(TYPE_MONSTER) and c:IsAbleToHand() and not c:IsCode(m) end function cm.target(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.IsExistingMatchingCard(cm.thfilter,tp,LOCATION_DECK,0,1,nil) end Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,1,tp,LOCATION_DECK) end function cm.operation(e,tp,eg,ep,ev,re,r,rp) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_ATOHAND) local g=Duel.SelectMatchingCard(tp,cm.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(cm.aclimit) e1:SetLabelObject(tc) e1:SetReset(RESET_PHASE+PHASE_END) Duel.RegisterEffect(e1,tp) end end end function cm.aclimit(e,re,tp) local tc=e:GetLabelObject() return re:GetHandler():IsCode(tc:GetCode()) and not re:GetHandler():IsImmuneToEffect(e) end function cm.repfilter1(c,tp) return c:IsLocation(LOCATION_GRAVE) and c:IsPreviousLocation(LOCATION_HAND) and c:IsReason(REASON_DISCARD) and c:IsAbleToHand() end function cm.thtg1(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return eg:IsExists(cm.repfilter1,1,e:GetHandler(),tp) end Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,eg:Filter(cm.repfilter1,e:GetHandler()):GetCount(),tp,LOCATION_GRAVE) end function cm.thop1(e,tp,eg,ep,ev,re,r,rp) local sg=eg:Filter(cm.repfilter1,e:GetHandler()) local ct=sg:GetCount() if ct>0 then Duel.SendtoHand(sg,tp,REASON_EFFECT) local tc=sg:GetFirst() while tc do local e1=Effect.CreateEffect(e:GetOwner()) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_PUBLIC) e1:SetReset(RESET_EVENT+0x1fe0000) tc:RegisterEffect(e1) local e2=Effect.CreateEffect(e:GetOwner()) e2:SetType(EFFECT_TYPE_SINGLE) e2:SetCode(EFFECT_TO_GRAVE_REDIRECT) e2:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e2:SetCondition(function(e) return e:GetHandler():IsPublic() end) e2:SetValue(LOCATION_REMOVED) e2:SetReset(RESET_EVENT+0x1fe0000) tc:RegisterEffect(e2) tc=sg:GetNext() end end end function cm.con(e,tp,eg,ep,ev,re,r,rp) return Duel.GetCurrentChain()~=0 end function cm.repfilter2(c,tp) return c:IsControler(1-tp) and c:IsLocation(LOCATION_GRAVE) and c:IsPreviousLocation(LOCATION_HAND) and c:IsReason(REASON_COST) and c:IsAbleToHand() and bit.band(c:GetReason(),REASON_MATERIAL)==0 end function cm.thtg2(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return eg:IsExists(cm.repfilter2,1,e:GetHandler(),tp) end Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,eg:Filter(cm.repfilter2,e:GetHandler(),tp):GetCount(),tp,LOCATION_GRAVE) end function cm.thop2(e,tp,eg,ep,ev,re,r,rp) local sg=eg:Filter(cm.repfilter2,e:GetHandler(),tp) local ct=sg:GetCount() if ct>0 then Duel.SendtoHand(sg,tp,REASON_EFFECT) local tc=sg:GetFirst() while tc do local e1=Effect.CreateEffect(e:GetOwner()) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_PUBLIC) e1:SetReset(RESET_EVENT+0x1fe0000) tc:RegisterEffect(e1) local e2=Effect.CreateEffect(e:GetOwner()) e2:SetType(EFFECT_TYPE_SINGLE) e2:SetCode(EFFECT_TO_GRAVE_REDIRECT) e2:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e2:SetCondition(function(e) return e:GetHandler():IsPublic() end) e2:SetValue(LOCATION_REMOVED) e2:SetReset(RESET_EVENT+0x1fe0000) tc:RegisterEffect(e2) tc=sg:GetNext() end end end