Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-222DIY-cards
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
alstroemeria-silentlove
ygopro-222DIY-cards
Commits
5768fa34
Commit
5768fa34
authored
Nov 11, 2024
by
聖園ミカ
🐟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hop
parent
cf530e12
Pipeline
#31081
passed with stages
in 26 minutes and 48 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
8 deletions
+17
-8
expansions/script/c17243499.lua
expansions/script/c17243499.lua
+4
-2
expansions/script/c17243553.lua
expansions/script/c17243553.lua
+3
-3
expansions/script/c17243573.lua
expansions/script/c17243573.lua
+3
-1
expansions/script/c17243577.lua
expansions/script/c17243577.lua
+3
-1
expansions/script/c17243625.lua
expansions/script/c17243625.lua
+4
-1
No files found.
expansions/script/c17243499.lua
View file @
5768fa34
...
...
@@ -58,6 +58,7 @@ function cm.initial_effect(c)
end
cm
.
SetCard_SCP
=
true
cm
.
fusion_effect
=
true
function
cm
.
ctcfilter1
(
c
,
tp
)
return
c
:
IsFaceup
()
and
c
.
SetCard_SCP
and
c
:
IsControler
(
tp
)
...
...
@@ -137,7 +138,8 @@ function cm.spop(e,tp,eg,ep,ev,re,r,rp)
local
tc
=
g
:
GetFirst
()
if
tc
then
tc
:
SetMaterial
(
nil
)
Duel
.
SpecialSummon
(
tc
,
SUMMON_TYPE_FUSION
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
tc
:
CompleteProcedure
()
if
Duel
.
SpecialSummon
(
tc
,
SUMMON_TYPE_FUSION
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
~=
0
then
tc
:
CompleteProcedure
()
end
end
end
\ No newline at end of file
expansions/script/c17243553.lua
View file @
5768fa34
...
...
@@ -125,12 +125,12 @@ function cm.gytg(e,tp,eg,ep,ev,re,r,rp,chk)
if
chk
==
0
then
return
#
sg
>
0
end
Duel
.
SetTargetCard
(
sg
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOGRAVE
,
sg
,
sg
:
GetCount
(),
0
,
0
)
Duel
.
SetChainLimit
(
cm
.
limit
(
sg
))
local
fg
=
sg
:
Filter
(
Card
.
IsControler
,
nil
,
1
-
tp
)
Duel
.
SetChainLimit
(
cm
.
limit
(
fg
))
end
function
cm
.
limit
(
g
)
return
function
(
e
,
ep
,
tp
)
local
sg
=
g
:
Filter
(
Card
.
IsControler
,
nil
,
1
-
tp
)
return
not
sg
:
IsContains
(
e
:
GetHandler
())
return
not
g
:
IsContains
(
e
:
GetHandler
())
end
end
function
cm
.
gyop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
expansions/script/c17243573.lua
View file @
5768fa34
...
...
@@ -42,6 +42,8 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
local
sc
=
g
:
GetFirst
()
if
not
sc
then
return
end
sc
:
SetMaterial
(
nil
)
Duel
.
SpecialSummon
(
sc
,
SUMMON_TYPE_FUSION
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
if
Duel
.
SpecialSummon
(
sc
,
SUMMON_TYPE_FUSION
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
~=
0
then
sc
:
CompleteProcedure
()
end
end
end
\ No newline at end of file
expansions/script/c17243577.lua
View file @
5768fa34
...
...
@@ -90,6 +90,8 @@ function cm.fsop(e,tp,eg,ep,ev,re,r,rp)
local
sc
=
g
:
GetFirst
()
if
not
sc
then
return
end
sc
:
SetMaterial
(
nil
)
Duel
.
SpecialSummon
(
sc
,
SUMMON_TYPE_FUSION
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
if
Duel
.
SpecialSummon
(
sc
,
SUMMON_TYPE_FUSION
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
~=
0
then
sc
:
CompleteProcedure
()
end
end
end
\ No newline at end of file
expansions/script/c17243625.lua
View file @
5768fa34
...
...
@@ -78,8 +78,11 @@ function cm.fsop(e,tp,eg,ep,ev,re,r,rp)
local
sc
=
sg2
:
GetFirst
()
while
sc
do
sc
:
SetMaterial
(
nil
)
if
Duel
.
SpecialSummonStep
(
sc
,
SUMMON_TYPE_FUSION
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
then
sc
:
CompleteProcedure
()
end
sc
=
sg2
:
GetNext
()
end
Duel
.
SpecialSummon
(
sg2
,
SUMMON_TYPE_FUSION
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummon
Complete
(
)
end
end
\ No newline at end of file
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