Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-222DIY-cards
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
alstroemeria-silentlove
ygopro-222DIY-cards
Commits
6a8a7362
Commit
6a8a7362
authored
Jul 10, 2025
by
Huangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
6acc04ad
Pipeline
#38815
failed with stages
in 119 minutes and 28 seconds
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
138 additions
and
72 deletions
+138
-72
expansions/FiNALE.cdb
expansions/FiNALE.cdb
+0
-0
expansions/script/c13700316.lua
expansions/script/c13700316.lua
+121
-60
expansions/script/c5012628.lua
expansions/script/c5012628.lua
+17
-12
No files found.
expansions/FiNALE.cdb
View file @
6a8a7362
No preview for this file type
expansions/script/c13700316.lua
View file @
6a8a7362
This diff is collapsed.
Click to expand it.
expansions/script/c5012628.lua
View file @
6a8a7362
...
@@ -66,6 +66,14 @@ function s.initial_effect(c)
...
@@ -66,6 +66,14 @@ function s.initial_effect(c)
ee
:
SetCondition
(
s
.
scon
)
ee
:
SetCondition
(
s
.
scon
)
ee
:
SetOperation
(
s
.
sop
)
ee
:
SetOperation
(
s
.
sop
)
c
:
RegisterEffect
(
ee
)
c
:
RegisterEffect
(
ee
)
local
se
=
Effect
.
CreateEffect
(
c
)
se
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
se
:
SetCode
(
EVENT_CHAIN_SOLVED
)
se
:
SetLabelObject
(
e1
)
se
:
SetRange
(
0xff
)
se
:
SetCondition
(
s
.
scon2
)
se
:
SetOperation
(
s
.
sop2
)
c
:
RegisterEffect
(
se
)
end
end
function
s
.
cfilter
(
c
)
function
s
.
cfilter
(
c
)
...
@@ -93,13 +101,9 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -93,13 +101,9 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
TRUE
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
1
,
1
,
nil
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
TRUE
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
1
,
1
,
nil
)
if
#
g
>
0
then
if
#
g
>
0
then
local
tc
=
g
:
GetFirst
()
local
tc
=
g
:
GetFirst
()
if
Duel
.
Destroy
(
tc
,
REASON_EFFECT
)
==
0
then
if
Duel
.
Destroy
(
tc
,
REASON_EFFECT
)
>
0
then
--没有破坏,触发②效果
c
:
RegisterFlagEffect
(
id
+
1
,
0
,
0
,
1
)
c
:
RegisterFlagEffect
(
id
+
1
,
0
,
0
,
1
)
end
end
else
--没有选择,触发②效果
c
:
RegisterFlagEffect
(
id
+
1
,
0
,
0
,
1
)
end
end
end
end
function
s
.
remcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
remcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
@@ -161,13 +165,6 @@ end
...
@@ -161,13 +165,6 @@ end
function
s
.
eqlimit
(
e
,
c
)
function
s
.
eqlimit
(
e
,
c
)
return
c
==
e
:
GetLabelObject
()
return
c
==
e
:
GetLabelObject
()
end
end
function
s
.
con
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
re
==
e
:
GetLabelObject
()
end
function
s
.
op
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
Duel
.
RaiseEvent
(
c
,
EVENT_CUSTOM
+
id
,
e
,
0
,
tp
,
tp
,
0
)
end
function
s
.
scon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
scon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
re
==
e
:
GetLabelObject
()
and
e
:
GetHandler
():
GetFlagEffect
(
id
+
1
)
==
0
and
e
:
GetHandler
():
GetFlagEffect
(
id
)
>
0
return
re
==
e
:
GetLabelObject
()
and
e
:
GetHandler
():
GetFlagEffect
(
id
+
1
)
==
0
and
e
:
GetHandler
():
GetFlagEffect
(
id
)
>
0
end
end
...
@@ -177,3 +174,11 @@ function s.sop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -177,3 +174,11 @@ function s.sop(e,tp,eg,ep,ev,re,r,rp)
c
:
ResetFlagEffect
(
id
+
1
)
c
:
ResetFlagEffect
(
id
+
1
)
Duel
.
RaiseEvent
(
c
,
EVENT_CUSTOM
+
id
,
e
,
0
,
tp
,
tp
,
0
)
Duel
.
RaiseEvent
(
c
,
EVENT_CUSTOM
+
id
,
e
,
0
,
tp
,
tp
,
0
)
end
end
function
s
.
scon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
re
==
e
:
GetLabelObject
()
and
not
(
e
:
GetHandler
():
GetFlagEffect
(
id
+
1
)
==
0
and
e
:
GetHandler
():
GetFlagEffect
(
id
)
>
0
)
end
function
s
.
sop2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
c
:
ResetFlagEffect
(
id
)
c
:
ResetFlagEffect
(
id
+
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