Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts-888
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
Vee4
ygopro-scripts-888
Commits
f5d6b84d
Commit
f5d6b84d
authored
Dec 01, 2023
by
chronogenexx
Committed by
Chen Bill
Dec 01, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert & fix
parent
ed6b3ab9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
c14283055.lua
c14283055.lua
+9
-4
No files found.
c14283055.lua
View file @
f5d6b84d
...
...
@@ -65,19 +65,24 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetTargetRange
(
0xff
,
0xff
)
e1
:
SetTarget
(
aux
.
TargetBoolFunction
(
aux
.
NOT
(
Card
.
IsSetCard
),
0x196
,
0x19f
))
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
e1
:
SetValue
(
s
.
lim
)
e1
:
SetValue
(
s
.
fuslimit
)
Duel
.
RegisterEffect
(
e1
,
tp
)
local
e2
=
e1
:
Clone
()
e2
:
SetCode
(
EFFECT_CANNOT_BE_SYNCHRO_MATERIAL
)
e2
:
SetValue
(
s
.
sumlimit
)
Duel
.
RegisterEffect
(
e2
,
tp
)
local
e3
=
e
1
:
Clone
()
local
e3
=
e
2
:
Clone
()
e3
:
SetCode
(
EFFECT_CANNOT_BE_XYZ_MATERIAL
)
Duel
.
RegisterEffect
(
e3
,
tp
)
local
e4
=
e
1
:
Clone
()
local
e4
=
e
2
:
Clone
()
e4
:
SetCode
(
EFFECT_CANNOT_BE_LINK_MATERIAL
)
Duel
.
RegisterEffect
(
e4
,
tp
)
end
function
s
.
lim
(
e
,
c
)
function
s
.
fuslimit
(
e
,
c
,
sumtype
)
if
not
c
then
return
false
end
return
c
:
IsControler
(
e
:
GetHandlerPlayer
())
and
sumtype
==
SUMMON_TYPE_FUSION
end
function
s
.
sumlimit
(
e
,
c
)
if
not
c
then
return
false
end
return
c
:
IsControler
(
e
:
GetHandlerPlayer
())
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