Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
P
pre-release-database-cdb
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
MyCard
pre-release-database-cdb
Commits
5fdfdaa1
Commit
5fdfdaa1
authored
Nov 01, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ヘル・ダイブ・ボンバー
parent
fbb3d772
Pipeline
#41387
passed with stages
in 2 minutes and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
script/c100251003.lua
script/c100251003.lua
+14
-2
No files found.
script/c100251003.lua
View file @
5fdfdaa1
...
...
@@ -36,13 +36,25 @@ function s.detg(e,tp,eg,ep,ev,re,r,rp,chk)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsFaceup
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
1
,
nil
)
end
local
sg
=
Duel
.
GetMatchingGroup
(
Card
.
IsFaceup
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
nil
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
sg
,
sg
:
GetCount
(),
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DAMAGE
,
nil
,
0
,
1
-
tp
,
nil
)
local
dmg
=
sg
:
GetSum
(
Card
.
GetOriginalLevel
)
*
200
if
dmg
>
0
then
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DAMAGE
,
nil
,
0
,
1
-
tp
,
dmg
)
end
end
function
s
.
lvcalfilter
(
c
)
if
c
:
GetOriginalType
()
&
TYPE_MONSTER
~=
0
then
return
true
end
local
se
=
c
:
GetSpecialSummonInfo
(
SUMMON_INFO_REASON_EFFECT
)
return
se
and
se
:
GetHandler
()
==
c
end
function
s
.
gcheck
(
c
,
cg
)
return
cg
:
IsContains
(
c
)
end
function
s
.
deop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
sg
=
Duel
.
GetMatchingGroup
(
Card
.
IsFaceup
,
tp
,
LOCATION_MZONE
,
LOCATION_MZONE
,
nil
)
if
sg
:
GetCount
()
>
0
then
local
cg
=
sg
:
Filter
(
s
.
lvcalfilter
,
nil
)
Duel
.
Destroy
(
sg
,
REASON_EFFECT
)
local
ct
=
Duel
.
GetOperatedGroup
():
GetSum
(
Card
.
GetOriginalLevel
)
local
ct
=
Duel
.
GetOperatedGroup
():
Filter
(
s
.
gcheck
,
nil
,
cg
):
GetSum
(
Card
.
GetOriginalLevel
)
Duel
.
Damage
(
1
-
tp
,
ct
*
200
,
REASON_EFFECT
)
end
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