--SS from deck trish thing
function c12345.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:SetCost(c12345.cost)
e1:SetTarget(c12345.target)
e1:SetOperation(c12345.activate)
c:RegisterEffect(e1)
end
function c12345.filter(c)
return (c:IsLocation(LOCATION_HAND)or c:IsLocation(LOCATION_GRAVE) or c:IsFaceup()) and c:GetLevel()==8 and c:IsAbleToRemoveAsCost()
end
function c12345.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(c12345.filter,tp,LOCATION_HAND,0,1,nil)
and Duel.IsExistingMatchingCard(c12345.filter,tp,LOCATION_MZONE,0,1,nil) and Duel.IsExistingMatchingCard(c12345.filter,tp,LOCATION_GRAVE,0,1,nil)end
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_REMOVE)
local g1=Duel.SelectMatchingCard(tp,c12345.filter,tp,LOCATION_HAND,0,1,1,nil)
local g2=Duel.SelectMatchingCard(tp,c12345.filter,tp,LOCATION_MZONE,0,1,1,nil)
local g3=Duel.SelectMatchingCard(tp,c12345.filter,tp,LOCATION_GRAVE,0,1,1,nil)
g1:Merge(g2)
g1:Merge(g3)
Duel.Remove(g1,POS_FACEUP,REASON_COST)
end
function c12345.ssfilter(c,e,tp)
return c:IsCode(123456) and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
end
function c12345.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0
and Duel.IsExistingMatchingCard(c12345.ssfilter,tp,LOCATION_DECK,0,1,nil,e,tp)
end
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,tp,LOCATION_DECK)
end
function c12345.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,c12345.ssfilter,tp,LOCATION_DECK,0,1,1,nil,e,tp)
if g:GetCount()>0 then
Duel.SpecialSummon(g,0,tp,tp,false,false,POS_FACEUP)
end
end