--妖幻战姬 盗贼 if not pcall(function() require("expansions/script/c33700760") end) then require("script/c33700760") end local m=33700762 local cm=_G["c"..m] function cm.initial_effect(c) tfrsv.SSLimitEffect(c) tfrsv.ToGraveEffect(c) tfrsv.ActivateEffect(c,cm.operation) --de local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_INDESTRUCTABLE_EFFECT) e1:SetProperty(EFFECT_FLAG_SET_AVAILABLE) e1:SetRange(LOCATION_MZONE) e1:SetTargetRange(LOCATION_MZONE,0) e1:SetTarget(tfrsv.columntg) e1:SetValue(1) c:RegisterEffect(e1) end function cm.operation(c) --search 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_SZONE) e1:SetCountLimit(1) e1:SetCondition(tfrsv.ccon) e1:SetTarget(cm.tg) e1:SetOperation(cm.op) c:RegisterEffect(e1) end function cm.con(e,tp,eg,ep,ev,re,r,rp,chk) return e:GetHandler():GetTurnID()~=Duel.GetTurnCount() end function cm.filter(c) return c:IsSetCard(0x344a) and c:IsType(TYPE_MONSTER) and c:IsAbleToHand() end function cm.tg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.IsExistingMatchingCard(cm.filter,tp,LOCATION_DECK,0,1,nil) end Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,1,tp,LOCATION_DECK) end function cm.op(e,tp,eg,ep,ev,re,r,rp) if not e:GetHandler():IsRelateToEffect(e) then return end Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_ATOHAND) local g=Duel.SelectMatchingCard(tp,cm.filter,tp,LOCATION_DECK,0,1,1,nil) if g:GetCount()>0 then Duel.SendtoHand(g,nil,REASON_EFFECT) Duel.ConfirmCards(1-tp,g) end end