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
0
Issues
0
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
Clara Grace Paulsen
ygopro-rush-duel
Commits
059d443b
Commit
059d443b
authored
Sep 14, 2022
by
未闻皂名
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2022/9/14 新增:暗黑的炽天使,更新翻译
parent
9be69900
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
51 additions
and
5 deletions
+51
-5
RD Patch.cdb
RD Patch.cdb
+0
-0
script/c120228013.lua
script/c120228013.lua
+1
-1
script/c120228014.lua
script/c120228014.lua
+1
-1
script/c120228029.lua
script/c120228029.lua
+1
-1
script/c120228030.lua
script/c120228030.lua
+46
-0
script/c120228045.lua
script/c120228045.lua
+1
-1
script/c120228062.lua
script/c120228062.lua
+1
-1
No files found.
RD Patch.cdb
View file @
059d443b
No preview for this file type
script/c120228013.lua
View file @
059d443b
local
m
=
120228013
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"艺术天使·钻石
针
"
cm
.
name
=
"艺术天使·钻石
唱针乐手
"
function
cm
.
initial_effect
(
c
)
--Pierce
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c120228014.lua
View file @
059d443b
local
m
=
120228014
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"艺术天使·金属
姿势
"
cm
.
name
=
"艺术天使·金属
磁带乐手
"
function
cm
.
initial_effect
(
c
)
--Position
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c120228029.lua
View file @
059d443b
local
m
=
120228029
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"
大脑收割机
"
cm
.
name
=
"
智能收获者
"
function
cm
.
initial_effect
(
c
)
--Draw
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c120228030.lua
0 → 100644
View file @
059d443b
local
m
=
120228030
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"暗黑的炽天使"
function
cm
.
initial_effect
(
c
)
--Position
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
m
,
0
))
e1
:
SetCategory
(
CATEGORY_POSITION
)
e1
:
SetType
(
EFFECT_TYPE_IGNITION
)
e1
:
SetRange
(
LOCATION_MZONE
)
e1
:
SetCondition
(
cm
.
condition
)
e1
:
SetCost
(
cm
.
cost
)
e1
:
SetTarget
(
cm
.
target
)
e1
:
SetOperation
(
cm
.
operation
)
c
:
RegisterEffect
(
e1
)
end
--Position
function
cm
.
confilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsLevelAbove
(
5
)
and
c
:
IsAttribute
(
ATTRIBUTE_DARK
)
end
function
cm
.
posfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsLevelBelow
(
8
)
and
RD
.
IsCanChangePosition
(
c
)
and
(
not
c
:
IsPosition
(
POS_FACEUP_ATTACK
)
or
c
:
IsCanTurnSet
())
end
function
cm
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
IsExistingMatchingCard
(
cm
.
confilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
)
end
cm
.
cost
=
RD
.
CostPayLP
(
500
)
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
posfilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
end
local
g
=
Duel
.
GetMatchingGroup
(
cm
.
posfilter
,
tp
,
0
,
LOCATION_MZONE
,
nil
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_POSITION
,
g
,
1
,
0
,
0
)
end
function
cm
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
RD
.
SelectAndDoAction
(
HINTMSG_POSCHANGE
,
cm
.
posfilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
1
,
nil
,
function
(
g
)
local
tc
=
g
:
GetFirst
()
local
pos
=
POS_FACEUP_ATTACK
+
POS_FACEDOWN_DEFENSE
if
tc
:
IsPosition
(
POS_FACEUP_ATTACK
)
then
pos
=
POS_FACEDOWN_DEFENSE
elseif
not
tc
:
IsCanTurnSet
()
then
pos
=
POS_FACEUP_ATTACK
end
pos
=
Duel
.
SelectPosition
(
tp
,
tc
,
pos
)
RD
.
ChangePosition
(
tc
,
pos
)
end
)
end
\ No newline at end of file
script/c120228045.lua
View file @
059d443b
local
m
=
120228045
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"自动
反转
"
cm
.
name
=
"自动
翻带
"
function
cm
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c120228062.lua
View file @
059d443b
local
m
=
120228062
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"
猛砍
光环"
cm
.
name
=
"
割削
光环"
function
cm
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
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