Skip to content

Commit

Permalink
added Galacterial Pick
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoshi80 committed Dec 5, 2023
1 parent 106a1ed commit fb8baeb
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions rush/c160210076.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
--ギャラクテリアル・ピック
--Galacterial Pick
--scripted by YoshiDuels
local s,id=GetID()
function s.initial_effect(c)
--Add to the hand 1 Sea Serpent with 800 ATK/0 DEF from the GY
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCost(s.cost)
e1:SetTarget(s.target)
e1:SetOperation(s.operation)
c:RegisterEffect(e1)
end
function s.cfilter(c)
return c:IsMonster() and c:IsRace(RACE_GALAXY) and c:IsLevelBelow(8) and c:IsAbleToGraveAsCost()
end
function s.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(s.cfilter,tp,LOCATION_HAND,0,1,nil) end
end
function s.thfilter(c)
return c:IsMonster() and c:IsRace(RACE_GALAXY) and c:IsType(TYPE_MAXIMUM) and c:IsLevel(10) and c:IsAbleToHand()
end
function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(s.thfilter,tp,LOCATION_GRAVE,0,1,nil) end
Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,1,tp,LOCATION_GRAVE)
end
function s.operation(e,tp,eg,ep,ev,re,r,rp)
--Requirement
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TOGRAVE)
local g=Duel.SelectMatchingCard(tp,s.cfilter,tp,LOCATION_HAND,0,1,1,nil)
if Duel.SendtoGrave(g,REASON_COST)<1 then return end
--Effect
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_ATOHAND)
local g=Duel.SelectMatchingCard(tp,aux.NecroValleyFilter(s.thfilter),tp,LOCATION_GRAVE,0,1,1,nil)
if #g>0 then
Duel.SendtoHand(g,nil,REASON_EFFECT)
Duel.ConfirmCards(1-tp,g)
end
end

0 comments on commit fb8baeb

Please sign in to comment.