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
cc7a65c0
Commit
cc7a65c0
authored
Jul 16, 2025
by
tsubaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.0.0 fix2
parent
f28195be
Pipeline
#39070
passed with stage
in 7 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
13 deletions
+1
-13
expansions/AI.cdb
expansions/AI.cdb
+0
-0
expansions/thc.cdb
expansions/thc.cdb
+0
-0
script/c27043.lua
script/c27043.lua
+0
-12
script/c27059.lua
script/c27059.lua
+1
-1
No files found.
expansions/AI.cdb
View file @
cc7a65c0
No preview for this file type
expansions/thc.cdb
View file @
cc7a65c0
No preview for this file type
script/c27043.lua
View file @
cc7a65c0
...
...
@@ -18,13 +18,6 @@ function c27043.initial_effect(c)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
)
e2
:
SetCode
(
EFFECT_DIRECT_ATTACK
)
c
:
RegisterEffect
(
e2
)
--synchro summon
local
e4
=
Effect
.
CreateEffect
(
c
)
e4
:
SetType
(
EFFECT_TYPE_SINGLE
)
e4
:
SetCode
(
EFFECT_CANNOT_BE_SYNCHRO_MATERIAL
)
e4
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e4
:
SetValue
(
c27043
.
synlimit
)
c
:
RegisterEffect
(
e4
)
--special summon
local
e5
=
Effect
.
CreateEffect
(
c
)
e5
:
SetDescription
(
aux
.
Stringid
(
27043
,
0
))
...
...
@@ -39,11 +32,6 @@ function c27043.initial_effect(c)
e6
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
c
:
RegisterEffect
(
e6
)
end
function
c27043
.
synlimit
(
e
,
c
)
if
not
c
then
return
false
end
if
c
:
IsSetCard
(
0x5208
)
then
return
else
return
not
c
:
IsSetCard
(
0x120
)
end
end
function
c27043
.
spfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsAbleToHandAsCost
()
and
c
:
IsSetCard
(
0x208
)
and
(
c
:
IsRace
(
RACE_ZOMBIE
)
or
c
:
IsRace
(
RACE_ROCK
))
-- and not c:IsCode(27043)
...
...
script/c27059.lua
View file @
cc7a65c0
...
...
@@ -40,7 +40,7 @@ function c27059.initial_effect(c)
e6
:
SetProperty
(
EFFECT_FLAG_SET_AVAILABLE
)
e6
:
SetRange
(
LOCATION_MZONE
)
e6
:
SetTargetRange
(
LOCATION_SZONE
,
0
)
e6
:
SetTarget
(
aux
.
TargetBoolFunction
(
Card
.
IsSetCard
,
0x16
8
))
e6
:
SetTarget
(
aux
.
TargetBoolFunction
(
Card
.
IsSetCard
,
0x16
4
))
c
:
RegisterEffect
(
e6
)
end
function
c27059
.
filter
(
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