Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
ygopro-scripts
Commits
25a6d661
Commit
25a6d661
authored
Jul 30, 2016
by
nekrozar
Committed by
DailyShana
Jul 30, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix Tuner's High (#513)
parent
de2b5d13
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
10 deletions
+20
-10
c85821180.lua
c85821180.lua
+20
-10
No files found.
c85821180.lua
View file @
25a6d661
...
...
@@ -5,6 +5,7 @@ function c85821180.initial_effect(c)
e1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetLabel
(
0
)
e1
:
SetCost
(
c85821180
.
cost
)
e1
:
SetTarget
(
c85821180
.
target
)
e1
:
SetOperation
(
c85821180
.
activate
)
...
...
@@ -12,27 +13,36 @@ function c85821180.initial_effect(c)
end
function
c85821180
.
cfilter
(
c
,
e
,
tp
)
return
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsDiscardable
()
and
Duel
.
IsExistingMatchingCard
(
c85821180
.
filter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
,
e
,
tp
,
c
)
and
Duel
.
IsExistingMatchingCard
(
c85821180
.
filter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
,
c
:
GetRace
(),
c
:
GetAttribute
(),
c
:
GetLevel
(),
e
,
tp
)
end
function
c85821180
.
filter
(
c
,
e
,
tp
,
dc
)
return
c
:
IsType
(
TYPE_TUNER
)
and
c
:
IsRace
(
dc
:
GetRace
())
and
c
:
IsAttribute
(
dc
:
GetAttribute
())
and
c
:
GetLevel
()
==
dc
:
GetLevel
()
+
1
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
function
c85821180
.
filter
(
c
,
race
,
att
,
lv
,
e
,
tp
)
return
c
:
IsType
(
TYPE_TUNER
)
and
c
:
IsRace
(
race
)
and
c
:
IsAttribute
(
att
)
and
c
:
GetLevel
()
==
lv
+
1
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
function
c85821180
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c85821180
.
cfilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
nil
,
e
,
tp
)
end
e
:
SetLabel
(
100
)
return
true
end
function
c85821180
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
if
e
:
GetLabel
()
~=
100
or
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
then
return
false
end
return
Duel
.
IsExistingMatchingCard
(
c85821180
.
cfilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
nil
,
e
,
tp
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_DISCARD
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c85821180
.
cfilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
1
,
nil
,
e
,
tp
)
local
tc
=
g
:
GetFirst
()
e
:
SetLabel
(
tc
:
GetRace
())
e
:
SetValue
(
tc
:
GetAttribute
())
Duel
.
SetTargetParam
(
tc
:
GetLevel
())
Duel
.
SendtoGrave
(
g
,
REASON_COST
+
REASON_DISCARD
)
e
:
SetLabelObject
(
g
:
GetFirst
())
end
function
c85821180
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
LOCATION_DECK
)
end
function
c85821180
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
then
return
end
local
race
=
e
:
GetLabel
()
local
att
=
e
:
GetValue
()
local
lv
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_PARAM
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c85821180
.
filter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
,
e
:
GetLabelObject
()
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c85821180
.
filter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
race
,
att
,
lv
,
e
,
tp
)
if
g
:
GetCount
()
>
0
then
Duel
.
SpecialSummon
(
g
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment