-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathc160017050.lua
54 lines (54 loc) · 1.8 KB
/
c160017050.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
--青眼の激煌龍
--Blue-Eyes Blazing Bright Dragon
--Scripted by YoshiDuels
local s,id=GetID()
function s.initial_effect(c)
--Fusion Procedure
c:EnableReviveLimit()
Fusion.AddProcMixN(c,true,true,CARD_BLUEEYES_W_DRAGON,1,s.ffilter,1)
--Increase ATK
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(id,0))
e1:SetCategory(CATEGORY_ATKCHANGE)
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
s.named_material={CARD_BLUEEYES_W_DRAGON}
s.listed_names={160210021}
function s.ffilter(c,fc,sumtype,tp)
return c:IsAttribute(ATTRIBUTE_LIGHT,scard,sumtype,tp) and c:IsRace(RACE_DRAGON,fc,sumtype,tp) and c:IsLevel(8)
end
function s.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsPlayerCanDiscardDeckAsCost(tp,1) end
end
function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return true end
Duel.SetOperationInfo(0,CATEGORY_ATKCHANGE,e:GetHandler(),1,tp,500)
end
function s.operation(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
--Requirement
if Duel.DiscardDeck(tp,1,REASON_COST)<1 then return end
--Effect
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_UPDATE_ATTACK)
e1:SetValue(500)
e1:SetReset(RESET_EVENT|RESETS_STANDARD_DISABLE|RESET_PHASE|PHASE_END,2)
c:RegisterEffect(e1)
local sg=Duel.GetMatchingGroup(aux.FilterMaximumSideFunctionEx(Card.IsMonster),tp,0,LOCATION_MZONE,nil)
if Duel.IsExistingMatchingCard(Card.IsCode,tp,LOCATION_GRAVE,0,1,nil,160210021) and #sg>0 and Duel.SelectYesNo(tp,aux.Stringid(id,1)) then
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_DESTROY)
local tg=sg:Select(tp,1,1,nil)
if #tg>0 then
tg=tg:AddMaximumCheck()
Duel.HintSelection(tg)
Duel.Destroy(tg,REASON_EFFECT)
end
end
end