Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts-888
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
Vee4
ygopro-scripts-888
Commits
151894ec
Commit
151894ec
authored
May 15, 2022
by
mercury233
Committed by
GitHub
May 15, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 海晶乙女クラウンテイル
その後、自分の墓地に存在する「マリンセス」と名のついたリンクモンスターの数が変化したとしても、そのターンに自分が受けなくなる戦闘ダメージの数値は変わりません。
parent
ce55b415
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
c54569495.lua
c54569495.lua
+6
-5
No files found.
c54569495.lua
View file @
151894ec
...
...
@@ -68,18 +68,19 @@ function c54569495.damtg1(e,tp,eg,ep,ev,re,r,rp,chk)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c54569495
.
damfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
end
end
function
c54569495
.
damop1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
Duel
.
GetMatchingGroup
(
c54569495
.
damfilter
,
tp
,
LOCATION_GRAVE
,
0
,
nil
)
local
ct
=
g
:
GetSum
(
Card
.
GetLink
)
*
1000
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetCode
(
EFFECT_AVOID_BATTLE_DAMAGE
)
e1
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e1
:
SetTargetRange
(
1
,
0
)
e1
:
SetCondition
(
c54569495
.
damcon3
)
e1
:
SetLabel
(
ct
)
e1
:
SetCondition
(
c54569495
.
valcon
)
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
Duel
.
RegisterEffect
(
e1
,
tp
)
end
function
c54569495
.
damcon3
(
e
)
function
c54569495
.
valcon
(
e
)
local
tp
=
e
:
GetHandlerPlayer
()
local
g
=
Duel
.
GetMatchingGroup
(
c54569495
.
damfilter
,
tp
,
LOCATION_GRAVE
,
0
,
nil
)
local
ct
=
g
:
GetSum
(
Card
.
GetLink
)
*
1000
return
Duel
.
GetBattleDamage
(
tp
)
<=
ct
return
Duel
.
GetBattleDamage
(
tp
)
<=
e
:
GetLabel
()
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