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
a0998e51
Commit
a0998e51
authored
Jul 25, 2025
by
wyykak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix mh
Signed-off-by:
wyykak
<
wyy_1414@126.com
>
parent
4083c1a5
Pipeline
#39524
passed with stage
in 8 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
script/c21091.lua
script/c21091.lua
+3
-3
script/c21123.lua
script/c21123.lua
+1
-1
script/c21125.lua
script/c21125.lua
+2
-2
No files found.
script/c21091.lua
View file @
a0998e51
...
@@ -39,7 +39,7 @@ end
...
@@ -39,7 +39,7 @@ end
function
c21091
.
recop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c21091
.
recop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
c
=
e
:
GetHandler
()
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetLabel
(
0
)
e1
:
SetLabel
(
0
,
e
:
GetLabel
()
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetCountLimit
(
1
)
e1
:
SetCountLimit
(
1
)
e1
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
e1
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
...
@@ -50,10 +50,10 @@ function c21091.recop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -50,10 +50,10 @@ function c21091.recop(e,tp,eg,ep,ev,re,r,rp)
end
end
function
c21091
.
damop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c21091
.
damop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
c
=
e
:
GetHandler
()
local
ct
=
e
:
GetLabel
()
local
ct
,
dam
=
e
:
GetLabel
()
if
(
ct
<
3
)
then
if
(
ct
<
3
)
then
ct
=
ct
+
1
ct
=
ct
+
1
e
:
SetLabel
(
ct
)
e
:
SetLabel
(
ct
,
dam
)
c
:
SetTurnCounter
(
ct
)
c
:
SetTurnCounter
(
ct
)
Duel
.
Damage
(
tp
,
dam
,
REASON_EFFECT
,
true
)
Duel
.
Damage
(
tp
,
dam
,
REASON_EFFECT
,
true
)
Duel
.
Damage
(
1
-
tp
,
dam
,
REASON_EFFECT
,
true
)
Duel
.
Damage
(
1
-
tp
,
dam
,
REASON_EFFECT
,
true
)
...
...
script/c21123.lua
View file @
a0998e51
...
@@ -61,7 +61,7 @@ end
...
@@ -61,7 +61,7 @@ end
function
c21123
.
thop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c21123
.
thop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_CARD
,
0
,
21123
)
Duel
.
Hint
(
HINT_CARD
,
0
,
21123
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
thfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c21123
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
)
if
#
g
>
0
then
if
#
g
>
0
then
Duel
.
SendtoHand
(
g
,
nil
,
REASON_EFFECT
)
Duel
.
SendtoHand
(
g
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
...
...
script/c21125.lua
View file @
a0998e51
...
@@ -11,9 +11,9 @@ function c21125.initial_effect(c)
...
@@ -11,9 +11,9 @@ function c21125.initial_effect(c)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
end
end
function
c21125
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c21125
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
CheckReleaseGroupEx
(
tp
,
c21125
.
cfilter
,
1
,
nil
)
end
if
chk
==
0
then
return
Duel
.
CheckReleaseGroupEx
(
tp
,
c21125
.
cfilter
,
1
,
REASON_COST
,
true
,
nil
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
local
g
=
Duel
.
SelectReleaseGroupEx
(
tp
,
c21125
.
cfilter
,
1
,
1
,
nil
)
local
g
=
Duel
.
SelectReleaseGroupEx
(
tp
,
c21125
.
cfilter
,
1
,
1
,
REASON_COST
,
true
,
nil
)
Duel
.
Release
(
g
,
REASON_COST
)
Duel
.
Release
(
g
,
REASON_COST
)
end
end
function
c21125
.
cfilter
(
c
)
function
c21125
.
cfilter
(
c
)
...
...
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