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
ecba3752
Commit
ecba3752
authored
Apr 30, 2025
by
Huangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
1fe7c80f
Pipeline
#35747
passed with stages
in 39 minutes and 35 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
expansions/FiNALE.cdb
expansions/FiNALE.cdb
+0
-0
expansions/script/c12835117.lua
expansions/script/c12835117.lua
+4
-3
expansions/script/c12866775.lua
expansions/script/c12866775.lua
+1
-2
expansions/script/c17243106.lua
expansions/script/c17243106.lua
+4
-4
expansions/script/c17243611.lua
expansions/script/c17243611.lua
+1
-1
No files found.
expansions/FiNALE.cdb
View file @
ecba3752
No preview for this file type
expansions/script/c12835117.lua
View file @
ecba3752
...
...
@@ -87,9 +87,10 @@ function cm.op5(e,tp,eg,ep,ev,re,r,rp)
local
c
=
e
:
GetHandler
()
Duel
.
Hint
(
3
,
tp
,
HINTMSG_EQUIP
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
w
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
,
e
,
tp
)
if
#
g
>
0
and
c
:
IsRelateToEffect
(
e
)
then
local
tc
=
g
:
GetFirst
()
if
Duel
.
Equip
(
tp
,
tc
,
c
)
>
0
then
local
tc
=
g
:
GetFirst
()
if
tc
and
c
:
IsRelateToEffect
(
e
)
and
tc
:
IsFaceup
()
then
if
Duel
.
Equip
(
tp
,
c
,
tc
)
then
Duel
.
BreakEffect
()
Duel
.
Draw
(
tp
,
1
,
REASON_EFFECT
)
end
end
...
...
expansions/script/c12866775.lua
View file @
ecba3752
...
...
@@ -81,8 +81,7 @@ function s.eqtg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
end
function
s
.
eqop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
g
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_CARDS
)
local
tg
=
g
:
Filter
(
Card
.
IsRelateToEffect
,
nil
,
e
)
local
tg
=
Duel
.
GetTargetsRelateToChain
():
Filter
(
aux
.
NecroValleyFilter
(
aux
.
TRUE
),
nil
)
if
c
:
IsRelateToEffect
(
e
)
and
c
:
IsFaceup
()
then
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_SZONE
)
>=
tg
:
GetCount
()
then
local
tc
=
tg
:
GetFirst
()
...
...
expansions/script/c17243106.lua
View file @
ecba3752
...
...
@@ -35,10 +35,10 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e2
)
end
function
s
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
IsExistingMatchingCard
(
s
.
sp
filter
,
tp
,
LOCATION_ONFIELD
,
0
,
1
,
nil
,
e
,
tp
)
return
Duel
.
IsExistingMatchingCard
(
s
.
chk
filter
,
tp
,
LOCATION_ONFIELD
,
0
,
1
,
nil
,
e
,
tp
)
end
function
s
.
spcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
not
Duel
.
IsExistingMatchingCard
(
s
.
sp
filter
,
tp
,
LOCATION_ONFIELD
,
0
,
1
,
nil
,
e
,
tp
)
return
not
Duel
.
IsExistingMatchingCard
(
s
.
chk
filter
,
tp
,
LOCATION_ONFIELD
,
0
,
1
,
nil
,
e
,
tp
)
end
function
s
.
chkfilter
(
c
)
return
(
c
.
ThKingdWei
or
c
:
GetFlagEffect
(
17243108
)
>
0
)
and
c
:
IsFaceup
()
...
...
@@ -125,7 +125,7 @@ end
-- ②效果处理
function
s
.
drop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
b1
=
Duel
.
IsExistingMatchingCard
(
aux
.
nzatk
()
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
local
b1
=
Duel
.
IsExistingMatchingCard
(
aux
.
nzatk
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
local
b2
=
c
:
IsAbleToHand
()
and
c
:
IsRelateToEffect
(
e
)
local
chk0
=
Duel
.
IsExistingMatchingCard
(
s
.
chkfilter0
,
tp
,
0
,
LOCATION_HAND
,
1
,
nil
)
local
chk1
=
Duel
.
IsExistingMatchingCard
(
s
.
chkfilter1
,
tp
,
0
,
LOCATION_HAND
,
1
,
nil
,
tp
)
...
...
@@ -148,7 +148,7 @@ function s.drop(e,tp,eg,ep,ev,re,r,rp)
if
not
b1
then
return
end
-- 怪兽处理
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FACEUP
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
nzatk
()
,
tp
,
0
,
LOCATION_MZONE
,
1
,
1
,
nil
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
nzatk
,
tp
,
0
,
LOCATION_MZONE
,
1
,
1
,
nil
)
if
#
g
>
0
then
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
...
expansions/script/c17243611.lua
View file @
ecba3752
...
...
@@ -33,7 +33,7 @@ end
cm
.
SetCard_JYMFS
=
true
function
cm
.
thfilter
(
c
)
return
c
.
SetCard_JYMFS
and
c
:
IsType
(
TYPE_
SPELL
+
TYPE_TRAP
)
and
c
:
IsAbleToHand
()
return
c
.
SetCard_JYMFS
and
c
:
IsType
(
TYPE_
MONSTER
)
and
c
:
IsAbleToHand
()
end
function
cm
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
thfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
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