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
79c1d48f
Commit
79c1d48f
authored
Sep 19, 2020
by
未闻皂名
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2020/9/19 正式卡更新,根据FAQ修改部分效果
parent
6dfb5cc9
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
17 additions
and
17 deletions
+17
-17
RD Patch.cdb
RD Patch.cdb
+0
-0
RD Standard.cdb
RD Standard.cdb
+0
-0
script/c120120037.lua
script/c120120037.lua
+1
-1
script/c120130035.lua
script/c120130035.lua
+1
-1
script/c120140001.lua
script/c120140001.lua
+4
-3
script/c120140012.lua
script/c120140012.lua
+1
-1
script/c120140013.lua
script/c120140013.lua
+4
-4
script/c120140014.lua
script/c120140014.lua
+2
-3
script/c120140018.lua
script/c120140018.lua
+2
-2
script/c120140040.lua
script/c120140040.lua
+2
-2
No files found.
RD Patch.cdb
View file @
79c1d48f
No preview for this file type
RD Standard.cdb
View file @
79c1d48f
No preview for this file type
script/c120120037.lua
View file @
79c1d48f
...
...
@@ -13,7 +13,7 @@ function cm.initial_effect(c)
end
--Activate
function
cm
.
filter
(
c
)
return
c
:
IsFaceup
()
and
not
c
:
IsHasEffect
(
EFFECT_
PIERCE
)
return
c
:
IsFaceup
()
and
not
c
:
IsHasEffect
(
EFFECT_
CANNOT_ATTACK
)
end
function
cm
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
IsAbleToEnterBP
()
...
...
script/c120130035.lua
View file @
79c1d48f
...
...
@@ -14,7 +14,7 @@ function cm.initial_effect(c)
end
--Pierce
function
cm
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
IsAbleToEnterBP
()
and
not
e
:
GetHandler
():
IsHasEffect
(
EFFECT_
PIERCE
)
return
Duel
.
IsAbleToEnterBP
()
and
not
e
:
GetHandler
():
IsHasEffect
(
EFFECT_
CANNOT_ATTACK
)
end
function
cm
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsAbleToGraveAsCost
,
tp
,
LOCATION_HAND
,
0
,
1
,
nil
)
end
...
...
script/c120140001.lua
View file @
79c1d48f
...
...
@@ -2,7 +2,7 @@ local m=120140001
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"魔将 岂灭鲁拉"
function
cm
.
initial_effect
(
c
)
--
Cannot Summon
--
Direct Attack
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
m
,
0
))
e1
:
SetType
(
EFFECT_TYPE_IGNITION
)
...
...
@@ -12,10 +12,11 @@ function cm.initial_effect(c)
e1
:
SetOperation
(
cm
.
operation
)
c
:
RegisterEffect
(
e1
)
end
--
Special Summon
--
Direct Attack
function
cm
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
return
c
:
IsReason
(
REASON_SUMMON
)
and
c
:
IsStatus
(
STATUS_SUMMON_TURN
)
and
c
:
IsAttackable
()
return
c
:
IsReason
(
REASON_SUMMON
)
and
c
:
IsStatus
(
STATUS_SUMMON_TURN
)
and
Duel
.
IsAbleToEnterBP
()
and
c
:
IsAttackable
()
and
not
c
:
IsHasEffect
(
EFFECT_DIRECT_ATTACK
)
and
not
c
:
IsHasEffect
(
EFFECT_CANNOT_ATTACK
)
and
not
c
:
IsHasEffect
(
EFFECT_CANNOT_DIRECT_ATTACK
)
...
...
script/c120140012.lua
View file @
79c1d48f
...
...
@@ -14,7 +14,7 @@ function cm.initial_effect(c)
end
--Activate
function
cm
.
filter
(
c
)
return
c
:
IsFaceup
()
and
not
c
:
IsHasEffect
(
EFFECT_
PIERCE
)
return
c
:
IsFaceup
()
and
not
c
:
IsHasEffect
(
EFFECT_
CANNOT_ATTACK
)
end
function
cm
.
check
(
g
)
return
g
:
GetClassCount
(
Card
.
GetLevel
)
==
1
...
...
script/c120140013.lua
View file @
79c1d48f
...
...
@@ -37,9 +37,9 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
if
g
:
GetCount
()
>
0
then
Duel
.
HintSelection
(
g
)
Duel
.
SendtoHand
(
g
,
nil
,
REASON_EFFECT
)
end
local
sg
=
Duel
.
GetMatchingGroup
(
cm
.
posfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
if
sg
:
GetCount
()
>
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
1
))
then
Duel
.
ChangePosition
(
sg
,
POS_FACEUP_DEFENSE
)
end
end
end
\ No newline at end of file
script/c120140014.lua
View file @
79c1d48f
...
...
@@ -17,13 +17,12 @@ function cm.spfilter(c,e,tp)
return
c
:
IsType
(
TYPE_NORMAL
)
and
c
:
IsAttack
(
0
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
function
cm
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
t
c
=
Duel
.
GetAttackTarget
()
return
Duel
.
GetAttacker
():
IsControler
(
1
-
tp
)
and
tc
and
tc
:
IsFaceup
()
and
t
c
:
IsAttack
(
0
)
local
c
=
Duel
.
GetAttackTarget
()
return
Duel
.
GetAttacker
():
IsControler
(
1
-
tp
)
and
c
and
c
:
IsFaceup
()
and
c
:
IsAttack
(
0
)
end
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
tc
=
Duel
.
GetAttacker
()
if
chk
==
0
then
return
tc
:
IsAttackPos
()
and
tc
:
IsCanChangePosition
()
end
Duel
.
SetTargetCard
(
tc
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_POSITION
,
tc
,
1
,
0
,
0
)
end
function
cm
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
script/c120140018.lua
View file @
79c1d48f
...
...
@@ -2,7 +2,7 @@ local m=120140018
local
cm
=
_G
[
"c"
..
m
]
cm
.
name
=
"王家魔族·嘶吼歌手"
function
cm
.
initial_effect
(
c
)
--
To Hand
--
Handes
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
m
,
0
))
e1
:
SetCategory
(
CATEGORY_TOGRAVE
)
...
...
@@ -14,7 +14,7 @@ function cm.initial_effect(c)
e1
:
SetOperation
(
cm
.
operation
)
c
:
RegisterEffect
(
e1
)
end
--
To Hand
--
Handes
function
cm
.
confilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsLevelAbove
(
7
)
end
...
...
script/c120140040.lua
View file @
79c1d48f
...
...
@@ -17,8 +17,8 @@ function cm.costfilter(c)
return
c
:
IsRace
(
RACE_PSYCHO
)
and
c
:
IsAbleToDeckAsCost
()
end
function
cm
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
t
c
=
Duel
.
GetAttackTarget
()
return
Duel
.
GetAttacker
():
IsControler
(
1
-
tp
)
and
tc
and
tc
:
IsFaceup
()
and
t
c
:
IsRace
(
RACE_PSYCHO
)
local
c
=
Duel
.
GetAttackTarget
()
return
Duel
.
GetAttacker
():
IsControler
(
1
-
tp
)
and
c
and
c
:
IsFaceup
()
and
c
:
IsRace
(
RACE_PSYCHO
)
end
function
cm
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
costfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
end
...
...
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