Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-2pick
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-2pick
Commits
e65a73ee
Commit
e65a73ee
authored
Aug 27, 2017
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
5027848b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
136 additions
and
0 deletions
+136
-0
expansions/script/c101002051.lua
expansions/script/c101002051.lua
+134
-0
expansions/script/c12000008.lua
expansions/script/c12000008.lua
+1
-0
expansions/script/c12000048.lua
expansions/script/c12000048.lua
+1
-0
No files found.
expansions/script/c101002051.lua
0 → 100644
View file @
e65a73ee
--アカシック・マジシャン
--Akashic Magician
--Script by nekrozar
function
c101002051
.
initial_effect
(
c
)
c
:
EnableReviveLimit
()
--link summon
local
e0
=
Effect
.
CreateEffect
(
c
)
e0
:
SetType
(
EFFECT_TYPE_FIELD
)
e0
:
SetProperty
(
EFFECT_FLAG_UNCOPYABLE
+
EFFECT_FLAG_IGNORE_IMMUNE
)
e0
:
SetCode
(
EFFECT_SPSUMMON_PROC
)
e0
:
SetRange
(
LOCATION_EXTRA
)
e0
:
SetCondition
(
c101002051
.
lkcon
)
e0
:
SetOperation
(
c101002051
.
lkop
)
e0
:
SetValue
(
SUMMON_TYPE_LINK
)
c
:
RegisterEffect
(
e0
)
--splimit
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e1
:
SetCondition
(
c101002051
.
regcon
)
e1
:
SetOperation
(
c101002051
.
regop
)
c
:
RegisterEffect
(
e1
)
--to hand
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetDescription
(
aux
.
Stringid
(
101002051
,
0
))
e2
:
SetCategory
(
CATEGORY_TOHAND
)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_F
)
e2
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e2
:
SetCondition
(
c101002051
.
thcon
)
e2
:
SetTarget
(
c101002051
.
thtg
)
e2
:
SetOperation
(
c101002051
.
thop
)
c
:
RegisterEffect
(
e2
)
--announce
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetDescription
(
aux
.
Stringid
(
101002051
,
1
))
e3
:
SetCategory
(
CATEGORY_TOHAND
+
CATEGORY_SEARCH
+
CATEGORY_DECKDES
)
e3
:
SetType
(
EFFECT_TYPE_IGNITION
)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetCountLimit
(
1
)
e3
:
SetTarget
(
c101002051
.
actg
)
e3
:
SetOperation
(
c101002051
.
acop
)
c
:
RegisterEffect
(
e3
)
end
function
c101002051
.
regcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
bit
.
band
(
e
:
GetHandler
():
GetSummonType
(),
SUMMON_TYPE_LINK
)
==
SUMMON_TYPE_LINK
end
function
c101002051
.
regop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetCode
(
EFFECT_CANNOT_SPECIAL_SUMMON
)
e1
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e1
:
SetTargetRange
(
1
,
0
)
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
e1
:
SetTarget
(
c101002051
.
splimit
)
Duel
.
RegisterEffect
(
e1
,
tp
)
end
function
c101002051
.
splimit
(
e
,
c
,
sump
,
sumtype
,
sumpos
,
targetp
,
se
)
return
c
:
IsCode
(
101002051
)
and
bit
.
band
(
sumtype
,
SUMMON_TYPE_LINK
)
==
SUMMON_TYPE_LINK
end
function
c101002051
.
lkfilter1
(
c
,
lc
,
tp
)
return
c
:
IsFaceup
()
and
not
c
:
IsType
(
TYPE_TOKEN
)
and
c
:
IsCanBeLinkMaterial
(
lc
)
and
Duel
.
IsExistingMatchingCard
(
c101002051
.
lkfilter2
,
tp
,
LOCATION_MZONE
,
0
,
1
,
c
,
lc
,
c
,
tp
)
end
function
c101002051
.
lkfilter2
(
c
,
lc
,
mc
,
tp
)
local
mg
=
Group
.
FromCards
(
c
,
mc
)
return
c
:
IsFaceup
()
and
c
:
IsRace
(
mc
:
GetRace
())
and
c
:
IsCanBeLinkMaterial
(
lc
)
and
not
c
:
IsType
(
TYPE_TOKEN
)
and
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
mg
,
lc
)
>
0
end
function
c101002051
.
lkcon
(
e
,
c
)
if
c
==
nil
then
return
true
end
if
c
:
IsType
(
TYPE_PENDULUM
)
and
c
:
IsFaceup
()
then
return
false
end
local
tp
=
c
:
GetControler
()
return
Duel
.
IsExistingMatchingCard
(
c101002051
.
lkfilter1
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
,
c
,
tp
)
end
function
c101002051
.
lkop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
c
)
local
g1
=
Duel
.
SelectMatchingCard
(
tp
,
c101002051
.
lkfilter1
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
,
c
,
tp
)
local
g2
=
Duel
.
SelectMatchingCard
(
tp
,
c101002051
.
lkfilter2
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
g1
:
GetFirst
(),
c
,
g1
:
GetFirst
(),
tp
)
g1
:
Merge
(
g2
)
c
:
SetMaterial
(
g1
)
Duel
.
SendtoGrave
(
g1
,
REASON_MATERIAL
+
REASON_LINK
)
end
function
c101002051
.
thcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
bit
.
band
(
e
:
GetHandler
():
GetSummonType
(),
SUMMON_TYPE_LINK
)
==
SUMMON_TYPE_LINK
end
function
c101002051
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
lg
=
e
:
GetHandler
():
GetLinkedGroup
():
Filter
(
Card
.
IsAbleToHand
,
nil
)
if
chk
==
0
then
return
true
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
lg
,
lg
:
GetCount
(),
0
,
0
)
end
function
c101002051
.
thop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
lg
=
e
:
GetHandler
():
GetLinkedGroup
():
Filter
(
Card
.
IsAbleToHand
,
nil
)
Duel
.
SendtoHand
(
lg
,
nil
,
REASON_EFFECT
)
end
function
c101002051
.
cfilter
(
c
,
mc
)
local
lg
=
c
:
GetLinkedGroup
()
return
lg
and
lg
:
IsContains
(
mc
)
end
function
c101002051
.
actg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
local
c
=
e
:
GetHandler
()
local
lg
=
c
:
GetLinkedGroup
():
Filter
(
c101002051
.
cfilter
,
nil
,
c
)
local
ct
=
lg
:
GetSum
(
Card
.
GetLink
)
if
ct
<=
0
or
not
Duel
.
IsPlayerCanDiscardDeck
(
tp
,
ct
)
then
return
false
end
local
g
=
Duel
.
GetDecktopGroup
(
tp
,
ct
)
return
g
:
FilterCount
(
Card
.
IsAbleToHand
,
nil
)
>
0
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
0
)
local
ac
=
Duel
.
AnnounceCard
(
tp
)
Duel
.
SetTargetParam
(
ac
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_ANNOUNCE
,
nil
,
0
,
tp
,
ANNOUNCE_CARD
)
end
function
c101002051
.
thfilter
(
c
,
code
)
return
c
:
IsCode
(
code
)
and
c
:
IsAbleToHand
()
end
function
c101002051
.
acop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
lg
=
c
:
GetLinkedGroup
():
Filter
(
c101002051
.
cfilter
,
nil
,
c
)
local
ct
=
lg
:
GetSum
(
Card
.
GetLink
)
if
ct
<=
0
or
not
Duel
.
IsPlayerCanDiscardDeck
(
tp
,
ct
)
then
return
end
Duel
.
ConfirmDecktop
(
tp
,
ct
)
local
g
=
Duel
.
GetDecktopGroup
(
tp
,
ct
)
local
ac
=
Duel
.
GetChainInfo
(
0
,
CHAININFO_TARGET_PARAM
)
local
hg
=
g
:
Filter
(
c101002051
.
thfilter
,
nil
,
ac
)
g
:
Sub
(
hg
)
if
hg
:
GetCount
()
~=
0
then
Duel
.
DisableShuffleCheck
()
Duel
.
SendtoHand
(
hg
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
hg
)
Duel
.
ShuffleHand
(
tp
)
end
if
g
:
GetCount
()
~=
0
then
Duel
.
DisableShuffleCheck
()
Duel
.
SendtoGrave
(
g
,
REASON_EFFECT
+
REASON_REVEAL
)
end
end
expansions/script/c12000008.lua
View file @
e65a73ee
...
...
@@ -65,5 +65,6 @@ function c12000008.activate(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetValue
(
1
)
e1
:
SetReset
(
RESET_EVENT
+
0x1fe0000
)
token
:
RegisterEffect
(
e1
,
true
)
Duel
.
SpecialSummonComplete
()
end
end
\ No newline at end of file
expansions/script/c12000048.lua
View file @
e65a73ee
...
...
@@ -71,5 +71,6 @@ function c12000048.tgop(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetValue
(
1
)
e1
:
SetReset
(
RESET_EVENT
+
0x1fe0000
)
token
:
RegisterEffect
(
e1
,
true
)
Duel
.
SpecialSummonComplete
()
end
end
\ No newline at end of file
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