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
87cc5243
Commit
87cc5243
authored
Dec 06, 2015
by
nekrozar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
025e884f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
11 deletions
+10
-11
c90500169.lua
c90500169.lua
+10
-11
No files found.
c90500169.lua
View file @
87cc5243
...
...
@@ -14,12 +14,13 @@ function c90500169.filter(c,e,tp)
if
c
:
IsFacedown
()
or
not
c
:
IsSetCard
(
0x41
)
or
not
c
:
IsAbleToDeck
()
then
return
false
end
local
code
=
c
:
GetCode
()
local
class
=
_G
[
"c"
..
code
]
return
class
and
class
.
lvdncount
~=
nil
and
Duel
.
IsExistingMatchingCard
(
c90500169
.
spfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
,
class
,
e
,
tp
)
return
class
and
class
.
lvdncount
~=
nil
and
Duel
.
IsExistingMatchingCard
(
c90500169
.
spfilter
,
tp
,
LOCATION_GRAVE
,
LOCATION_GRAVE
,
1
,
nil
,
class
,
e
,
tp
,
c
:
GetOwner
()
)
end
function
c90500169
.
spfilter
(
c
,
class
,
e
,
tp
)
function
c90500169
.
spfilter
(
c
,
class
,
e
,
tp
,
op
)
if
not
c
:
IsControler
(
op
)
then
return
false
end
local
code
=
c
:
GetCode
()
for
i
=
1
,
class
.
lvdncount
do
if
code
==
class
.
lvdn
[
i
]
then
return
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
true
,
true
)
end
if
code
==
class
.
lvdn
[
i
]
then
return
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
true
,
false
,
POS_FACEUP
,
op
)
end
end
return
false
end
...
...
@@ -35,17 +36,15 @@ end
function
c90500169
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
tc
=
Duel
.
GetFirstTarget
()
local
code
=
tc
:
GetCode
()
if
not
tc
:
IsRelateToEffect
(
e
)
then
return
end
local
rc
=
Duel
.
SendtoDeck
(
tc
,
nil
,
0
,
REASON_EFFECT
)
if
tc
:
GetLocation
()
==
LOCATION_DECK
then
Duel
.
ShuffleDeck
(
tc
:
GetControler
())
end
if
rc
==
0
then
return
end
local
op
=
tc
:
GetOwner
()
if
not
tc
:
IsRelateToEffect
(
e
)
or
not
tc
:
IsFaceup
()
then
return
end
if
not
Duel
.
SendtoDeck
(
tc
,
nil
,
2
,
REASON_EFFECT
)
then
return
end
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
<=
0
then
return
end
local
class
=
_G
[
"c"
..
code
]
if
class
==
nil
or
class
.
lvdncount
==
nil
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c90500169
.
spfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
,
class
,
e
,
tp
)
local
tc
=
g
:
GetFirst
()
if
tc
then
Duel
.
SpecialSummon
(
tc
,
0
,
tp
,
tp
,
true
,
true
,
POS_FACEUP
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c90500169
.
spfilter
,
tp
,
LOCATION_GRAVE
,
LOCATION_GRAVE
,
1
,
1
,
nil
,
class
,
e
,
tp
,
op
)
if
g
:
GetCount
()
>
0
then
Duel
.
SpecialSummon
(
g
,
0
,
tp
,
op
,
true
,
false
,
POS_FACEUP
)
end
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