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
c9a79d72
Commit
c9a79d72
authored
Nov 02, 2024
by
聖園ミカ
🐟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
54188
parent
da23423e
Pipeline
#30900
failed with stages
in 21 minutes and 13 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
14 deletions
+12
-14
expansions/script/c52700145.lua
expansions/script/c52700145.lua
+1
-1
expansions/script/c52700583.lua
expansions/script/c52700583.lua
+1
-1
expansions/script/c52700607.lua
expansions/script/c52700607.lua
+4
-5
expansions/script/c52700610.lua
expansions/script/c52700610.lua
+4
-5
expansions/script/c52700622.lua
expansions/script/c52700622.lua
+1
-1
expansions/script/c52700631.lua
expansions/script/c52700631.lua
+1
-1
No files found.
expansions/script/c52700145.lua
View file @
c9a79d72
...
...
@@ -41,7 +41,7 @@ function s.initial_effect(c)
e4
:
SetCode
(
EVENT_FREE_CHAIN
)
e4
:
SetRange
(
LOCATION_MZONE
)
e4
:
SetCountLimit
(
1
,
id
+
1
)
e4
:
SetCondition
(
s
.
recon
)
--
e4:SetCondition(s.recon)
e4
:
SetTarget
(
s
.
retg
)
e4
:
SetOperation
(
s
.
reop
)
c
:
RegisterEffect
(
e4
)
...
...
expansions/script/c52700583.lua
View file @
c9a79d72
...
...
@@ -104,7 +104,7 @@ function s.imcon(e)
return
c
:
GetOverlayCount
()
>
0
end
function
s
.
efilter
(
e
,
re
)
return
e
:
GetHandlerPlayer
()
~=
re
:
GetOwnerPlayer
()
and
re
:
IsActivated
()
return
e
:
GetHandlerPlayer
()
~=
re
:
GetOwnerPlayer
()
end
...
...
expansions/script/c52700607.lua
View file @
c9a79d72
...
...
@@ -63,7 +63,7 @@ function s.specialsum(c)
e2
:
SetDescription
(
2
)
e2
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e2
:
SetCode
(
EVENT_
MOVE
)
e2
:
SetCode
(
EVENT_
DETACH_MATERIAL
)
e2
:
SetRange
(
LOCATION_HAND
)
e2
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e2
:
SetCountLimit
(
1
,
id
)
...
...
@@ -72,12 +72,11 @@ function s.specialsum(c)
e2
:
SetOperation
(
s
.
spop
)
c
:
RegisterEffect
(
e2
)
end
function
s
.
cfilter
(
c
)
return
c
:
IsPreviousLocation
(
LOCATION_OVERLAY
)
and
not
c
:
IsReason
(
REASON_RULE
)
--and not c:IsLocation(LOCATION_EXTRA+LOCATION_DECK+LOCATION_HAND)
function
s
.
cfilter
(
c
,
tp
)
return
c
:
IsLocation
(
LOCATION_MZONE
)
and
c
:
IsControler
(
tp
)
end
function
s
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
s
.
cfilter
,
1
,
nil
)
return
eg
:
IsExists
(
s
.
cfilter
,
1
,
nil
,
tp
)
end
function
s
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
...
...
expansions/script/c52700610.lua
View file @
c9a79d72
...
...
@@ -63,7 +63,7 @@ function s.specialsum(c)
e2
:
SetDescription
(
2
)
e2
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e2
:
SetCode
(
EVENT_
MOVE
)
e2
:
SetCode
(
EVENT_
DETACH_MATERIAL
)
e2
:
SetRange
(
LOCATION_HAND
)
e2
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e2
:
SetCountLimit
(
1
,
id
)
...
...
@@ -72,12 +72,11 @@ function s.specialsum(c)
e2
:
SetOperation
(
s
.
spop
)
c
:
RegisterEffect
(
e2
)
end
function
s
.
cfilter
(
c
)
return
c
:
IsPreviousLocation
(
LOCATION_OVERLAY
)
and
not
c
:
IsReason
(
REASON_RULE
)
--and not c:IsLocation(LOCATION_EXTRA+LOCATION_DECK+LOCATION_HAND)
function
s
.
cfilter
(
c
,
tp
)
return
c
:
IsLocation
(
LOCATION_MZONE
)
and
c
:
IsControler
(
tp
)
end
function
s
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
s
.
cfilter
,
1
,
nil
)
return
eg
:
IsExists
(
s
.
cfilter
,
1
,
nil
,
tp
)
end
function
s
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
...
...
expansions/script/c52700622.lua
View file @
c9a79d72
...
...
@@ -66,7 +66,7 @@ function s.specialsum(c)
e1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetCountLimit
(
1
,
id
+
114
)
e1
:
SetCountLimit
(
1
,
id
+
EFFECT_COUNT_CODE_OATH
)
e1
:
SetCondition
(
s
.
condition
)
e1
:
SetTarget
(
s
.
target
)
e1
:
SetOperation
(
s
.
activate
)
...
...
expansions/script/c52700631.lua
View file @
c9a79d72
...
...
@@ -35,7 +35,7 @@ function s.tgfilter(e,c)
return
c
:
IsSetCard
(
0x5528
)
end
function
s
.
xyzfilter
(
c
)
return
c
:
IsSetCard
(
0x5528
)
and
c
:
IsFaceup
()
return
c
:
IsSetCard
(
0x5528
)
and
c
:
IsFaceup
()
and
c
:
IsType
(
TYPE_XYZ
)
end
function
s
.
ofilter
(
c
,
tp
)
return
c
:
IsCanOverlay
()
and
Duel
.
IsExistingMatchingCard
(
s
.
xyzfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
c
)
...
...
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