--Sunseeker Hound function c96770218.initial_effect(c) --link summon aux.AddLinkProcedure(c,c96770218.linkfilter,1,1) c:EnableReviveLimit() --summon limit local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE) e1:SetCode(EVENT_SPSUMMON_SUCCESS) e1:SetCondition(c96770218.regcon) e1:SetOperation(c96770218.regop) c:RegisterEffect(e1) local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_SINGLE) e2:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e2:SetCode(EFFECT_SPSUMMON_CONDITION) e2:SetValue(c96770218.splimit) c:RegisterEffect(e2) --extra summon local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_FIELD) e3:SetCode(EFFECT_EXTRA_SUMMON_COUNT) e3:SetRange(LOCATION_MZONE) e3:SetTargetRange(LOCATION_HAND+LOCATION_MZONE,0) e3:SetTarget(aux.TargetBoolFunction(Card.IsSetCard,0xff7)) c:RegisterEffect(e3) --spsummon local e5=Effect.CreateEffect(c) e5:SetDescription(aux.Stringid(96770218,2)) e5:SetCategory(CATEGORY_SPECIAL_SUMMON) e5:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e5:SetCode(EVENT_TO_GRAVE) e5:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY) e5:SetCountLimit(1,96770218) e5:SetCondition(c96770218.spcon) e5:SetTarget(c96770218.sptg) e5:SetOperation(c96770218.spop) c:RegisterEffect(e5) if not c96770218.global_check then c96770218.global_check=true local ge1=Effect.CreateEffect(c) ge1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) ge1:SetCode(EVENT_SPSUMMON_SUCCESS) ge1:SetOperation(c96770218.checkop) Duel.RegisterEffect(ge1,0) end end function c96770218.checkop(e,tp,eg,ep,ev,re,r,rp) local tc=eg:GetFirst() local p1=false local p2=false while tc do if not tc:IsSetCard(0xff7) then if tc:GetSummonPlayer()==0 then p1=true else p2=true end end tc=eg:GetNext() end if p1 then Duel.RegisterFlagEffect(0,96770220,RESET_PHASE+PHASE_END,0,1) end if p2 then Duel.RegisterFlagEffect(1,96770220,RESET_PHASE+PHASE_END,0,1) end end function c96770218.linkfilter(c) return Duel.GetFlagEffect(c:GetControler(),96770220)==0 and c:IsSetCard(0xff7) end function c96770218.regcon(e,tp,eg,ep,ev,re,r,rp) return e:GetHandler():IsSummonType(SUMMON_TYPE_LINK) end function c96770218.regop(e,tp,eg,ep,ev,re,r,rp) local e1=Effect.CreateEffect(e:GetHandler()) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON) e1:SetReset(RESET_PHASE+PHASE_END) e1:SetTargetRange(1,0) e1:SetTarget(c96770218.sumlimit) Duel.RegisterEffect(e1,tp) end function c96770218.sumlimit(e,c,sump,sumtype,sumpos,targetp,se) return not c:IsSetCard(0xff7) end function c96770218.splimit(e,se,sp,st,spos,tgp) return bit.band(st,SUMMON_TYPE_LINK)~=SUMMON_TYPE_LINK or Duel.GetFlagEffect(tgp,96770218)==0 end function c96770218.spcon(e,tp,eg,ep,ev,re,r,rp) local c=e:GetHandler() return c:GetPreviousLocation()==LOCATION_MZONE and c:IsSummonType(SUMMON_TYPE_LINK) end function c96770218.filter(c,e,tp) return c:IsSetCard(0xff7) and c:IsCanBeSpecialSummoned(e,0,tp,false,false) end function c96770218.sptg(e,tp,eg,ep,ev,re,r,rp,chk,chkc) if chkc then return chkc:IsLocation(LOCATION_GRAVE) and chkc:IsControler(tp) and c96770218.filter(chkc,e,tp) end if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0 and Duel.IsExistingTarget(c96770218.filter,tp,LOCATION_GRAVE,0,1,nil,e,tp) end Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON) local g=Duel.SelectTarget(tp,c96770218.filter,tp,LOCATION_GRAVE,0,1,1,nil,e,tp) Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,g,1,0,0) end function c96770218.spop(e,tp,eg,ep,ev,re,r,rp) local tc=Duel.GetFirstTarget() if tc:IsRelateToEffect(e) then Duel.SpecialSummon(tc,0,tp,tp,false,false,POS_FACEUP) end end