30 lines
1.1 KiB
Lua
30 lines
1.1 KiB
Lua
|
|
--Universe Arrival
|
||
|
|
local s,id=GetID()
|
||
|
|
function s.initial_effect(c)
|
||
|
|
--Activate
|
||
|
|
local e1=Effect.CreateEffect(c)
|
||
|
|
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
|
||
|
|
e1:SetType(EFFECT_TYPE_ACTIVATE)
|
||
|
|
e1:SetCode(EVENT_FREE_CHAIN)
|
||
|
|
e1:SetTarget(s.target)
|
||
|
|
e1:SetOperation(s.activate)
|
||
|
|
c:RegisterEffect(e1)
|
||
|
|
end
|
||
|
|
--Hand sp
|
||
|
|
function s.filter(c,e,tp)
|
||
|
|
return c:IsSetCard(0x25e) and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
|
||
|
|
end
|
||
|
|
function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
|
||
|
|
if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0
|
||
|
|
and Duel.IsExistingMatchingCard(s.filter,tp,LOCATION_HAND+LOCATION_GRAVE,0,1,nil,e,tp) end
|
||
|
|
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,0,LOCATION_HAND+LOCATION_GRAVE)
|
||
|
|
end
|
||
|
|
function s.activate(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,s.filter,tp,LOCATION_HAND+LOCATION_GRAVE,0,1,1,nil,e,tp)
|
||
|
|
local tc=g:GetFirst()
|
||
|
|
if tc and Duel.SpecialSummonStep(tc,0,tp,tp,false,false,POS_FACEUP) then
|
||
|
|
end
|
||
|
|
Duel.SpecialSummonComplete()
|
||
|
|
end
|