Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts
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
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
MyCard
ygopro-scripts
Commits
a314224f
Commit
a314224f
authored
Apr 30, 2019
by
nekrozar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
missing
parent
baf819cc
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
122 deletions
+0
-122
c48156348.lua
c48156348.lua
+0
-37
c53315891.lua
c53315891.lua
+0
-9
c56655675.lua
c56655675.lua
+0
-10
c73285669.lua
c73285669.lua
+0
-9
c80532587.lua
c80532587.lua
+0
-37
c90957527.lua
c90957527.lua
+0
-10
c95793022.lua
c95793022.lua
+0
-10
No files found.
c48156348.lua
View file @
a314224f
...
@@ -11,15 +11,6 @@ function c48156348.initial_effect(c)
...
@@ -11,15 +11,6 @@ function c48156348.initial_effect(c)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetValue
(
c48156348
.
splimit
)
e1
:
SetValue
(
c48156348
.
splimit
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
--special summon rule
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e2
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetRange
(
LOCATION_EXTRA
)
e2
:
SetCondition
(
c48156348
.
sprcon
)
e2
:
SetOperation
(
c48156348
.
sprop
)
c
:
RegisterEffect
(
e2
)
--destroy
--destroy
local
e3
=
Effect
.
CreateEffect
(
c
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetDescription
(
aux
.
Stringid
(
48156348
,
0
))
e3
:
SetDescription
(
aux
.
Stringid
(
48156348
,
0
))
...
@@ -50,34 +41,6 @@ function c48156348.cfilter(c)
...
@@ -50,34 +41,6 @@ function c48156348.cfilter(c)
return
(
c
:
IsFusionCode
(
41470137
)
or
c
:
IsFusionSetCard
(
0x19
)
and
c
:
IsType
(
TYPE_MONSTER
))
return
(
c
:
IsFusionCode
(
41470137
)
or
c
:
IsFusionSetCard
(
0x19
)
and
c
:
IsType
(
TYPE_MONSTER
))
and
c
:
IsAbleToDeckOrExtraAsCost
()
and
c
:
IsAbleToDeckOrExtraAsCost
()
end
end
function
c48156348
.
spfilter1
(
c
,
tp
,
g
)
return
g
:
IsExists
(
c48156348
.
spfilter2
,
1
,
c
,
tp
,
c
)
end
function
c48156348
.
spfilter2
(
c
,
tp
,
mc
)
return
(
c
:
IsFusionCode
(
41470137
)
and
mc
:
IsFusionSetCard
(
0x19
)
and
mc
:
IsType
(
TYPE_MONSTER
)
or
c
:
IsFusionSetCard
(
0x19
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
mc
:
IsFusionCode
(
41470137
))
and
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
Group
.
FromCards
(
c
,
mc
))
>
0
end
function
c48156348
.
sprcon
(
e
,
c
)
if
c
==
nil
then
return
true
end
local
tp
=
c
:
GetControler
()
local
g
=
Duel
.
GetMatchingGroup
(
c48156348
.
cfilter
,
tp
,
LOCATION_ONFIELD
,
0
,
nil
)
return
g
:
IsExists
(
c48156348
.
spfilter1
,
1
,
nil
,
tp
,
g
)
end
function
c48156348
.
sprop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
c
)
local
g
=
Duel
.
GetMatchingGroup
(
c48156348
.
cfilter
,
tp
,
LOCATION_ONFIELD
,
0
,
nil
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TODECK
)
local
g1
=
g
:
FilterSelect
(
tp
,
c48156348
.
spfilter1
,
1
,
1
,
nil
,
tp
,
g
)
local
mc
=
g1
:
GetFirst
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TODECK
)
local
g2
=
g
:
FilterSelect
(
tp
,
c48156348
.
spfilter2
,
1
,
1
,
mc
,
tp
,
mc
)
g1
:
Merge
(
g2
)
local
cg
=
g1
:
Filter
(
Card
.
IsFacedown
,
nil
)
if
cg
:
GetCount
()
>
0
then
Duel
.
ConfirmCards
(
1
-
tp
,
cg
)
end
Duel
.
SendtoDeck
(
g1
,
nil
,
2
,
REASON_COST
)
end
function
c48156348
.
destg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
function
c48156348
.
destg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsOnField
()
end
if
chkc
then
return
chkc
:
IsOnField
()
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
aux
.
TRUE
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
1
,
nil
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
aux
.
TRUE
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
1
,
nil
)
end
...
...
c53315891.lua
View file @
a314224f
...
@@ -10,15 +10,6 @@ function c53315891.initial_effect(c)
...
@@ -10,15 +10,6 @@ function c53315891.initial_effect(c)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
--special summon rule
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e2
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetRange
(
LOCATION_EXTRA
)
e2
:
SetCondition
(
c53315891
.
sprcon
)
e2
:
SetOperation
(
c53315891
.
sprop
)
c
:
RegisterEffect
(
e2
)
--immune
--immune
local
e3
=
Effect
.
CreateEffect
(
c
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetType
(
EFFECT_TYPE_SINGLE
)
e3
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
...
c56655675.lua
View file @
a314224f
...
@@ -13,16 +13,6 @@ function c56655675.initial_effect(c)
...
@@ -13,16 +13,6 @@ function c56655675.initial_effect(c)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
--special summon rule
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e2
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetRange
(
LOCATION_EXTRA
)
e2
:
SetValue
(
1
)
e2
:
SetCondition
(
c56655675
.
spcon
)
e2
:
SetOperation
(
c56655675
.
spop
)
c
:
RegisterEffect
(
e2
)
--negate
--negate
local
e3
=
Effect
.
CreateEffect
(
c
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_CONTINUOUS
)
e3
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_CONTINUOUS
)
...
...
c73285669.lua
View file @
a314224f
...
@@ -11,15 +11,6 @@ function c73285669.initial_effect(c)
...
@@ -11,15 +11,6 @@ function c73285669.initial_effect(c)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetValue
(
c73285669
.
splimit
)
e1
:
SetValue
(
c73285669
.
splimit
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
--special summon rule
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e2
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetRange
(
LOCATION_EXTRA
)
e2
:
SetCondition
(
c73285669
.
sprcon
)
e2
:
SetOperation
(
c73285669
.
sprop
)
c
:
RegisterEffect
(
e2
)
end
end
function
c73285669
.
splimit
(
e
,
se
,
sp
,
st
)
function
c73285669
.
splimit
(
e
,
se
,
sp
,
st
)
return
e
:
GetHandler
():
GetLocation
()
~=
LOCATION_EXTRA
return
e
:
GetHandler
():
GetLocation
()
~=
LOCATION_EXTRA
...
...
c80532587.lua
View file @
a314224f
...
@@ -11,15 +11,6 @@ function c80532587.initial_effect(c)
...
@@ -11,15 +11,6 @@ function c80532587.initial_effect(c)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
--special summon rule
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e2
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetRange
(
LOCATION_EXTRA
)
e2
:
SetCondition
(
c80532587
.
sprcon
)
e2
:
SetOperation
(
c80532587
.
sprop
)
c
:
RegisterEffect
(
e2
)
--special summon
--special summon
local
e3
=
Effect
.
CreateEffect
(
c
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetDescription
(
aux
.
Stringid
(
80532587
,
0
))
e3
:
SetDescription
(
aux
.
Stringid
(
80532587
,
0
))
...
@@ -41,34 +32,6 @@ function c80532587.initial_effect(c)
...
@@ -41,34 +32,6 @@ function c80532587.initial_effect(c)
e4
:
SetOperation
(
c80532587
.
desop
)
e4
:
SetOperation
(
c80532587
.
desop
)
c
:
RegisterEffect
(
e4
)
c
:
RegisterEffect
(
e4
)
end
end
function
c80532587
.
cfilter
(
c
,
fc
)
return
c
:
IsFusionType
(
TYPE_SYNCHRO
+
TYPE_XYZ
)
and
c
:
IsCanBeFusionMaterial
(
fc
)
and
c
:
IsAbleToGraveAsCost
()
end
function
c80532587
.
spfilter1
(
c
,
tp
,
g
)
return
g
:
IsExists
(
c80532587
.
spfilter2
,
1
,
c
,
tp
,
c
)
end
function
c80532587
.
spfilter2
(
c
,
tp
,
mc
)
return
(
c
:
IsFusionType
(
TYPE_SYNCHRO
)
and
mc
:
IsFusionType
(
TYPE_XYZ
)
or
c
:
IsFusionType
(
TYPE_XYZ
)
and
mc
:
IsFusionType
(
TYPE_SYNCHRO
))
and
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
Group
.
FromCards
(
c
,
mc
))
>
0
end
function
c80532587
.
sprcon
(
e
,
c
)
if
c
==
nil
then
return
true
end
local
tp
=
c
:
GetControler
()
local
mg
=
Duel
.
GetMatchingGroup
(
c80532587
.
cfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
,
c
)
return
mg
:
IsExists
(
c80532587
.
spfilter1
,
1
,
nil
,
tp
,
mg
)
end
function
c80532587
.
sprop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
c
)
local
mg
=
Duel
.
GetMatchingGroup
(
c80532587
.
cfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
,
c
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TOGRAVE
)
local
g1
=
mg
:
FilterSelect
(
tp
,
c80532587
.
spfilter1
,
1
,
1
,
nil
,
tp
,
mg
)
local
mc
=
g1
:
GetFirst
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TOGRAVE
)
local
g2
=
mg
:
FilterSelect
(
tp
,
c80532587
.
spfilter2
,
1
,
1
,
mc
,
tp
,
mc
)
g1
:
Merge
(
g2
)
c
:
SetMaterial
(
g1
)
Duel
.
SendtoGrave
(
g1
,
REASON_COST
)
end
function
c80532587
.
spfilter
(
c
,
e
,
tp
)
function
c80532587
.
spfilter
(
c
,
e
,
tp
)
return
c
:
IsLevel
(
4
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
return
c
:
IsLevel
(
4
)
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
end
...
...
c90957527.lua
View file @
a314224f
...
@@ -11,16 +11,6 @@ function c90957527.initial_effect(c)
...
@@ -11,16 +11,6 @@ function c90957527.initial_effect(c)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetValue
(
c90957527
.
splimit
)
e1
:
SetValue
(
c90957527
.
splimit
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
--special summon rule
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetDescription
(
aux
.
Stringid
(
90957527
,
1
))
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e2
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetRange
(
LOCATION_EXTRA
)
e2
:
SetCondition
(
c90957527
.
sprcon
)
e2
:
SetOperation
(
c90957527
.
sprop
)
c
:
RegisterEffect
(
e2
)
--damage
--damage
local
e3
=
Effect
.
CreateEffect
(
c
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetDescription
(
aux
.
Stringid
(
90957527
,
0
))
e3
:
SetDescription
(
aux
.
Stringid
(
90957527
,
0
))
...
...
c95793022.lua
View file @
a314224f
...
@@ -11,16 +11,6 @@ function c95793022.initial_effect(c)
...
@@ -11,16 +11,6 @@ function c95793022.initial_effect(c)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e1
:
SetValue
(
c95793022
.
splimit
)
e1
:
SetValue
(
c95793022
.
splimit
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
--special summon rule
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e2
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetRange
(
LOCATION_EXTRA
)
e2
:
SetCondition
(
c95793022
.
spcon
)
e2
:
SetTarget
(
c95793022
.
sptg
)
e2
:
SetOperation
(
c95793022
.
spop
)
c
:
RegisterEffect
(
e2
)
--attack all
--attack all
local
e3
=
Effect
.
CreateEffect
(
c
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetType
(
EFFECT_TYPE_SINGLE
)
e3
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
...
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