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
be45e8d1
Commit
be45e8d1
authored
Sep 19, 2023
by
未闻皂名
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2023/9/19 新增:月魔将 雅灭鲁娜,更新卡表
parent
ed15ac86
Pipeline
#23512
passed with stages
in 8 minutes and 22 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
1 deletion
+55
-1
RD Patch.cdb
RD Patch.cdb
+0
-0
lflist.conf
lflist.conf
+3
-1
script/c120246046.lua
script/c120246046.lua
+52
-0
No files found.
RD Patch.cdb
View file @
be45e8d1
No preview for this file type
lflist.conf
View file @
be45e8d1
...
@@ -13,8 +13,10 @@
...
@@ -13,8 +13,10 @@
120160003
1
-- 死灵女仆·小七
120160003
1
-- 死灵女仆·小七
120183015
1
-- 火雷神 雷击勇士
120183015
1
-- 火雷神 雷击勇士
120203029
1
-- 魔法石采掘
120203029
1
-- 魔法石采掘
120155049
1
-- 大极流
#Semi-Limit
#Semi-Limit
120217035
2
-- 革新制壶陶艺家
120217035
2
-- 革新制壶陶艺家
120203024
2
-- 潜入开始
120203024
2
-- 潜入开始
120231039
2
-- 超可爱执行者紧急出动!
120231039
2
-- 超可爱执行者紧急出动!
\ No newline at end of file
120244054
2
-- 七魔导奇妙融合
script/c120246046.lua
0 → 100644
View file @
be45e8d1
local
m
=
120246046
local
list
=
{
120120029
}
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"月魔将 雅灭鲁娜"
function
cm
.
initial_effect
(
c
)
RD
.
AddCodeList
(
c
,
list
)
--Special Summon Procedure
RD
.
AddHandSpecialSummonProcedure
(
c
,
aux
.
Stringid
(
m
,
0
),
cm
.
spcon
)
--Atk Up
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
m
,
1
))
e1
:
SetCategory
(
CATEGORY_ATKCHANGE
)
e1
:
SetType
(
EFFECT_TYPE_IGNITION
)
e1
:
SetRange
(
LOCATION_MZONE
)
e1
:
SetCost
(
cm
.
cost
)
e1
:
SetTarget
(
cm
.
target
)
e1
:
SetOperation
(
cm
.
operation
)
c
:
RegisterEffect
(
e1
)
end
--Special Summon Procedure
function
cm
.
spconfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsCode
(
list
[
1
])
end
function
cm
.
spcon
(
e
,
c
)
if
c
==
nil
then
return
true
end
local
tp
=
c
:
GetControler
()
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
IsExistingMatchingCard
(
cm
.
spconfilter
,
tp
,
LOCATION_ONFIELD
,
0
,
1
,
nil
)
end
--Atk Up
function
cm
.
costfilter
(
c
)
return
RD
.
IsCanChangePosition
(
c
)
end
function
cm
.
filter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsCode
(
list
[
1
])
end
function
cm
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
costfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
)
end
RD
.
SelectAndDoAction
(
HINTMSG_POSCHANGE
,
cm
.
costfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
,
function
(
g
)
RD
.
ChangePosition
(
g
)
end
)
end
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
filter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
)
end
end
function
cm
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
RD
.
SelectAndDoAction
(
aux
.
Stringid
(
m
,
2
),
cm
.
filter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
,
function
(
g
)
local
tc
=
g
:
GetFirst
()
RD
.
AttachAtkDef
(
e
,
tc
,
500
,
0
,
RESET_EVENT
+
RESETS_STANDARD
)
RD
.
AttachPierce
(
e
,
tc
,
aux
.
Stringid
(
m
,
3
),
RESET_EVENT
+
RESETS_STANDARD
)
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