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
491b892c
Commit
491b892c
authored
Jul 24, 2025
by
Huangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
6b6d4867
Pipeline
#39458
failed with stages
in 5 minutes and 57 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
expansions/script/c16107116.lua
expansions/script/c16107116.lua
+1
-1
expansions/script/c18031216.lua
expansions/script/c18031216.lua
+1
-1
expansions/script/c18700254.lua
expansions/script/c18700254.lua
+6
-2
No files found.
expansions/script/c16107116.lua
View file @
491b892c
...
...
@@ -13,7 +13,7 @@ function cm.initial_effect(c)
e1
:
SetRange
(
LOCATION_MZONE
)
e1
:
SetCondition
(
cm
.
effcon
)
e1
:
SetValue
(
cm
.
efilter
)
c
:
RegisterEffect
(
e1
)
--
c:RegisterEffect(e1)
end
function
cm
.
effcon
(
e
)
return
e
:
GetHandler
():
GetOverlayCount
()
>
0
...
...
expansions/script/c18031216.lua
View file @
491b892c
...
...
@@ -53,7 +53,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
Duel
.
HintSelection
(
rg
)
local
rc
=
rg
:
GetFirst
()
if
rc
:
IsAbleToDeck
()
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
id
,
0
))
then
local
ds
=
Duel
.
SelectOption
(
tp
,
aux
.
Stringid
(
id
,
3
),
aux
.
Stringid
(
id
,
4
))
==
1
local
ds
=
Duel
.
SelectOption
(
tp
,
aux
.
Stringid
(
id
,
4
),
aux
.
Stringid
(
id
,
3
))
==
1
Duel
.
SendtoDeck
(
rc
,
nil
,
ds
,
REASON_EFFECT
)
else
Duel
.
Remove
(
rg
,
POS_FACEUP
,
REASON_EFFECT
)
...
...
expansions/script/c18700254.lua
View file @
491b892c
...
...
@@ -130,12 +130,16 @@ end
function
cm
.
spsumfilter2
(
c
,
e
,
tp
)
return
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
,
POS_FACEUP
,
1
-
tp
)
end
function
c1041278
.
gcheck
(
g
,
e
,
tp
,
b1
,
b2
)
return
b1
and
g
:
IsExists
(
c1041278
.
spfilter1
,
1
,
nil
,
e
,
tp
,
g
)
or
b2
and
g
:
IsExists
(
c1041278
.
spfilter3
,
2
,
nil
,
e
,
tp
)
end
function
cm
.
gcheck
(
g
,
e
,
tp
)
if
#
g
~=
2
then
return
false
end
local
ac
=
g
:
GetFirst
()
local
bc
=
g
:
GetNext
()
return
cm
.
spsumfilter1
(
ac
,
e
,
tp
)
and
cm
.
spsumfilter2
(
bc
,
e
,
tp
)
and
(
g
:
GetClassCount
(
Card
.
GetAttack
)
==
1
or
g
:
GetClassCount
(
Card
.
GetDefense
)
==
1
)
and
g
:
GetClassCount
(
Card
.
GetRace
)
==
1
and
g
:
GetClassCount
(
Card
.
GetAttribute
)
~=
1
or
cm
.
spsumfilter1
(
bc
,
e
,
tp
)
and
cm
.
spsumfilter2
(
ac
,
e
,
tp
)
and
(
g
:
GetClassCount
(
Card
.
GetAttack
)
==
1
or
g
:
GetClassCount
(
Card
.
GetDefense
)
==
1
)
and
g
:
GetClassCount
(
Card
.
GetRace
)
==
1
and
g
:
GetClassCount
(
Card
.
GetAttribute
)
~=
1
return
(
cm
.
spsumfilter1
(
ac
,
e
,
tp
)
and
cm
.
spsumfilter2
(
bc
,
e
,
tp
)
and
(
g
:
GetClassCount
(
Card
.
GetAttack
)
==
1
or
g
:
GetClassCount
(
Card
.
GetDefense
)
==
1
)
and
g
:
GetClassCount
(
Card
.
GetRace
)
~=
1
and
g
:
GetClassCount
(
Card
.
GetAttribute
)
==
1
)
or
(
cm
.
spsumfilter1
(
bc
,
e
,
tp
)
and
cm
.
spsumfilter2
(
ac
,
e
,
tp
)
and
(
g
:
GetClassCount
(
Card
.
GetAttack
)
==
1
or
g
:
GetClassCount
(
Card
.
GetDefense
)
==
1
)
and
g
:
GetClassCount
(
Card
.
GetRace
)
~=
1
and
g
:
GetClassCount
(
Card
.
GetAttribute
)
==
1
)
end
function
cm
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
false
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