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
ea5fc561
Commit
ea5fc561
authored
Aug 30, 2021
by
未闻皂名
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2021/8/30 新增:暗,更新卡密
parent
dc223e48
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
41 additions
and
5 deletions
+41
-5
RD Patch.cdb
RD Patch.cdb
+0
-0
RD Standard.cdb
RD Standard.cdb
+0
-0
script/c120109008.lua
script/c120109008.lua
+1
-1
script/c120109009.lua
script/c120109009.lua
+1
-1
script/c120181011.lua
script/c120181011.lua
+1
-1
script/c120185001.lua
script/c120185001.lua
+1
-1
script/c120196025.lua
script/c120196025.lua
+1
-1
script/c120196046.lua
script/c120196046.lua
+36
-0
No files found.
RD Patch.cdb
View file @
ea5fc561
No preview for this file type
RD Standard.cdb
View file @
ea5fc561
No preview for this file type
script/c1201
12
008.lua
→
script/c1201
09
008.lua
View file @
ea5fc561
local
m
=
1201
12
008
local
m
=
1201
09
008
local
cm
=
_G
[
"c"
..
m
]
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"最强旗兽 大炮犀牛"
cm
.
name
=
"最强旗兽 大炮犀牛"
function
cm
.
initial_effect
(
c
)
function
cm
.
initial_effect
(
c
)
...
...
script/c1201
12
009.lua
→
script/c1201
09
009.lua
View file @
ea5fc561
local
m
=
1201
12
009
local
m
=
1201
09
009
local
cm
=
_G
[
"c"
..
m
]
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"THE☆星龙"
cm
.
name
=
"THE☆星龙"
function
cm
.
initial_effect
(
c
)
function
cm
.
initial_effect
(
c
)
...
...
script/c120181
10
1.lua
→
script/c120181
01
1.lua
View file @
ea5fc561
local
m
=
120181
10
1
local
m
=
120181
01
1
local
cm
=
_G
[
"c"
..
m
]
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"最强旗兽 浪涌双角兽"
cm
.
name
=
"最强旗兽 浪涌双角兽"
function
cm
.
initial_effect
(
c
)
function
cm
.
initial_effect
(
c
)
...
...
script/c1201
66
001.lua
→
script/c1201
85
001.lua
View file @
ea5fc561
local
m
=
1201
66
001
local
m
=
1201
85
001
local
cm
=
_G
[
"c"
..
m
]
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"夜使龙"
cm
.
name
=
"夜使龙"
function
cm
.
initial_effect
(
c
)
function
cm
.
initial_effect
(
c
)
...
...
script/c120196025.lua
View file @
ea5fc561
local
m
=
120196025
local
m
=
120196025
local
cm
=
_G
[
"c"
..
m
]
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"THE☆
蜿
龙"
cm
.
name
=
"THE☆
翼
龙"
function
cm
.
initial_effect
(
c
)
function
cm
.
initial_effect
(
c
)
--Special Summon
--Special Summon
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
script/c120196046.lua
0 → 100644
View file @
ea5fc561
local
m
=
120196046
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"暗"
function
cm
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
c
:
RegisterEffect
(
e1
)
--Atk & Def
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
e2
:
SetRange
(
LOCATION_FZONE
)
e2
:
SetTargetRange
(
LOCATION_MZONE
,
LOCATION_MZONE
)
e2
:
SetTarget
(
cm
.
uptg
)
e2
:
SetValue
(
200
)
c
:
RegisterEffect
(
e2
)
local
e3
=
e2
:
Clone
()
e3
:
SetCode
(
EFFECT_UPDATE_DEFENSE
)
c
:
RegisterEffect
(
e3
)
local
e4
=
e2
:
Clone
()
e4
:
SetTarget
(
cm
.
downtg
)
e4
:
SetValue
(
-
200
)
c
:
RegisterEffect
(
e4
)
local
e5
=
e4
:
Clone
()
e5
:
SetCode
(
EFFECT_UPDATE_DEFENSE
)
c
:
RegisterEffect
(
e5
)
end
--Atk & Def
function
cm
.
uptg
(
e
,
c
)
return
c
:
IsFaceup
()
and
c
:
IsRace
(
RACE_FIEND
+
RACE_SPELLCASTER
)
end
function
cm
.
downtg
(
e
,
c
)
return
c
:
IsFaceup
()
and
c
:
IsRace
(
RACE_FAIRY
)
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