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
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
Reinen
ygopro-scripts
Commits
25cb38b1
Commit
25cb38b1
authored
Jun 28, 2017
by
nekrozar
Committed by
mercury233
Jun 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update Xyz Summon (#887)
parent
ccf7c60f
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
10 deletions
+10
-10
c23187256.lua
c23187256.lua
+1
-1
c38026562.lua
c38026562.lua
+1
-1
c42160203.lua
c42160203.lua
+1
-1
c43490025.lua
c43490025.lua
+1
-1
c47349116.lua
c47349116.lua
+1
-1
c52653092.lua
c52653092.lua
+1
-1
c57314798.lua
c57314798.lua
+1
-1
c65305468.lua
c65305468.lua
+1
-1
c698785.lua
c698785.lua
+1
-1
c88722973.lua
c88722973.lua
+1
-1
No files found.
c23187256.lua
View file @
25cb38b1
...
...
@@ -36,7 +36,7 @@ function c23187256.initial_effect(c)
end
c23187256
.
xyz_number
=
93
function
c23187256
.
mfilter
(
c
,
xyzc
)
return
c
:
IsFaceup
()
and
c
:
IsType
(
TYPE_XYZ
)
and
c
:
IsSetCard
(
0x48
)
and
c
:
GetOverlayCount
()
>
0
and
c
:
IsCanBeXyzMaterial
(
xyzc
)
return
c
:
IsFaceup
()
and
c
:
Is
Xyz
Type
(
TYPE_XYZ
)
and
c
:
IsSetCard
(
0x48
)
and
c
:
GetOverlayCount
()
>
0
and
c
:
IsCanBeXyzMaterial
(
xyzc
)
end
function
c23187256
.
xyzfilter1
(
c
,
g
,
ct
)
return
g
:
IsExists
(
c23187256
.
xyzfilter2
,
ct
,
c
,
c
:
GetRank
())
...
...
c38026562.lua
View file @
25cb38b1
--超化合獣メタン・ハイド
function
c38026562
.
initial_effect
(
c
)
--xyz summon
aux
.
AddXyzProcedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
IsType
,
TYPE_DUAL
),
8
,
2
)
aux
.
AddXyzProcedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
Is
Xyz
Type
,
TYPE_DUAL
),
8
,
2
)
c
:
EnableReviveLimit
()
--special summon
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
c42160203.lua
View file @
25cb38b1
...
...
@@ -28,7 +28,7 @@ function c42160203.initial_effect(c)
c
:
RegisterEffect
(
e4
)
end
function
c42160203
.
matfilter
(
c
)
return
c
:
IsType
(
TYPE_PENDULUM
)
and
c
:
IsAttribute
(
ATTRIBUTE_DARK
)
return
c
:
Is
Xyz
Type
(
TYPE_PENDULUM
)
and
c
:
IsAttribute
(
ATTRIBUTE_DARK
)
end
function
c42160203
.
atkcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
...
...
c43490025.lua
View file @
25cb38b1
...
...
@@ -42,7 +42,7 @@ function c43490025.ovfilter(c,xyzc)
return
c
:
IsFaceup
()
and
(
c
:
IsSetCard
(
0x107f
)
or
c
:
IsCode
(
65305468
))
and
c
:
IsCanBeXyzMaterial
(
xyzc
)
end
function
c43490025
.
mfilter
(
c
,
xyzc
)
return
c
:
IsFaceup
()
and
c
:
IsType
(
TYPE_XYZ
)
and
not
c
:
IsSetCard
(
0x48
)
and
c
:
IsCanBeXyzMaterial
(
xyzc
)
return
c
:
IsFaceup
()
and
c
:
Is
Xyz
Type
(
TYPE_XYZ
)
and
not
c
:
IsSetCard
(
0x48
)
and
c
:
IsCanBeXyzMaterial
(
xyzc
)
end
function
c43490025
.
xyzfilter1
(
c
,
g
)
return
g
:
IsExists
(
c43490025
.
xyzfilter2
,
1
,
c
,
c
:
GetRank
())
...
...
c47349116.lua
View file @
25cb38b1
...
...
@@ -31,7 +31,7 @@ function c47349116.initial_effect(c)
c
:
RegisterEffect
(
e3
)
end
function
c47349116
.
matfilter
(
c
)
return
c
:
IsSetCard
(
0x98
)
and
c
:
IsType
(
TYPE_PENDULUM
)
return
c
:
IsSetCard
(
0x98
)
and
c
:
Is
Xyz
Type
(
TYPE_PENDULUM
)
end
function
c47349116
.
splimit
(
e
,
se
,
sp
,
st
)
return
not
e
:
GetHandler
():
IsLocation
(
LOCATION_EXTRA
)
or
(
bit
.
band
(
st
,
SUMMON_TYPE_XYZ
)
==
SUMMON_TYPE_XYZ
and
not
se
)
...
...
c52653092.lua
View file @
25cb38b1
...
...
@@ -57,7 +57,7 @@ function c52653092.ovfilter(c)
return
c
:
IsFaceup
()
and
c
:
IsSetCard
(
0x107f
)
end
function
c52653092
.
mfilter
(
c
,
xyzc
)
return
c
:
IsFaceup
()
and
c
:
IsType
(
TYPE_XYZ
)
and
c
:
IsSetCard
(
0x48
)
and
c
:
IsCanBeXyzMaterial
(
xyzc
)
return
c
:
IsFaceup
()
and
c
:
Is
Xyz
Type
(
TYPE_XYZ
)
and
c
:
IsSetCard
(
0x48
)
and
c
:
IsCanBeXyzMaterial
(
xyzc
)
end
function
c52653092
.
xyzfilter1
(
c
,
g
)
return
g
:
IsExists
(
c52653092
.
xyzfilter2
,
2
,
c
,
c
:
GetRank
())
...
...
c57314798.lua
View file @
25cb38b1
...
...
@@ -46,7 +46,7 @@ function c57314798.initial_effect(c)
end
c57314798
.
xyz_number
=
100
function
c57314798
.
mfilter
(
c
,
xyzc
)
return
c
:
IsFaceup
()
and
c
:
IsType
(
TYPE_XYZ
)
and
c
:
IsSetCard
(
0x48
)
and
c
:
IsCanBeXyzMaterial
(
xyzc
)
return
c
:
IsFaceup
()
and
c
:
Is
Xyz
Type
(
TYPE_XYZ
)
and
c
:
IsSetCard
(
0x48
)
and
c
:
IsCanBeXyzMaterial
(
xyzc
)
end
function
c57314798
.
xyzfilter1
(
c
,
g
)
return
g
:
IsExists
(
c57314798
.
xyzfilter2
,
1
,
c
,
c
:
GetRank
(),
c
:
GetCode
())
...
...
c65305468.lua
View file @
25cb38b1
...
...
@@ -47,7 +47,7 @@ function c65305468.initial_effect(c)
end
c65305468
.
xyz_number
=
0
function
c65305468
.
mfilter
(
c
,
xyzc
)
return
c
:
IsFaceup
()
and
c
:
IsType
(
TYPE_XYZ
)
and
not
c
:
IsSetCard
(
0x48
)
and
c
:
IsCanBeXyzMaterial
(
xyzc
)
return
c
:
IsFaceup
()
and
c
:
Is
Xyz
Type
(
TYPE_XYZ
)
and
not
c
:
IsSetCard
(
0x48
)
and
c
:
IsCanBeXyzMaterial
(
xyzc
)
end
function
c65305468
.
xyzfilter1
(
c
,
g
)
return
g
:
IsExists
(
c65305468
.
xyzfilter2
,
1
,
c
,
c
:
GetRank
())
...
...
c698785.lua
View file @
25cb38b1
--サンダーエンド・ドラゴン
function
c698785
.
initial_effect
(
c
)
--xyz summon
aux
.
AddXyzProcedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
IsType
,
TYPE_NORMAL
),
8
,
2
)
aux
.
AddXyzProcedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
Is
Xyz
Type
,
TYPE_NORMAL
),
8
,
2
)
c
:
EnableReviveLimit
()
--negate activate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
c88722973.lua
View file @
25cb38b1
--昇竜剣士マジェスターP
function
c88722973
.
initial_effect
(
c
)
--xyz summon
aux
.
AddXyzProcedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
IsType
,
TYPE_PENDULUM
),
4
,
2
)
aux
.
AddXyzProcedure
(
c
,
aux
.
FilterBoolFunction
(
Card
.
Is
Xyz
Type
,
TYPE_PENDULUM
),
4
,
2
)
c
:
EnableReviveLimit
()
--search
local
e1
=
Effect
.
CreateEffect
(
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