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
3
Merge Requests
3
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
MyCard
ygopro-scripts-888
Commits
2a6ce774
Commit
2a6ce774
authored
Jul 18, 2024
by
Chen Bill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
workaround fix クシャトリラ
parent
8eb9eb51
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
4 deletions
+20
-4
c32909498.lua
c32909498.lua
+8
-1
c68304193.lua
c68304193.lua
+5
-1
c94392192.lua
c94392192.lua
+7
-2
No files found.
c32909498.lua
View file @
2a6ce774
...
@@ -40,7 +40,7 @@ function c32909498.initial_effect(c)
...
@@ -40,7 +40,7 @@ function c32909498.initial_effect(c)
e4
:
SetRange
(
LOCATION_MZONE
)
e4
:
SetRange
(
LOCATION_MZONE
)
e4
:
SetCountLimit
(
1
,
32909499
)
e4
:
SetCountLimit
(
1
,
32909499
)
e4
:
SetCondition
(
c32909498
.
rmcon
)
e4
:
SetCondition
(
c32909498
.
rmcon
)
e4
:
SetTarget
(
c32909498
.
rmtg
)
e4
:
SetTarget
(
c32909498
.
rmtg
2
)
e4
:
SetOperation
(
c32909498
.
rmop
)
e4
:
SetOperation
(
c32909498
.
rmop
)
c
:
RegisterEffect
(
e4
)
c
:
RegisterEffect
(
e4
)
end
end
...
@@ -83,3 +83,10 @@ end
...
@@ -83,3 +83,10 @@ end
function
c32909498
.
rmcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c32909498
.
rmcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
rp
==
1
-
tp
and
re
:
IsActiveType
(
TYPE_MONSTER
)
return
rp
==
1
-
tp
and
re
:
IsActiveType
(
TYPE_MONSTER
)
end
end
function
c32909498
.
rmtg2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsOnField
()
and
chkc
:
IsControler
(
1
-
tp
)
and
c32909498
.
rmfilter
(
chkc
,
tp
)
end
if
chk
==
0
then
return
rp
==
1
-
tp
and
Duel
.
IsExistingTarget
(
c32909498
.
rmfilter
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
nil
,
tp
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
g
=
Duel
.
SelectTarget
(
tp
,
c32909498
.
rmfilter
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
1
,
nil
,
tp
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_REMOVE
,
g
,
1
,
0
,
0
)
end
c68304193.lua
View file @
2a6ce774
...
@@ -39,7 +39,7 @@ function c68304193.initial_effect(c)
...
@@ -39,7 +39,7 @@ function c68304193.initial_effect(c)
e4
:
SetRange
(
LOCATION_MZONE
)
e4
:
SetRange
(
LOCATION_MZONE
)
e4
:
SetCountLimit
(
1
,
68304194
)
e4
:
SetCountLimit
(
1
,
68304194
)
e4
:
SetCondition
(
c68304193
.
rmcon
)
e4
:
SetCondition
(
c68304193
.
rmcon
)
e4
:
SetTarget
(
c68304193
.
rmtg
)
e4
:
SetTarget
(
c68304193
.
rmtg
2
)
e4
:
SetOperation
(
c68304193
.
rmop
)
e4
:
SetOperation
(
c68304193
.
rmop
)
c
:
RegisterEffect
(
e4
)
c
:
RegisterEffect
(
e4
)
end
end
...
@@ -83,3 +83,7 @@ end
...
@@ -83,3 +83,7 @@ end
function
c68304193
.
rmcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c68304193
.
rmcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
rp
==
1
-
tp
and
re
:
IsActiveType
(
TYPE_MONSTER
)
return
rp
==
1
-
tp
and
re
:
IsActiveType
(
TYPE_MONSTER
)
end
end
function
c68304193
.
rmtg2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
rp
==
1
-
tp
and
Duel
.
IsExistingMatchingCard
(
c68304193
.
rmfilter
,
tp
,
0
,
LOCATION_EXTRA
,
1
,
nil
,
tp
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_REMOVE
,
nil
,
1
,
1
-
tp
,
LOCATION_EXTRA
)
end
c94392192.lua
View file @
2a6ce774
...
@@ -39,7 +39,7 @@ function c94392192.initial_effect(c)
...
@@ -39,7 +39,7 @@ function c94392192.initial_effect(c)
e4
:
SetRange
(
LOCATION_MZONE
)
e4
:
SetRange
(
LOCATION_MZONE
)
e4
:
SetCountLimit
(
1
,
94392193
)
e4
:
SetCountLimit
(
1
,
94392193
)
e4
:
SetCondition
(
c94392192
.
rmcon
)
e4
:
SetCondition
(
c94392192
.
rmcon
)
e4
:
SetTarget
(
c94392192
.
rmtg
)
e4
:
SetTarget
(
c94392192
.
rmtg
2
)
e4
:
SetOperation
(
c94392192
.
rmop
)
e4
:
SetOperation
(
c94392192
.
rmop
)
c
:
RegisterEffect
(
e4
)
c
:
RegisterEffect
(
e4
)
end
end
...
@@ -68,7 +68,7 @@ function c94392192.rmfilter(c,tp)
...
@@ -68,7 +68,7 @@ function c94392192.rmfilter(c,tp)
end
end
function
c94392192
.
rmtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c94392192
.
rmtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
g
=
Duel
.
GetDecktopGroup
(
1
-
tp
,
1
)
local
g
=
Duel
.
GetDecktopGroup
(
1
-
tp
,
1
)
if
chk
==
0
then
return
g
and
#
g
>
0
and
g
:
GetFirst
():
IsAbleToRemove
(
tp
,
POS_FACEDOWN
)
end
if
chk
==
0
then
return
#
g
>
0
and
g
:
GetFirst
():
IsAbleToRemove
(
tp
,
POS_FACEDOWN
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_REMOVE
,
nil
,
1
,
1
-
tp
,
LOCATION_DECK
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_REMOVE
,
nil
,
1
,
1
-
tp
,
LOCATION_DECK
)
end
end
function
c94392192
.
rmop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c94392192
.
rmop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
@@ -96,3 +96,8 @@ end
...
@@ -96,3 +96,8 @@ end
function
c94392192
.
rmcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c94392192
.
rmcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
rp
==
1
-
tp
and
re
:
IsActiveType
(
TYPE_MONSTER
)
return
rp
==
1
-
tp
and
re
:
IsActiveType
(
TYPE_MONSTER
)
end
end
function
c94392192
.
rmtg2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
g
=
Duel
.
GetDecktopGroup
(
1
-
tp
,
1
)
if
chk
==
0
then
return
rp
==
1
-
tp
and
#
g
>
0
and
g
:
GetFirst
():
IsAbleToRemove
(
tp
,
POS_FACEDOWN
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_REMOVE
,
nil
,
1
,
1
-
tp
,
LOCATION_DECK
)
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