Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-THC-cards
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
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
HiiragiGuardians
ygopro-THC-cards
Commits
d214e684
Commit
d214e684
authored
Mar 06, 2025
by
GuGu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update c86379540.lua
parent
788d66bf
Pipeline
#33487
passed with stage
in 7 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
4 deletions
+15
-4
script/c86379540.lua
script/c86379540.lua
+15
-4
No files found.
script/c86379540.lua
View file @
d214e684
...
@@ -12,6 +12,7 @@ function c86379540.initial_effect(c)
...
@@ -12,6 +12,7 @@ function c86379540.initial_effect(c)
e2
:
SetRange
(
LOCATION_EXTRA
)
e2
:
SetRange
(
LOCATION_EXTRA
)
e2
:
SetValue
(
SUMMON_TYPE_SYNCHRO
)
e2
:
SetValue
(
SUMMON_TYPE_SYNCHRO
)
e2
:
SetCondition
(
c86379540
.
sprcon2
)
e2
:
SetCondition
(
c86379540
.
sprcon2
)
e2
:
SetTarget
(
c86379540
.
sprtg2
)
e2
:
SetOperation
(
c86379540
.
sprop2
)
e2
:
SetOperation
(
c86379540
.
sprop2
)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
--dice
--dice
...
@@ -38,7 +39,7 @@ function c86379540.initial_effect(c)
...
@@ -38,7 +39,7 @@ function c86379540.initial_effect(c)
end
end
--
--
function
c86379540
.
sprfilter2
(
c
,
tp
,
sync
)
function
c86379540
.
sprfilter2
(
c
,
tp
,
sync
)
return
c
:
IsSetCard
(
0x3256
)
and
c
:
IsCanBeSynchroMaterial
(
sync
)
and
c
:
IsReleasable
()
and
c
:
IsLevel
(
4
)
and
not
c
:
IsCode
(
86379540
)
return
c
:
IsSetCard
(
0x3256
)
and
c
:
IsCanBeSynchroMaterial
(
sync
)
and
c
:
IsReleasable
()
and
c
:
IsLevel
(
4
)
and
c
:
IsFaceup
()
and
not
c
:
IsCode
(
86379540
)
and
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
c
,
sync
)
>
0
and
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
c
,
sync
)
>
0
end
end
function
c86379540
.
sprcon2
(
e
,
c
,
smat
,
mg
)
function
c86379540
.
sprcon2
(
e
,
c
,
smat
,
mg
)
...
@@ -46,11 +47,21 @@ function c86379540.sprcon2(e,c,smat,mg)
...
@@ -46,11 +47,21 @@ function c86379540.sprcon2(e,c,smat,mg)
local
tp
=
c
:
GetControler
()
local
tp
=
c
:
GetControler
()
return
Duel
.
IsExistingMatchingCard
(
c86379540
.
sprfilter2
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
,
tp
,
c
)
and
not
smat
and
not
mg
return
Duel
.
IsExistingMatchingCard
(
c86379540
.
sprfilter2
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
,
tp
,
c
)
and
not
smat
and
not
mg
end
end
function
c86379540
.
sprop2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
c
)
function
c86379540
.
sprtg2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
c
)
local
rg
=
Duel
.
GetMatchingGroup
(
c86379540
.
sprfilter2
,
tp
,
LOCATION_MZONE
,
0
,
nil
,
tp
,
c
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c86379540
.
sprfilter2
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
,
tp
,
c
)
local
sg
=
rg
:
SelectSubGroup
(
tp
,
aux
.
TRUE
,
true
,
1
,
1
,
tp
,
c
)
c
:
SetMaterial
(
g
)
if
sg
then
sg
:
KeepAlive
()
e
:
SetLabelObject
(
sg
)
return
true
else
return
false
end
end
function
c86379540
.
sprop2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
c
)
local
g
=
e
:
GetLabelObject
()
Duel
.
Release
(
g
,
REASON_MATERIAL
+
REASON_SYNCHRO
)
Duel
.
Release
(
g
,
REASON_MATERIAL
+
REASON_SYNCHRO
)
c
:
SetMaterial
(
g
)
g
:
DeleteGroup
()
end
end
--
--
function
c86379540
.
confilter
(
c
,
sc
)
function
c86379540
.
confilter
(
c
,
sc
)
...
...
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