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
3c969b92
Commit
3c969b92
authored
Jan 08, 2021
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix エヴォルダー・ペルタ
parent
ae122703
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
16 deletions
+12
-16
c16480084.lua
c16480084.lua
+10
-1
c20855340.lua
c20855340.lua
+0
-2
c28877602.lua
c28877602.lua
+0
-2
c3283679.lua
c3283679.lua
+0
-2
c5338223.lua
c5338223.lua
+0
-2
c55488859.lua
c55488859.lua
+2
-3
c81873903.lua
c81873903.lua
+0
-2
c88095331.lua
c88095331.lua
+0
-2
No files found.
c16480084.lua
View file @
3c969b92
--エヴォルダー・ペルタ
--エヴォルダー・ペルタ
function
c16480084
.
initial_effect
(
c
)
function
c16480084
.
initial_effect
(
c
)
--defup
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_F
)
e1
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e1
:
SetCondition
(
aux
.
evospcon
)
e1
:
SetOperation
(
c16480084
.
operation
)
c
:
RegisterEffect
(
e1
)
end
end
function
c16480084
.
evolreg
(
c
)
function
c16480084
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
if
not
c
:
IsRelateToEffect
(
e
)
then
return
end
--defup
--defup
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
...
c20855340.lua
View file @
3c969b92
...
@@ -31,7 +31,5 @@ function c20855340.operation(e,tp,eg,ep,ev,re,r,rp)
...
@@ -31,7 +31,5 @@ function c20855340.operation(e,tp,eg,ep,ev,re,r,rp)
local
tc
=
g
:
GetFirst
()
local
tc
=
g
:
GetFirst
()
if
tc
then
if
tc
then
Duel
.
SpecialSummon
(
tc
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummon
(
tc
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
local
rf
=
tc
.
evolreg
if
rf
then
rf
(
tc
)
end
end
end
end
end
c28877602.lua
View file @
3c969b92
...
@@ -24,7 +24,5 @@ function c28877602.sumop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -24,7 +24,5 @@ function c28877602.sumop(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c28877602
.
filter
,
tp
,
LOCATION_HAND
,
0
,
1
,
1
,
nil
,
e
,
tp
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c28877602
.
filter
,
tp
,
LOCATION_HAND
,
0
,
1
,
1
,
nil
,
e
,
tp
)
if
g
:
GetCount
()
>
0
then
if
g
:
GetCount
()
>
0
then
Duel
.
SpecialSummon
(
g
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummon
(
g
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
local
rf
=
g
:
GetFirst
().
evolreg
if
rf
then
rf
(
g
:
GetFirst
())
end
end
end
end
end
c3283679.lua
View file @
3c969b92
...
@@ -47,7 +47,5 @@ function c3283679.spop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -47,7 +47,5 @@ function c3283679.spop(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c3283679
.
spfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c3283679
.
spfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
)
if
g
:
GetCount
()
>
0
then
if
g
:
GetCount
()
>
0
then
Duel
.
SpecialSummon
(
g
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummon
(
g
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
local
rf
=
g
:
GetFirst
().
evolreg
if
rf
then
rf
(
g
:
GetFirst
())
end
end
end
end
end
c5338223.lua
View file @
3c969b92
...
@@ -43,7 +43,5 @@ function c5338223.activate(e,tp,eg,ep,ev,re,r,rp)
...
@@ -43,7 +43,5 @@ function c5338223.activate(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c5338223
.
spfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c5338223
.
spfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
)
if
g
:
GetCount
()
>
0
then
if
g
:
GetCount
()
>
0
then
Duel
.
SpecialSummon
(
g
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummon
(
g
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
local
rf
=
g
:
GetFirst
().
evolreg
if
rf
then
rf
(
g
:
GetFirst
())
end
end
end
end
end
c55488859.lua
View file @
3c969b92
...
@@ -27,8 +27,7 @@ function c55488859.target(e,tp,eg,ep,ev,re,r,rp,chk)
...
@@ -27,8 +27,7 @@ function c55488859.target(e,tp,eg,ep,ev,re,r,rp,chk)
end
end
function
c55488859
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c55488859
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
tc
=
Duel
.
GetFirstTarget
()
local
tc
=
Duel
.
GetFirstTarget
()
if
tc
:
IsRelateToEffect
(
e
)
and
Duel
.
SpecialSummon
(
tc
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
~=
0
then
if
tc
:
IsRelateToEffect
(
e
)
then
local
rf
=
tc
.
evolreg
Duel
.
SpecialSummon
(
tc
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
if
rf
then
rf
(
tc
)
end
end
end
end
end
c81873903.lua
View file @
3c969b92
...
@@ -22,7 +22,5 @@ function c81873903.operation(e,tp,eg,ep,ev,re,r,rp)
...
@@ -22,7 +22,5 @@ function c81873903.operation(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c81873903
.
filter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c81873903
.
filter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
)
if
g
:
GetCount
()
>
0
then
if
g
:
GetCount
()
>
0
then
Duel
.
SpecialSummon
(
g
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummon
(
g
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
local
rf
=
g
:
GetFirst
().
evolreg
if
rf
then
rf
(
g
:
GetFirst
())
end
end
end
end
end
c88095331.lua
View file @
3c969b92
...
@@ -29,7 +29,5 @@ function c88095331.operation(e,tp,eg,ep,ev,re,r,rp)
...
@@ -29,7 +29,5 @@ function c88095331.operation(e,tp,eg,ep,ev,re,r,rp)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c88095331
.
filter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c88095331
.
filter
,
tp
,
LOCATION_DECK
,
0
,
1
,
1
,
nil
,
e
,
tp
)
if
g
:
GetCount
()
>
0
then
if
g
:
GetCount
()
>
0
then
Duel
.
SpecialSummon
(
g
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
Duel
.
SpecialSummon
(
g
,
SUMMON_VALUE_EVOLTILE
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
local
rf
=
g
:
GetFirst
().
evolreg
if
rf
then
rf
(
g
:
GetFirst
())
end
end
end
end
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