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
2299854f
Commit
2299854f
authored
Nov 10, 2021
by
Tachibana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
watele
parent
10b6a28b
Pipeline
#6725
passed with stages
in 44 minutes and 42 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
20 deletions
+17
-20
expansions/script/c66915073.lua
expansions/script/c66915073.lua
+2
-1
expansions/script/c66915074.lua
expansions/script/c66915074.lua
+1
-0
expansions/script/c66915075.lua
expansions/script/c66915075.lua
+12
-15
expansions/script/c66915077.lua
expansions/script/c66915077.lua
+2
-1
expansions/script/c66915079.lua
expansions/script/c66915079.lua
+0
-3
No files found.
expansions/script/c66915073.lua
View file @
2299854f
...
...
@@ -2,7 +2,8 @@
local
m
=
66915073
local
cm
=
_G
[
"c"
..
m
]
function
cm
.
initial_effect
(
c
)
--xyz summon
aux
.
AddCodeList
(
c
,
66915070
)
--xyz summon
aux
.
AddXyzProcedure
(
c
,
cm
.
mfilter
,
4
,
2
,
cm
.
ovfilter
,
aux
.
Stringid
(
m
,
0
),
2
,
cm
.
xyzop
)
c
:
EnableReviveLimit
()
--code
...
...
expansions/script/c66915074.lua
View file @
2299854f
...
...
@@ -7,6 +7,7 @@ local m=66915074
local
cm
=
_G
[
"c"
..
m
]
Duel
.
LoadScript
(
"c16199990.lua"
)
function
cm
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
66915070
)
--S summon
cm
.
AddSynchroMixProcedure
(
c
,
nil
,
nil
,
nil
,
nil
,
1
,
99
,
nil
)
c
:
EnableReviveLimit
()
...
...
expansions/script/c66915075.lua
View file @
2299854f
...
...
@@ -2,16 +2,17 @@
local
m
=
66915075
local
cm
=
_G
[
"c"
..
m
]
function
cm
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
66915070
)
--fusion material
c
:
EnableReviveLimit
()
aux
.
AddFusionProcFunRep
(
c
,
cm
.
fsilter
,
2
,
true
)
--
material
limit
local
e
0
=
Effect
.
CreateEffect
(
c
)
e
0
:
SetType
(
EFFECT_TYPE_SINGLE
)
e
0
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e
0
:
SetCode
(
EFFECT_MATERIAL_LIMIT
)
e
0
:
SetValue
(
cm
.
mat
limit
)
c
:
RegisterEffect
(
e
0
)
--
sp
limit
local
e
1
=
Effect
.
CreateEffect
(
c
)
e
1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e
1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e
1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e
1
:
SetValue
(
cm
.
sp
limit
)
c
:
RegisterEffect
(
e
1
)
--code
aux
.
EnableChangeCode
(
c
,
m
-
5
,
LOCATION_MZONE
+
LOCATION_GRAVE
)
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
@@ -38,13 +39,9 @@ function cm.initial_effect(c)
e2
:
SetOperation
(
cm
.
desop
)
c
:
RegisterEffect
(
e2
)
end
function
cm
.
matlimit
(
e
,
c
,
fc
,
st
)
if
st
~=
SUMMON_TYPE_FUSION
then
return
true
end
if
c
:
IsType
(
TYPE_TRAP
+
TYPE_SPELL
)
then
return
c
:
IsControler
(
fc
:
GetControler
())
and
c
:
IsLocation
(
LOCATION_ONFIELD
)
else
return
true
end
function
cm
.
splimit
(
e
,
se
,
sp
,
st
)
if
not
StarLight_from_K
then
return
true
end
return
not
StarLight_from_K
.
Brightstarlight_Effect
[
se
]
end
function
cm
.
ffilter
(
c
)
return
c
:
IsFusionType
(
TYPE_FUSION
)
and
c
:
IsRace
(
RACE_FAIRY
)
...
...
@@ -53,7 +50,7 @@ function cm.ffilter2(c)
return
c
:
IsOriginalCodeRule
(
66915070
)
and
c
:
IsFusionType
(
TYPE_FUSION
)
end
function
cm
.
ffilter3
(
c
)
return
c
:
IsFusionType
(
TYPE_
TRAP
+
TYPE_SPELL
)
return
c
:
IsFusionType
(
TYPE_
NORMAL
)
end
function
cm
.
fsilter
(
c
,
fc
,
sub
,
mg
,
sg
)
if
not
sg
then
...
...
expansions/script/c66915077.lua
View file @
2299854f
...
...
@@ -3,6 +3,7 @@ local m=66915077
local
cm
=
_G
[
"c"
..
m
]
Duel
.
LoadScript
(
"c16199990.lua"
)
function
cm
.
initial_effect
(
c
)
aux
.
AddCodeList
(
c
,
66915070
)
c
:
EnableReviveLimit
()
--splimit
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
@@ -55,7 +56,7 @@ function cm.initial_effect(c)
end
function
cm
.
splimit
(
e
,
se
,
sp
,
st
)
if
not
StarLight_from_K
then
return
true
end
return
StarLight_from_K
.
Brightstarlight_Effect
[
se
]
return
not
StarLight_from_K
.
Brightstarlight_Effect
[
se
]
end
function
cm
.
condition
(
e
,
tp
)
return
Duel
.
IsExistingMatchingCard
(
nil
,
tp
,
LOCATION_SZONE
,
0
,
4
,
nil
)
...
...
expansions/script/c66915079.lua
View file @
2299854f
...
...
@@ -10,9 +10,6 @@ function c66915079.initial_effect(c)
e1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
+
CATEGORY_TOEXTRA
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetCondition
(
function
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
and
not
Duel
.
CheckPhaseActivity
()
end
)
e1
:
SetTarget
(
function
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
ft
=
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
nil
,
c
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c66915079
.
sp
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
e
,
tp
,
ft
)
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