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
e7176395
Commit
e7176395
authored
Sep 29, 2024
by
聖園ミカ
🐟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
byd
parent
9dc5d768
Pipeline
#30113
passed with stages
in 32 minutes and 7 seconds
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
17 deletions
+24
-17
expansions/script/c12847088.lua
expansions/script/c12847088.lua
+7
-0
expansions/script/c16161010.lua
expansions/script/c16161010.lua
+1
-1
expansions/script/c16170000.lua
expansions/script/c16170000.lua
+1
-1
expansions/script/c16170003.lua
expansions/script/c16170003.lua
+1
-1
expansions/script/c30900632.lua
expansions/script/c30900632.lua
+14
-14
No files found.
expansions/script/c12847088.lua
0 → 100644
View file @
e7176395
--AveMujica Oblivionis
local
m
=
12847088
local
cm
=
_G
[
"c"
..
m
]
Duel
.
LoadScript
(
"c81000000.lua"
)
function
cm
.
initial_effect
(
c
)
end
expansions/script/c16161010.lua
View file @
e7176395
...
...
@@ -19,7 +19,7 @@ function c16161010.initial_effect(c)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_CANNOT_SPECIAL_SUMMON
)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_CANNOT_NEGATE
)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
+
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetRange
(
LOCATION_PZONE
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetTarget
(
c16161010
.
splimit
)
...
...
expansions/script/c16170000.lua
View file @
e7176395
...
...
@@ -5,7 +5,7 @@ function c16170000.initial_effect(c)
e1
:
SetCategory
(
CATEGORY_REMOVE
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_INACTIVATE
+
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_CANNOT_NEGATE
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_INACTIVATE
+
EFFECT_FLAG_CANNOT_DISABLE
)
e1
:
SetTarget
(
c16170000
.
target
)
e1
:
SetOperation
(
c16170000
.
activate
)
c
:
RegisterEffect
(
e1
)
...
...
expansions/script/c16170003.lua
View file @
e7176395
...
...
@@ -6,7 +6,7 @@ function cm.initial_effect(c)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
+
EFFECT_FLAG_CANNOT_INACTIVATE
+
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_CANNOT_NEGATE
)
e1
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
+
EFFECT_FLAG_CANNOT_INACTIVATE
+
EFFECT_FLAG_CANNOT_DISABLE
)
e1
:
SetTarget
(
cm
.
target
)
e1
:
SetOperation
(
cm
.
activate
)
c
:
RegisterEffect
(
e1
)
...
...
expansions/script/c30900632.lua
View file @
e7176395
...
...
@@ -55,8 +55,8 @@ local e2=Effect.CreateEffect(c)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e2
:
SetCode
(
EFFECT_CANNOT_SUMMON
)
e2
:
SetTargetRange
(
1
,
0
)
e2
:
SetLabel
(
s
.
getsummoncount
(
tp
))
e2
:
SetTarget
(
s
.
splimit
)
e2
:
SetLabel
(
cm
.
getsummoncount
(
tp
))
e2
:
SetTarget
(
cm
.
splimit
)
e2
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
Duel
.
RegisterEffect
(
e2
,
tp
)
local
e3
=
e2
:
Clone
()
...
...
@@ -67,33 +67,33 @@ local e2=Effect.CreateEffect(c)
e6
:
SetCode
(
EFFECT_LEFT_SPSUMMON_COUNT
)
e6
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e6
:
SetTargetRange
(
1
,
0
)
e6
:
SetLabel
(
s
.
getsummoncount
(
tp
))
e6
:
SetValue
(
s
.
countval
)
e6
:
SetLabel
(
cm
.
getsummoncount
(
tp
))
e6
:
SetValue
(
cm
.
countval
)
e6
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
Duel
.
RegisterEffect
(
e6
,
tp
)
end
function
s
.
getsummoncount
(
tp
)
function
cm
.
getsummoncount
(
tp
)
return
Duel
.
GetActivityCount
(
tp
,
ACTIVITY_SUMMON
)
+
Duel
.
GetActivityCount
(
tp
,
ACTIVITY_SPSUMMON
)
end
function
s
.
rmfilter
(
c
,
fid
)
function
cm
.
rmfilter
(
c
,
fid
)
return
c
:
GetFlagEffectLabel
(
id
)
==
fid
end
function
s
.
rmcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
cm
.
rmcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
e
:
GetLabelObject
()
if
not
g
:
IsExists
(
s
.
rmfilter
,
1
,
nil
,
e
:
GetLabel
())
then
if
not
g
:
IsExists
(
cm
.
rmfilter
,
1
,
nil
,
e
:
GetLabel
())
then
g
:
DeleteGroup
()
e
:
Reset
()
return
false
else
return
true
end
end
function
s
.
rmop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
cm
.
rmop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
e
:
GetLabelObject
()
local
tg
=
g
:
Filter
(
s
.
rmfilter
,
nil
,
e
:
GetLabel
())
local
tg
=
g
:
Filter
(
cm
.
rmfilter
,
nil
,
e
:
GetLabel
())
Duel
.
Remove
(
tg
,
POS_FACEUP
,
REASON_EFFECT
)
end
function
s
.
splimit
(
e
,
c
,
sump
,
sumtype
,
sumpos
,
targetp
,
se
)
return
s
.
getsummoncount
(
sump
)
>
e
:
GetLabel
()
function
cm
.
splimit
(
e
,
c
,
sump
,
sumtype
,
sumpos
,
targetp
,
se
)
return
cm
.
getsummoncount
(
sump
)
>
e
:
GetLabel
()
end
function
s
.
countval
(
e
,
re
,
tp
)
if
s
.
getsummoncount
(
tp
)
>
e
:
GetLabel
()
then
return
0
else
return
1
end
function
cm
.
countval
(
e
,
re
,
tp
)
if
cm
.
getsummoncount
(
tp
)
>
e
:
GetLabel
()
then
return
0
else
return
1
end
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