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
eca30c75
Commit
eca30c75
authored
Aug 13, 2025
by
tsubaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.0.0正a version
parent
bab05fdd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
6 deletions
+7
-6
expansions/AI.cdb
expansions/AI.cdb
+0
-0
expansions/thc.cdb
expansions/thc.cdb
+0
-0
script/c23057.lua
script/c23057.lua
+5
-5
script/c24071.lua
script/c24071.lua
+2
-1
No files found.
expansions/AI.cdb
View file @
eca30c75
No preview for this file type
expansions/thc.cdb
View file @
eca30c75
No preview for this file type
script/c23057.lua
View file @
eca30c75
...
...
@@ -16,9 +16,9 @@ function c23057.cfilter(c)
return
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsAbleToDeckAsCost
()
end
function
c23057
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c23057
.
cfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
end
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c23057
.
cfilter
,
tp
,
LOCATION_
MZONE
+
LOCATION_
GRAVE
,
0
,
1
,
nil
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TODECK
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c23057
.
cfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c23057
.
cfilter
,
tp
,
LOCATION_
MZONE
+
LOCATION_
GRAVE
,
0
,
1
,
1
,
nil
)
Duel
.
ConfirmCards
(
1
-
tp
,
g
)
Duel
.
SendtoDeck
(
g
,
nil
,
1
,
REASON_COST
)
end
...
...
@@ -40,7 +40,7 @@ function c23057.activate(e,tp,eg,ep,ev,re,r,rp)
e2
:
SetOperation
(
c23057
.
damop
)
e2
:
SetReset
(
RESET_PHASE
+
PHASE_DRAW
+
RESET_OPPO_TURN
,
1
)
Duel
.
RegisterEffect
(
e2
,
tp
)
DOT
.
DotCounter
.
Add
(
nil
,
1
-
tp
,
0
,
2000
,
2
000
,
e
)
DOT
.
DotCounter
.
Add
(
nil
,
1
-
tp
,
0
,
1000
,
1
000
,
e
)
end
end
function
c23057
.
damcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
@@ -53,7 +53,7 @@ function c23057.damop(e,tp,eg,ep,ev,re,r,rp)
ct
=
ct
+
1
e
:
SetLabel
(
ct
)
c
:
SetTurnCounter
(
ct
)
Duel
.
Damage
(
1
-
tp
,
2
000
,
REASON_EFFECT
)
DOT
.
DotCounter
.
Add
(
nil
,
1
-
tp
,
0
,
-
2000
,
-
2
000
,
e
)
Duel
.
Damage
(
1
-
tp
,
1
000
,
REASON_EFFECT
)
DOT
.
DotCounter
.
Add
(
nil
,
1
-
tp
,
0
,
-
1000
,
-
1
000
,
e
)
end
end
script/c24071.lua
View file @
eca30c75
...
...
@@ -27,6 +27,7 @@ function c24071.initial_effect(c)
e3
:
SetProperty
(
EFFECT_FLAG_DAMAGE_STEP
)
e3
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_F
)
e3
:
SetCode
(
EVENT_TO_GRAVE
)
e3
:
SetCountLimit
(
1
)
e3
:
SetTarget
(
c24071
.
thtg
)
e3
:
SetOperation
(
c24071
.
thop
)
c
:
RegisterEffect
(
e3
)
...
...
@@ -66,7 +67,7 @@ function c24071.thfilter(c)
return
c
:
IsRace
(
RACE_ZOMBIE
)
and
c
:
GetLevel
()
==
1
and
(
c
:
IsAbleToHand
())
end
function
c24071
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c24071
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
if
chk
==
0
then
return
e
:
GetHandler
():
GetPreviousLocation
()
==
LOCATION_ONFIELD
and
Duel
.
IsExistingMatchingCard
(
c24071
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
nil
,
1
,
tp
,
LOCATION_DECK
)
end
function
c24071
.
spfilter
(
c
,
e
,
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