Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-rush-duel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
5
Issues
5
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
MyCard
ygopro-rush-duel
Commits
f48acfde
Commit
f48acfde
authored
Dec 06, 2025
by
未闻皂名
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2025/12/6 新增:髑岩新卡
parent
388f16f7
Pipeline
#41858
passed with stages
in 9 minutes and 19 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
91 additions
and
1 deletion
+91
-1
RD Patch.cdb
RD Patch.cdb
+0
-0
script/c120298003.lua
script/c120298003.lua
+49
-0
script/c120298007.lua
script/c120298007.lua
+1
-1
script/c120298015.lua
script/c120298015.lua
+41
-0
No files found.
RD Patch.cdb
View file @
f48acfde
No preview for this file type
script/c120298003.lua
0 → 100644
View file @
f48acfde
local
cm
,
m
=
GetID
()
cm
.
name
=
"髑岩王 瓦尔斯特卢姆"
function
cm
.
initial_effect
(
c
)
--Fusion Material
RD
.
AddFusionProcedure
(
c
,
cm
.
matfilter
,
cm
.
matfilter
,
cm
.
matfilter
)
--Indes
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetCode
(
EFFECT_INDESTRUCTABLE_EFFECT
)
e1
:
SetProperty
(
EFFECT_FLAG_SET_AVAILABLE
)
e1
:
SetRange
(
LOCATION_MZONE
)
e1
:
SetTargetRange
(
LOCATION_ONFIELD
,
0
)
e1
:
SetTarget
(
cm
.
target
)
e1
:
SetValue
(
cm
.
indval
)
c
:
RegisterEffect
(
e1
)
--Cannot To Hand & Deck & Extra
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_CANNOT_TO_HAND_EFFECT
)
e2
:
SetProperty
(
EFFECT_FLAG_SET_AVAILABLE
)
e2
:
SetRange
(
LOCATION_MZONE
)
e2
:
SetTargetRange
(
LOCATION_ONFIELD
,
0
)
e2
:
SetCondition
(
cm
.
indcon
)
e2
:
SetTarget
(
cm
.
indtg
)
e2
:
SetValue
(
1
)
c
:
RegisterEffect
(
e2
)
local
e3
=
e2
:
Clone
()
e3
:
SetCode
(
EFFECT_CANNOT_TO_DECK_EFFECT
)
c
:
RegisterEffect
(
e3
)
--Continuous Effect
RD
.
AddContinuousEffect
(
c
,
e1
,
e2
,
e3
)
end
--Fusion Material
cm
.
unspecified_funsion
=
true
function
cm
.
matfilter
(
c
)
return
c
:
IsLevelBelow
(
8
)
and
c
:
IsRace
(
RACE_ZOMBIE
)
end
--Indes
cm
.
indval
=
RD
.
ValueEffectIndesType
(
0
,
TYPE_MONSTER
+
TYPE_SPELL
+
TYPE_TRAP
,
true
)
function
cm
.
target
(
e
,
c
)
return
c
:
IsType
(
TYPE_SPELL
+
TYPE_TRAP
)
end
--Cannot To Hand & Deck & Extra
function
cm
.
indcon
(
e
)
return
Duel
.
GetTurnPlayer
()
~=
e
:
GetHandlerPlayer
()
end
function
cm
.
indtg
(
e
,
c
)
return
c
:
IsType
(
TYPE_SPELL
+
TYPE_TRAP
)
end
\ No newline at end of file
script/c120298007.lua
View file @
f48acfde
local
cm
,
m
=
GetID
()
local
list
=
{
120298007
,
0
}
local
list
=
{
120298007
,
120298015
}
cm
.
name
=
"髑岩妃 索普拉"
function
cm
.
initial_effect
(
c
)
RD
.
AddCodeList
(
c
,
list
)
...
...
script/c120298015.lua
0 → 100644
View file @
f48acfde
local
cm
,
m
=
GetID
()
cm
.
name
=
"髑岩袭来"
function
cm
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_DESTROY
+
CATEGORY_SPECIAL_SUMMON
+
CATEGORY_FUSION_SUMMON
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetCondition
(
cm
.
condition
)
e1
:
SetTarget
(
cm
.
target
)
e1
:
SetOperation
(
cm
.
activate
)
c
:
RegisterEffect
(
e1
)
end
--Activate
function
cm
.
filter
(
c
)
return
c
:
IsType
(
TYPE_SPELL
+
TYPE_TRAP
)
end
function
cm
.
matfilter
(
c
)
return
c
:
IsOnField
()
and
c
:
IsRace
(
RACE_ZOMBIE
)
and
c
:
IsAbleToDeck
()
end
function
cm
.
spfilter
(
c
)
return
c
:
IsRace
(
RACE_ZOMBIE
)
and
RD
.
IsDefense
(
c
,
0
)
end
function
cm
.
exfilter
(
c
)
return
c
:
IsRace
(
RACE_ZOMBIE
)
and
c
:
IsCanBeFusionMaterial
()
and
c
:
IsAbleToDeck
()
end
function
cm
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
GetFieldGroupCount
(
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
)
>=
3
end
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
filter
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
nil
)
end
local
g
=
Duel
.
GetMatchingGroup
(
cm
.
filter
,
tp
,
0
,
LOCATION_ONFIELD
,
nil
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
g
,
1
,
0
,
0
)
end
function
cm
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
RD
.
SelectAndDoAction
(
HINTMSG_DESTROY
,
cm
.
filter
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
1
,
nil
,
function
(
g
)
if
Duel
.
Destroy
(
g
,
REASON_EFFECT
)
~=
0
then
RD
.
CanFusionSummon
(
aux
.
Stringid
(
m
,
1
),
cm
.
matfilter
,
cm
.
spfilter
,
cm
.
exfilter
,
LOCATION_GRAVE
,
0
,
nil
,
RD
.
FusionToDeck
,
e
,
tp
,
POS_FACEUP
,
true
)
end
end
)
end
\ No newline at end of file
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