Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts-888
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
List
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
Vee4
ygopro-scripts-888
Commits
1719f4b8
Commit
1719f4b8
authored
Apr 28, 2022
by
mercury233
Committed by
GitHub
Apr 28, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix Labrynth (#1866)
parent
d3c7bde0
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
6 deletions
+9
-6
c1225009.lua
c1225009.lua
+2
-1
c2347656.lua
c2347656.lua
+2
-1
c37629703.lua
c37629703.lua
+1
-1
c5380979.lua
c5380979.lua
+1
-1
c74018812.lua
c74018812.lua
+1
-1
c75730490.lua
c75730490.lua
+2
-1
No files found.
c1225009.lua
View file @
1719f4b8
...
...
@@ -47,7 +47,8 @@ function c1225009.cfilter(c)
return
c
:
IsPreviousLocation
(
LOCATION_MZONE
)
and
c
:
IsReason
(
REASON_EFFECT
)
end
function
c1225009
.
drcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
re
and
rp
==
tp
and
re
:
GetHandler
():
GetType
()
==
TYPE_TRAP
and
eg
:
IsExists
(
c1225009
.
cfilter
,
1
,
nil
)
return
re
and
rp
==
tp
and
re
:
IsActiveType
(
TYPE_TRAP
)
and
re
:
GetHandler
():
GetOriginalType
()
==
TYPE_TRAP
and
eg
:
IsExists
(
c1225009
.
cfilter
,
1
,
nil
)
end
function
c1225009
.
drtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsPlayerCanDraw
(
tp
,
1
)
end
...
...
c2347656.lua
View file @
1719f4b8
...
...
@@ -74,7 +74,8 @@ function c2347656.cfilter(c)
return
c
:
IsPreviousLocation
(
LOCATION_MZONE
)
and
c
:
IsReason
(
REASON_EFFECT
)
end
function
c2347656
.
descon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
re
and
rp
==
tp
and
re
:
GetHandler
():
GetType
()
==
TYPE_TRAP
and
eg
:
IsExists
(
c2347656
.
cfilter
,
1
,
nil
)
return
re
and
rp
==
tp
and
re
:
IsActiveType
(
TYPE_TRAP
)
and
re
:
GetHandler
():
GetOriginalType
()
==
TYPE_TRAP
and
eg
:
IsExists
(
c2347656
.
cfilter
,
1
,
nil
)
end
function
c2347656
.
destg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetFieldGroupCount
(
tp
,
0
,
LOCATION_ONFIELD
+
LOCATION_HAND
)
>
0
end
...
...
c37629703.lua
View file @
1719f4b8
...
...
@@ -49,7 +49,7 @@ function c37629703.cfilter(c)
return
c
:
IsPreviousLocation
(
LOCATION_MZONE
)
and
c
:
IsReason
(
REASON_EFFECT
)
end
function
c37629703
.
thcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
re
and
rp
==
tp
and
re
:
GetHandler
():
Get
Type
()
==
TYPE_TRAP
return
re
and
rp
==
tp
and
re
:
IsActiveType
(
TYPE_TRAP
)
and
re
:
GetHandler
():
GetOriginal
Type
()
==
TYPE_TRAP
and
eg
:
IsExists
(
c37629703
.
cfilter
,
1
,
nil
)
and
not
eg
:
IsContains
(
e
:
GetHandler
())
end
function
c37629703
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
...
...
c5380979.lua
View file @
1719f4b8
...
...
@@ -80,7 +80,7 @@ function c5380979.cfilter(c)
end
function
c5380979
.
setcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
c5380979
.
cfilter
,
1
,
nil
)
and
not
eg
:
IsContains
(
e
:
GetHandler
())
and
rp
==
tp
and
re
:
IsActiveType
(
TYPE_TRAP
)
and
re
:
GetHandler
():
GetType
()
==
TYPE_TRAP
and
aux
.
exccon
(
e
)
and
re
:
IsActiveType
(
TYPE_TRAP
)
and
re
:
GetHandler
():
Get
Original
Type
()
==
TYPE_TRAP
and
aux
.
exccon
(
e
)
end
function
c5380979
.
settg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
e
:
GetHandler
():
IsSSetable
()
end
...
...
c74018812.lua
View file @
1719f4b8
...
...
@@ -53,7 +53,7 @@ function c74018812.cfilter(c)
return
c
:
IsPreviousLocation
(
LOCATION_MZONE
)
and
c
:
IsReason
(
REASON_EFFECT
)
end
function
c74018812
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
re
and
rp
==
tp
and
re
:
GetHandler
():
Get
Type
()
==
TYPE_TRAP
return
re
and
rp
==
tp
and
re
:
IsActiveType
(
TYPE_TRAP
)
and
re
:
GetHandler
():
GetOriginal
Type
()
==
TYPE_TRAP
and
eg
:
IsExists
(
c74018812
.
cfilter
,
1
,
nil
)
and
not
eg
:
IsContains
(
e
:
GetHandler
())
end
function
c74018812
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
...
...
c75730490.lua
View file @
1719f4b8
...
...
@@ -55,7 +55,8 @@ function c75730490.cfilter(c)
return
c
:
IsPreviousLocation
(
LOCATION_MZONE
)
and
c
:
IsReason
(
REASON_EFFECT
)
end
function
c75730490
.
drcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
re
and
rp
==
tp
and
re
:
GetHandler
():
GetType
()
==
TYPE_TRAP
and
eg
:
IsExists
(
c75730490
.
cfilter
,
1
,
nil
)
return
re
and
rp
==
tp
and
re
:
IsActiveType
(
TYPE_TRAP
)
and
re
:
GetHandler
():
GetOriginalType
()
==
TYPE_TRAP
and
eg
:
IsExists
(
c75730490
.
cfilter
,
1
,
nil
)
end
function
c75730490
.
drtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsPlayerCanDraw
(
tp
,
1
)
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