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
2b0a3558
Commit
2b0a3558
authored
May 31, 2025
by
Vury Leo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use named parameter style
parent
ab526506
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
201 additions
and
72 deletions
+201
-72
script/c12450071.lua
script/c12450071.lua
+1
-1
script/c37630732.lua
script/c37630732.lua
+4
-1
script/c58199906.lua
script/c58199906.lua
+1
-1
script/c87931906.lua
script/c87931906.lua
+6
-1
script/utility.lua
script/utility.lua
+189
-68
No files found.
script/c12450071.lua
View file @
2b0a3558
...
...
@@ -5,7 +5,7 @@ function s.initial_effect(c)
c
:
EnableReviveLimit
()
aux
.
AddLinkProcedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
IsLinkType
,
TYPE_EFFECT
),
2
)
--fusion
local
e1
=
FusionSpell
.
CreateSummonEffect
(
c
,
nil
,
nil
,
LOCATION_ONFIELD
)
local
e1
=
FusionSpell
.
CreateSummonEffect
(
c
,
{
pre_select_mat_location
=
LOCATION_ONFIELD
}
)
e1
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e1
:
SetType
(
EFFECT_TYPE_IGNITION
)
e1
:
SetRange
(
LOCATION_MZONE
)
...
...
script/c37630732.lua
View file @
2b0a3558
...
...
@@ -2,7 +2,10 @@
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
--Activate
FusionSpell
.
RegisterSummonEffect
(
c
,
s
.
fusfilter
,
nil
,
nil
,
nil
,
nil
,
nil
,
nil
,
nil
,
nil
,
nil
,
s
.
stage_x_operation
)
FusionSpell
.
RegisterSummonEffect
(
c
,{
fusfilter
=
s
.
fusfilter
,
stage_x_operation
=
s
.
stage_x_operation
})
end
---@param c Card
...
...
script/c58199906.lua
View file @
2b0a3558
...
...
@@ -23,6 +23,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e1
:
SetTargetRange
(
1
,
0
)
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
e1
:
SetCountLimit
(
1
)
e1
:
SetTarget
(
s
.
chain_target
)
e1
:
SetOperation
(
s
.
chain_operation
)
e1
:
SetValue
(
aux
.
FilterBoolFunction
(
Card
.
IsRace
,
RACE_MACHINE
))
...
...
@@ -40,5 +41,4 @@ function s.chain_operation(e,te,tp,tc,mat,sumtype,sumpos)
Duel
.
Remove
(
mat
,
POS_FACEUP
,
REASON_EFFECT
+
REASON_MATERIAL
+
REASON_FUSION
)
Duel
.
BreakEffect
()
Duel
.
SpecialSummonStep
(
tc
,
sumtype
,
tp
,
tp
,
false
,
false
,
sumpos
)
e
:
Reset
()
end
\ No newline at end of file
script/c87931906.lua
View file @
2b0a3558
...
...
@@ -2,7 +2,12 @@
local
s
,
id
=
GetID
()
function
s
.
initial_effect
(
c
)
--Activate
local
e1
=
FusionSpell
.
CreateSummonEffect
(
c
,
s
.
fusfilter
,
nil
,
s
.
pre_select_mat_location
,
nil
,
nil
,
s
.
fcheck
,
s
.
gcheck
)
local
e1
=
FusionSpell
.
CreateSummonEffect
(
c
,{
fusfilter
=
s
.
fusfilter
,
pre_select_mat_location
=
s
.
pre_select_mat_location
,
additional_fcheck
=
s
.
fcheck
,
additional_gcheck
=
s
.
gcheck
})
e1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
+
CATEGORY_FUSION_SUMMON
+
CATEGORY_DECKDES
)
e1
:
SetCountLimit
(
1
,
id
+
EFFECT_COUNT_CODE_OATH
)
c
:
RegisterEffect
(
e1
)
...
...
script/utility.lua
View file @
2b0a3558
This diff is collapsed.
Click to expand it.
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