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
08b913a5
Commit
08b913a5
authored
Mar 08, 2026
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix
parent
6efa413c
Pipeline
#43598
passed with stages
in 3 minutes and 40 seconds
Changes
8
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
40 additions
and
32 deletions
+40
-32
LOCR.cdb
LOCR.cdb
+0
-0
script/c100200288.lua
script/c100200288.lua
+1
-1
script/c100257019.lua
script/c100257019.lua
+1
-1
script/c100257021.lua
script/c100257021.lua
+1
-1
script/c100257026.lua
script/c100257026.lua
+15
-12
script/c100257027.lua
script/c100257027.lua
+10
-9
script/c100257028.lua
script/c100257028.lua
+11
-7
script/c100260001.lua
script/c100260001.lua
+1
-1
No files found.
LOCR.cdb
View file @
08b913a5
No preview for this file type
script/c100200288.lua
View file @
08b913a5
...
...
@@ -110,4 +110,4 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
SpecialSummon
(
g
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
end
end
\ No newline at end of file
end
script/c100257019.lua
View file @
08b913a5
...
...
@@ -88,4 +88,4 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp)
c
:
RegisterEffect
(
e1
)
end
end
end
\ No newline at end of file
end
script/c100257021.lua
View file @
08b913a5
...
...
@@ -44,4 +44,4 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
end
function
s
.
sumlimit
(
e
,
c
)
return
c
:
IsCode
(
e
:
GetLabel
())
end
\ No newline at end of file
end
script/c100257026.lua
View file @
08b913a5
...
...
@@ -32,17 +32,17 @@ function s.initial_effect(c)
e4
:
SetOperation
(
s
.
sumsuc
)
c
:
RegisterEffect
(
e4
)
--remove
local
e
4
=
Effect
.
CreateEffect
(
c
)
e
4
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e
4
:
SetCategory
(
CATEGORY_REMOVE
+
CATEGORY_DAMAGE
)
e
4
:
SetType
(
EFFECT_TYPE_IGNITION
)
e
4
:
SetRange
(
LOCATION_MZONE
)
e
4
:
SetCountLimit
(
1
,
id
)
e
4
:
SetCondition
(
s
.
rmcon
)
e
4
:
SetCost
(
s
.
rmcost
)
e
4
:
SetTarget
(
s
.
rmtg
)
e
4
:
SetOperation
(
s
.
rmop
)
c
:
RegisterEffect
(
e
4
)
local
e
5
=
Effect
.
CreateEffect
(
c
)
e
5
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e
5
:
SetCategory
(
CATEGORY_REMOVE
+
CATEGORY_DAMAGE
)
e
5
:
SetType
(
EFFECT_TYPE_IGNITION
)
e
5
:
SetRange
(
LOCATION_MZONE
)
e
5
:
SetCountLimit
(
1
,
id
)
e
5
:
SetCondition
(
s
.
rmcon
)
e
5
:
SetCost
(
s
.
rmcost
)
e
5
:
SetTarget
(
s
.
rmtg
)
e
5
:
SetOperation
(
s
.
rmop
)
c
:
RegisterEffect
(
e
5
)
end
function
s
.
spcostfilter
(
c
)
return
c
:
IsAbleToRemoveAsCost
()
and
c
:
IsAttribute
(
ATTRIBUTE_LIGHT
+
ATTRIBUTE_DARK
)
...
...
@@ -90,11 +90,14 @@ function s.rmtg(e,tp,eg,ep,ev,re,r,rp,chk)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsAbleToRemove
,
tp
,
0
,
LOCATION_ONFIELD
+
LOCATION_GRAVE
,
1
,
nil
)
end
local
g
=
Duel
.
GetMatchingGroup
(
Card
.
IsAbleToRemove
,
tp
,
0
,
LOCATION_ONFIELD
+
LOCATION_GRAVE
,
nil
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_REMOVE
,
g
,
g
:
GetCount
(),
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DAMAGE
,
nil
,
0
,
1
-
tp
,
g
:
GetCount
()
*
500
)
end
function
s
.
rmop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ckg
=
Duel
.
GetFieldGroup
(
tp
,
0
,
LOCATION_GRAVE
)
if
aux
.
NecroValleyNegateCheck
(
ckg
)
then
return
end
local
g
=
Duel
.
GetMatchingGroup
(
Card
.
IsAbleToRemove
,
tp
,
0
,
LOCATION_ONFIELD
+
LOCATION_GRAVE
,
nil
)
if
g
:
GetCount
()
>
0
and
Duel
.
Remove
(
g
,
POS_FACEUP
,
REASON_EFFECT
)
~=
0
then
local
dam
=
Duel
.
GetOperatedGroup
():
GetCount
()
Duel
.
Damage
(
1
-
tp
,
dam
*
500
,
REASON_EFFECT
)
end
end
\ No newline at end of file
end
script/c100257027.lua
View file @
08b913a5
--HRUM
-
アルティメット・フォース
--HRUM
-
アルティメット・フォース
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
--Activate
...
...
@@ -15,7 +15,7 @@ function s.initial_effect(c)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e2
:
SetCategory
(
CATEGORY_DESTROY
)
e2
:
SetType
(
EFFECT_TYPE_XMATERIAL
+
EFFECT_TYPE_QUICK_
O
)
e2
:
SetType
(
EFFECT_TYPE_XMATERIAL
+
EFFECT_TYPE_QUICK_
F
)
e2
:
SetCode
(
EVENT_CHAINING
)
e2
:
SetCountLimit
(
1
,
EFFECT_COUNT_CODE_CHAIN
)
e2
:
SetCondition
(
s
.
descon
)
...
...
@@ -40,9 +40,10 @@ function s.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
1
,
tp
,
LOCATION_EXTRA
)
end
function
s
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
tc
=
Duel
.
GetFirstTarget
()
if
not
aux
.
MustMaterialCheck
(
tc
,
tp
,
EFFECT_MUST_BE_XMATERIAL
)
then
return
end
if
tc
:
IsFacedown
()
or
not
tc
:
IsRelateTo
Effect
(
e
)
or
tc
:
IsControler
(
1
-
tp
)
or
tc
:
IsImmuneToEffect
(
e
)
then
return
end
if
tc
:
IsFacedown
()
or
not
tc
:
IsRelateTo
Chain
(
)
or
tc
:
IsControler
(
1
-
tp
)
or
tc
:
IsImmuneToEffect
(
e
)
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
filter2
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
,
e
,
tp
,
tc
)
local
sc
=
g
:
GetFirst
()
...
...
@@ -62,18 +63,18 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
end
end
function
s
.
descon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ph
=
Duel
.
GetCurrentPhase
()
return
c
:
IsSetCard
(
0x2048
)
and
not
c
:
IsStatus
(
STATUS_BATTLE_DESTROYED
)
and
ep
~=
tp
and
re
:
IsActiveType
(
TYPE_MONSTER
)
and
ph
>
PHASE_MAIN1
and
ph
<
PHASE_MAIN2
local
c
=
e
:
GetHandler
()
return
Duel
.
IsBattlePhase
()
and
c
:
IsSetCard
(
0x2048
)
and
not
c
:
IsStatus
(
STATUS_BATTLE_DESTROYED
)
and
ep
~=
tp
and
re
:
IsActiveType
(
TYPE_MONSTER
)
end
function
s
.
destg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
aux
.
TRUE
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
end
if
chk
==
0
then
return
true
end
Duel
.
Hint
(
HINT_OPSELECTED
,
1
-
tp
,
e
:
GetDescription
())
local
g
=
Duel
.
GetMatchingGroup
(
aux
.
TRUE
,
tp
,
0
,
LOCATION_MZONE
,
nil
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
g
,
g
:
GetCount
(),
0
,
0
)
end
function
s
.
desop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
tc
=
Duel
.
GetFirstTarget
()
if
c
:
IsRelateToChain
()
then
local
og
=
c
:
GetOverlayGroup
()
if
og
:
GetCount
()
==
0
then
return
end
...
...
@@ -81,4 +82,4 @@ function s.desop(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
GetMatchingGroup
(
aux
.
TRUE
,
tp
,
0
,
LOCATION_MZONE
,
nil
)
Duel
.
Destroy
(
g
,
REASON_EFFECT
)
end
end
\ No newline at end of file
end
script/c100257028.lua
View file @
08b913a5
...
...
@@ -16,7 +16,6 @@ function s.initial_effect(c)
c
:
RegisterEffect
(
e1
)
local
e2
=
e1
:
Clone
()
e2
:
SetCode
(
EVENT_DAMAGE_STEP_END
)
e2
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e2
:
SetCondition
(
s
.
descon2
)
c
:
RegisterEffect
(
e2
)
--attribute
...
...
@@ -57,13 +56,17 @@ function s.destg(e,tp,eg,ep,ev,re,r,rp,chk)
if
g
:
GetCount
()
>
0
then
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
g
,
g
:
GetCount
(),
0
,
0
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DAMAGE
,
nil
,
0
,
1
-
tp
,
g
:
FilterCount
(
Card
.
IsType
,
nil
,
TYPE_LINK
)
*
300
)
local
dam
=
Duel
.
GetMatchingGroupCount
(
Card
.
IsType
,
tp
,
LOCATION_GRAVE
,
0
,
nil
,
TYPE_LINK
)
*
300
if
dam
>
0
then
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DAMAGE
,
nil
,
0
,
1
-
tp
,
dam
)
end
end
function
s
.
desop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
Duel
.
GetMatchingGroup
(
aux
.
TRUE
,
tp
,
0
,
LOCATION_MZONE
,
nil
)
if
Duel
.
Destroy
(
g
,
REASON_EFFECT
)
~=
0
then
local
ct
=
Duel
.
GetMatchingGroupCount
(
Card
.
IsType
,
tp
,
LOCATION_GRAVE
,
LOCATION_GRAVE
,
nil
,
TYPE_LINK
)
local
ct
=
Duel
.
GetMatchingGroupCount
(
Card
.
IsType
,
tp
,
LOCATION_GRAVE
,
0
,
nil
,
TYPE_LINK
)
if
ct
>
0
then
Duel
.
BreakEffect
()
Duel
.
Damage
(
1
-
tp
,
ct
*
300
,
REASON_EFFECT
)
end
end
...
...
@@ -74,15 +77,16 @@ function s.immval(e,te)
end
function
s
.
reptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
c
=
e
:
GetHandler
()
local
atk
=
c
:
GetAttack
()
if
chk
==
0
then
return
c
:
IsReason
(
REASON_BATTLE
+
REASON_EFFECT
)
and
not
c
:
IsReason
(
REASON_REPLACE
)
and
c
:
IsAttackAbove
(
1000
)
and
not
c
:
IsHasEffect
(
EFFECT_REVERSE_UPDATE
)
end
and
atk
>=
1000
end
if
Duel
.
SelectEffectYesNo
(
tp
,
e
:
GetHandler
(),
96
)
then
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_
UPDATE_ATTACK
)
e1
:
SetCode
(
EFFECT_
SET_ATTACK_FINAL
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
+
RESET_DISABLE
)
e1
:
SetValue
(
-
1000
)
e1
:
SetValue
(
atk
-
1000
)
c
:
RegisterEffect
(
e1
)
return
true
else
return
false
end
end
\ No newline at end of file
end
script/c100260001.lua
View file @
08b913a5
...
...
@@ -120,4 +120,4 @@ function s.tdop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
SpecialSummon
(
g
,
0
,
tp
,
tp
,
true
,
false
,
POS_FACEUP
)
end
end
end
\ No newline at end of file
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