2021-12-04 21:09:29 +01:00
|
|
|
--Universe Tuner Star
|
|
|
|
|
local s,id=GetID()
|
|
|
|
|
function s.initial_effect(c)
|
|
|
|
|
--pendulum summon
|
|
|
|
|
Pendulum.AddProcedure(c)
|
2021-12-11 16:21:01 +01:00
|
|
|
--special summon
|
|
|
|
|
local e1=Effect.CreateEffect(c)
|
|
|
|
|
e1:SetDescription(aux.Stringid(id,0))
|
|
|
|
|
e1:SetType(EFFECT_TYPE_FIELD)
|
|
|
|
|
e1:SetCode(EFFECT_SPSUMMON_PROC)
|
|
|
|
|
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE)
|
|
|
|
|
e1:SetRange(LOCATION_HAND)
|
|
|
|
|
e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH)
|
|
|
|
|
e1:SetCondition(s.spcon)
|
|
|
|
|
c:RegisterEffect(e1)
|
|
|
|
|
--spsummon from extra deck when normal summon
|
|
|
|
|
local e2=Effect.CreateEffect(c)
|
|
|
|
|
e2:SetDescription(aux.Stringid(id,1))
|
|
|
|
|
e2:SetCategory(CATEGORY_SPECIAL_SUMMON)
|
|
|
|
|
e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
|
|
|
|
|
e2:SetCode(EVENT_SUMMON_SUCCESS)
|
|
|
|
|
e2:SetTarget(s.sptg)
|
|
|
|
|
e2:SetOperation(s.spop)
|
|
|
|
|
c:RegisterEffect(e2)
|
|
|
|
|
--spsummon from extra deck when special summon
|
|
|
|
|
local e3=Effect.Clone(e2)
|
|
|
|
|
e3:SetDescription(aux.Stringid(id,1))
|
|
|
|
|
e3:SetCategory(CATEGORY_SPECIAL_SUMMON)
|
|
|
|
|
e3:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
|
|
|
|
|
e3:SetCode(EVENT_SPSUMMON_SUCCESS)
|
|
|
|
|
e3:SetTarget(s.sptg)
|
|
|
|
|
e3:SetOperation(s.spop)
|
|
|
|
|
c:RegisterEffect(e3)
|
|
|
|
|
end
|
|
|
|
|
-----Special Summon
|
|
|
|
|
function s.filtersp(c)
|
|
|
|
|
return c:IsFaceup() and c:IsSetCard(0x25e)
|
|
|
|
|
end
|
|
|
|
|
function s.spcon(e,c)
|
|
|
|
|
if c==nil then return true end
|
|
|
|
|
return Duel.GetLocationCount(c:GetControler(),LOCATION_MZONE)>0
|
|
|
|
|
and Duel.IsExistingMatchingCard(s.filtersp,c:GetControler(),LOCATION_MZONE,0,1,nil)
|
|
|
|
|
end
|
|
|
|
|
-----Extra deck sp summon
|
|
|
|
|
function s.filter(c,e,tp)
|
|
|
|
|
return c:IsFaceup() and c:IsType(TYPE_PENDULUM) and Duel.GetLocationCountFromEx(tp,tp,nil,c)>0 and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
|
|
|
|
|
end
|
|
|
|
|
function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
|
|
|
|
|
if chk==0 then return Duel.IsExistingMatchingCard(s.filter,tp,LOCATION_EXTRA,0,1,nil,e,tp) end
|
|
|
|
|
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_EXTRA)
|
|
|
|
|
end
|
|
|
|
|
function s.spop(e,tp,eg,ep,ev,re,r,rp)
|
|
|
|
|
local c=e:GetHandler()
|
|
|
|
|
local g=Duel.GetMatchingGroup(s.filter,tp,LOCATION_EXTRA,0,nil,e,tp)
|
|
|
|
|
if #g>0 then
|
|
|
|
|
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON)
|
|
|
|
|
local sg=g:Select(tp,1,1,nil)
|
|
|
|
|
local tc=sg:GetFirst()
|
|
|
|
|
Duel.SpecialSummonStep(tc,0,tp,tp,false,false,POS_FACEUP)
|
|
|
|
|
Duel.SpecialSummonComplete()
|
|
|
|
|
end
|
|
|
|
|
end
|