Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-THC-cards
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
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
HiiragiGuardians
ygopro-THC-cards
Commits
a236f269
Commit
a236f269
authored
Jul 16, 2025
by
tsubaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.0.0 fix4
parent
dae08c04
Pipeline
#39105
passed with stage
in 42 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
6 deletions
+8
-6
script/c25207.lua
script/c25207.lua
+1
-0
script/c25210.lua
script/c25210.lua
+1
-0
script/c26091.lua
script/c26091.lua
+2
-2
script/c26101.lua
script/c26101.lua
+4
-4
No files found.
script/c25207.lua
View file @
a236f269
...
@@ -18,6 +18,7 @@ function s.initial_effect(c)
...
@@ -18,6 +18,7 @@ function s.initial_effect(c)
e2
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e2
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e2
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e2
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e2
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e2
:
SetCode
(
EVENT_TO_HAND
)
e2
:
SetCode
(
EVENT_TO_HAND
)
e2
:
SetCountLimit
(
1
,
id
+
2
)
e2
:
SetCountLimit
(
1
,
id
+
2
)
e2
:
SetCondition
(
s
.
spcon2
)
e2
:
SetCondition
(
s
.
spcon2
)
...
...
script/c25210.lua
View file @
a236f269
...
@@ -17,6 +17,7 @@ function s.initial_effect(c)
...
@@ -17,6 +17,7 @@ function s.initial_effect(c)
local
e2
=
Effect
.
CreateEffect
(
c
)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e2
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e2
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e2
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e2
:
SetCode
(
EVENT_TO_HAND
)
e2
:
SetCode
(
EVENT_TO_HAND
)
e2
:
SetCountLimit
(
1
,
id
+
2
)
e2
:
SetCountLimit
(
1
,
id
+
2
)
e2
:
SetCondition
(
s
.
scon2
)
e2
:
SetCondition
(
s
.
scon2
)
...
...
script/c26091.lua
View file @
a236f269
...
@@ -20,11 +20,11 @@ function c26091.cffilter(c)
...
@@ -20,11 +20,11 @@ function c26091.cffilter(c)
return
c
:
IsSetCard
(
0x229
,
0x306
)
and
not
c
:
IsPublic
()
return
c
:
IsSetCard
(
0x229
,
0x306
)
and
not
c
:
IsPublic
()
end
end
function
c26091
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c26091
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c26091
.
cffilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
e
:
GetHandler
())
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c26091
.
cffilter
,
tp
,
LOCATION_HAND
,
0
,
2
,
e
:
GetHandler
())
and
Duel
.
GetCustomActivityCount
(
26091
,
tp
,
ACTIVITY_SUMMON
)
==
0
and
Duel
.
GetCustomActivityCount
(
26091
,
tp
,
ACTIVITY_SUMMON
)
==
0
and
Duel
.
GetCustomActivityCount
(
26091
,
tp
,
ACTIVITY_SPSUMMON
)
==
0
end
and
Duel
.
GetCustomActivityCount
(
26091
,
tp
,
ACTIVITY_SPSUMMON
)
==
0
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_CONFIRM
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_CONFIRM
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c26091
.
cffilter
,
tp
,
LOCATION_HAND
,
0
,
1
,
1
,
e
:
GetHandler
())
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c26091
.
cffilter
,
tp
,
LOCATION_HAND
,
0
,
2
,
2
,
e
:
GetHandler
())
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
Duel
.
ShuffleHand
(
tp
)
Duel
.
ShuffleHand
(
tp
)
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
...
...
script/c26101.lua
View file @
a236f269
...
@@ -47,25 +47,25 @@ function s.ctop1(e,tp,eg,ep,ev,re,r,rp)
...
@@ -47,25 +47,25 @@ function s.ctop1(e,tp,eg,ep,ev,re,r,rp)
e
:
GetHandler
():
AddCounter
(
0x228b
,
1
)
e
:
GetHandler
():
AddCounter
(
0x228b
,
1
)
end
end
function
s
.
filter1
(
c
)
function
s
.
filter1
(
c
)
return
c
:
Is
Summon
Type
(
SUMMON_TYPE_FUSION
)
and
c
:
IsType
(
TYPE_MONSTER
)
return
c
:
IsType
(
SUMMON_TYPE_FUSION
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
end
function
s
.
drcon1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
drcon1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
s
.
filter1
,
1
,
nil
)
and
rp
==
tp
return
eg
:
IsExists
(
s
.
filter1
,
1
,
nil
)
and
rp
==
tp
end
end
function
s
.
filter2
(
c
)
function
s
.
filter2
(
c
)
return
c
:
Is
Summon
Type
(
SUMMON_TYPE_RITUAL
)
and
c
:
IsType
(
TYPE_MONSTER
)
return
c
:
IsType
(
SUMMON_TYPE_RITUAL
)
and
c
:
IsType
(
TYPE_MONSTER
)
end
end
function
s
.
drcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
drcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
s
.
filter2
,
1
,
nil
)
and
rp
==
tp
return
eg
:
IsExists
(
s
.
filter2
,
1
,
nil
)
and
rp
==
tp
end
end
function
s
.
filter3
(
c
)
function
s
.
filter3
(
c
)
return
c
:
Is
Summon
Type
(
SUMMON_TYPE_LINK
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsSetCard
(
0x999
)
return
c
:
IsType
(
SUMMON_TYPE_LINK
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsSetCard
(
0x999
)
end
end
function
s
.
drcon3
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
drcon3
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
s
.
filter3
,
1
,
nil
)
and
rp
==
tp
return
eg
:
IsExists
(
s
.
filter3
,
1
,
nil
)
and
rp
==
tp
end
end
function
s
.
filter4
(
c
)
function
s
.
filter4
(
c
)
return
c
:
Is
Summon
Type
(
SUMMON_TYPE_XYZ
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsSetCard
(
0x999
)
return
c
:
IsType
(
SUMMON_TYPE_XYZ
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsSetCard
(
0x999
)
end
end
function
s
.
drcon4
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
drcon4
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
s
.
filter4
,
1
,
nil
)
and
rp
==
tp
return
eg
:
IsExists
(
s
.
filter4
,
1
,
nil
)
and
rp
==
tp
...
...
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