--Pastel Palettes - Aya --Script by XyLeN function c20015003.initial_effect(c) --sp summon c:RegisterEffect(aux.AddPastelPalettesSpSummonEffect(c,20015003,aux.Stringid(20015003,0))) --to hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(20015003,1)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetProperty(EFFECT_FLAG_DELAY) e1:SetCountLimit(1,20015003+200) e1:SetTarget(c20015003.thtg) e1:SetOperation(c20015003.thop) c:RegisterEffect(e1) local e2=e1:Clone() e2:SetCode(EVENT_SPSUMMON_SUCCESS) c:RegisterEffect(e2) end function c20015003.thfilter(c) return c:IsSetCard(0x880) and c:IsType(TYPE_SPELL+TYPE_TRAP) and c:IsAbleToHand() end function c20015003.thtg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.IsExistingMatchingCard(c20015003.thfilter,tp,LOCATION_DECK,0,1,nil) end Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,1,tp,LOCATION_DECK) end function c20015003.thop(e,tp,eg,ep,ev,re,r,rp) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_ATOHAND) local g=Duel.SelectMatchingCard(tp,c20015003.thfilter,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 dofile("script/Pastel Palettes Core.lua")