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
e11b683d
Commit
e11b683d
authored
Mar 17, 2023
by
未闻皂名
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2023/3/17 修复极大怪兽作为解放时的攻击力计算问题
parent
d180be66
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
23 deletions
+38
-23
script/RDFunction.lua
script/RDFunction.lua
+11
-0
script/RDMaximum.lua
script/RDMaximum.lua
+24
-16
script/c120238004.lua
script/c120238004.lua
+2
-6
script/c120238019.lua
script/c120238019.lua
+1
-1
No files found.
script/RDFunction.lua
View file @
e11b683d
...
...
@@ -136,3 +136,14 @@ function RushDuel.SendToDeckSort(target, sequence, reason, sort_player, target_p
end
return
og
,
ct
end
-- 获取被上级召唤解放时的基础攻击力
function
RushDuel
.
GetBaseAttackOnTribute
(
c
)
local
atk
if
RushDuel
.
IsMaximumMode
(
c
)
then
atk
=
c
.
maximum_attack
else
atk
=
c
:
GetTextAttack
()
end
return
math.max
(
0
,
atk
)
end
script/RDMaximum.lua
View file @
e11b683d
...
...
@@ -35,6 +35,14 @@ end
-- 添加极大召唤手续
function
RushDuel
.
AddMaximumProcedure
(
c
,
max_atk
,
left_code
,
right_code
)
if
c
:
IsStatus
(
STATUS_COPYING_EFFECT
)
then
return
end
-- 记录状态
if
c
.
maximum_attack
==
nil
then
local
mt
=
getmetatable
(
c
)
mt
.
maximum_attack
=
max_atk
end
-- 极大召唤 手续
RushDuel
.
AddHandSpecialSummonProcedure
(
c
,
aux
.
Stringid
(
120000000
,
0
),
RushDuel
.
MaximumSummonCondition
(
left_code
,
right_code
),
RushDuel
.
MaximumSummonTarget
(
left_code
,
right_code
),
RushDuel
.
MaximumSummonOperation
(
left_code
,
right_code
),
RushDuel
.
MaximumSummonValue
,
POS_FACEUP_ATTACK
)
...
...
@@ -48,23 +56,23 @@ function RushDuel.AddMaximumProcedure(c, max_atk, left_code, right_code)
e3
:
SetValue
(
max_atk
)
c
:
RegisterEffect
(
e3
)
-- 占用3个主要怪兽区域
local
e
8
=
Effect
.
CreateEffect
(
c
)
e
8
:
SetType
(
EFFECT_TYPE_FIELD
)
e
8
:
SetCode
(
EFFECT_MAX_MZONE
)
e
8
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e
8
:
SetRange
(
LOCATION_MZONE
)
e
8
:
SetTargetRange
(
1
,
0
)
e
8
:
SetCondition
(
RushDuel
.
MaximumMode
)
e
8
:
SetValue
(
1
)
c
:
RegisterEffect
(
e
8
)
local
e
4
=
Effect
.
CreateEffect
(
c
)
e
4
:
SetType
(
EFFECT_TYPE_FIELD
)
e
4
:
SetCode
(
EFFECT_MAX_MZONE
)
e
4
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e
4
:
SetRange
(
LOCATION_MZONE
)
e
4
:
SetTargetRange
(
1
,
0
)
e
4
:
SetCondition
(
RushDuel
.
MaximumMode
)
e
4
:
SetValue
(
1
)
c
:
RegisterEffect
(
e
4
)
-- 离开场上时, 所有部件一同离开
local
e
9
=
Effect
.
CreateEffect
(
c
)
e
9
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_CONTINUOUS
)
e
9
:
SetCode
(
EVENT_LEAVE_FIELD_P
)
e
9
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e
9
:
SetCondition
(
RushDuel
.
MaximumMode
)
e
9
:
SetOperation
(
RushDuel
.
MaximumLeaveOperation
)
c
:
RegisterEffect
(
e
9
)
local
e
5
=
Effect
.
CreateEffect
(
c
)
e
5
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_CONTINUOUS
)
e
5
:
SetCode
(
EVENT_LEAVE_FIELD_P
)
e
5
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e
5
:
SetCondition
(
RushDuel
.
MaximumMode
)
e
5
:
SetOperation
(
RushDuel
.
MaximumLeaveOperation
)
c
:
RegisterEffect
(
e
5
)
end
function
RushDuel
.
MaximumSummonFilter
(
c
,
e
,
tp
,
left_code
,
right_code
)
return
c
:
IsCode
(
left_code
,
right_code
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
,
POS_FACEUP
)
...
...
script/c120238004.lua
View file @
e11b683d
...
...
@@ -21,19 +21,15 @@ function cm.check(e,c)
local
atk
=
0
local
g
=
c
:
GetMaterial
()
if
g
:
GetCount
()
==
1
then
atk
=
cm
.
getatk
(
g
:
GetFirst
())
*
2
atk
=
RD
.
GetBaseAttackOnTribute
(
g
:
GetFirst
())
*
2
elseif
g
:
GetCount
()
==
2
then
atk
=
cm
.
getatk
(
g
:
GetFirst
())
+
cm
.
getatk
(
g
:
GetNext
())
atk
=
RD
.
GetBaseAttackOnTribute
(
g
:
GetFirst
())
+
RD
.
GetBaseAttackOnTribute
(
g
:
GetNext
())
end
if
atk
>
0
and
e
:
GetLabel
()
==
1
then
e
:
SetLabel
(
0
)
RD
.
AttachAtkDef
(
e
,
c
,
atk
,
0
,
RESET_EVENT
+
0xff0000
)
end
end
function
cm
.
getatk
(
c
)
local
atk
=
c
:
GetTextAttack
()
if
atk
>
0
then
return
atk
else
return
0
end
end
--Summon Only
function
cm
.
facechk
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
e
:
GetLabelObject
():
SetLabel
(
1
)
...
...
script/c120238019.lua
View file @
e11b683d
...
...
@@ -20,7 +20,7 @@ end
function
cm
.
check
(
e
,
c
)
local
tc
=
c
:
GetMaterial
():
GetFirst
()
local
atk
=
0
if
tc
then
atk
=
tc
:
GetTextAttack
(
)
*
2
end
if
tc
then
atk
=
RD
.
GetBaseAttackOnTribute
(
tc
)
*
2
end
if
atk
>
0
and
e
:
GetLabel
()
==
1
then
e
:
SetLabel
(
0
)
RD
.
AttachAtkDef
(
e
,
c
,
atk
,
0
,
RESET_EVENT
+
0xff0000
)
...
...
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