--Skilled Emerald Summoner Mage function c249001038.initial_effect(c) --spsummon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(42682609,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCondition(c249001038.spcon) e1:SetCost(c249001038.spcost) e1:SetTarget(c249001038.sptg) e1:SetOperation(c249001038.spop) c:RegisterEffect(e1) --summon with no tribute local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(89252153,0)) e1:SetType(EFFECT_TYPE_FIELD) e1:SetRange(LOCATION_GRAVE) e1:SetTargetRange(LOCATION_HAND,0) e1:SetCode(EFFECT_SUMMON_PROC) e1:SetProperty(EFFECT_FLAG_NO_TURN_RESET) e1:SetCountLimit(1) e1:SetCondition(c249001038.ntcon) e1:SetTarget(c249001038.nttg) c:RegisterEffect(e1) end function c249001038.spcon(e,tp,eg,ep,ev,re,r,rp) return Duel.GetFieldGroupCount(tp,0,LOCATION_MZONE,nil) >=2 end function c249001038.spcost(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return e:GetHandler():IsReleasable() end Duel.Release(e:GetHandler(),REASON_COST) end function c249001038.spfilter(c,e,tp) return c:IsCode(249001037) and c:IsCanBeSpecialSummoned(e,0,tp,false,false) end function c249001038.sptg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>-1 and Duel.IsExistingMatchingCard(c249001038.spfilter,tp,LOCATION_HAND+LOCATION_DECK+LOCATION_GRAVE,0,1,nil,e,tp) end Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_HAND+LOCATION_DECK+LOCATION_GRAVE) end function c249001038.spop(e,tp,eg,ep,ev,re,r,rp) if Duel.GetLocationCount(tp,LOCATION_MZONE)<=0 then return end Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON) local g=Duel.SelectMatchingCard(tp,c249001038.spfilter,tp,LOCATION_HAND+LOCATION_DECK+LOCATION_GRAVE,0,1,1,nil,e,tp) if g:GetCount()>0 then Duel.SpecialSummon(g,0,tp,tp,false,false,POS_FACEUP) end end function c249001038.ntcon(e,c,minc) if c==nil then return true end return minc==0 and Duel.GetLocationCount(c:GetControler(),LOCATION_MZONE)>0 end function c249001038.nttg(e,c) return c:IsLevelAbove(5) and c:IsCode(249001037) end