Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
YGOPro-FESTiVAL
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
聖園ミカ
YGOPro-FESTiVAL
Commits
1a44d5f3
Commit
1a44d5f3
authored
May 15, 2025
by
聖園ミカ
🐟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
man!
parent
791b4c36
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
FESTiVAL.cdb
FESTiVAL.cdb
+0
-0
script/c51495004.lua
script/c51495004.lua
+18
-1
No files found.
FESTiVAL.cdb
View file @
1a44d5f3
No preview for this file type
script/c51495004.lua
View file @
1a44d5f3
...
...
@@ -3,8 +3,15 @@ local m=51495004
local
cm
=
_G
[
"c"
..
m
]
function
cm
.
initial_effect
(
c
)
--link summon
aux
.
AddLinkProcedure
(
c
,
cm
.
matfilter
,
1
,
1
)
aux
.
AddLinkProcedure
(
c
,
cm
.
matfilter
,
1
,
1
,
cm
.
spchk
)
c
:
EnableReviveLimit
()
--splimit
local
e0
=
Effect
.
CreateEffect
(
c
)
e0
:
SetType
(
EFFECT_TYPE_SINGLE
)
e0
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e0
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e0
:
SetValue
(
cm
.
splimit
)
c
:
RegisterEffect
(
e0
)
--to hand
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
m
,
0
))
...
...
@@ -28,6 +35,16 @@ function cm.initial_effect(c)
e2
:
SetOperation
(
cm
.
indop
)
c
:
RegisterEffect
(
e2
)
end
function
cm
.
cfilter
(
c
)
return
c
:
IsType
(
TYPE_FIELD
)
end
function
cm
.
spchk
(
g
,
lc
,
tp
)
return
Duel
.
IsExistingMatchingCard
(
cm
.
cfilter
,
tp
,
LOCATION_GRAVE
,
0
,
3
,
nil
)
end
function
cm
.
splimit
(
e
,
se
,
sp
,
st
,
pos
,
tp
)
return
not
e
:
GetHandler
():
IsLocation
(
LOCATION_EXTRA
)
or
Duel
.
IsExistingMatchingCard
(
cm
.
cfilter
,
sp
,
LOCATION_GRAVE
,
0
,
3
,
nil
)
end
function
cm
.
matfilter
(
c
)
return
c
:
IsLinkAttribute
(
ATTRIBUTE_EARTH
)
and
c
:
IsLinkRace
(
RACE_THUNDER
)
and
not
c
:
IsLinkType
(
TYPE_LINK
)
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