Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-pre-data
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
MyCard
ygopro-pre-data
Commits
f8546425
Commit
f8546425
authored
Jul 09, 2020
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add new card
parent
f88b78e2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
62 additions
and
5 deletions
+62
-5
deck/20-07-09 new cards.ydk
deck/20-07-09 new cards.ydk
+1
-5
expansions/pre-release.cdb
expansions/pre-release.cdb
+0
-0
pics/101102049.jpg
pics/101102049.jpg
+0
-0
script/c101102049.lua
script/c101102049.lua
+61
-0
No files found.
deck/20-07-0
2
new cards.ydk
→
deck/20-07-0
9
new cards.ydk
View file @
f8546425
#created by ...
#main
100339055
100200184
100200185
100200186
...
...
@@ -26,11 +25,8 @@
101102073
101102074
101102076
100339005
100339006
100339031
100339021
#extra
101102049
100311051
101102032
101102033
...
...
expansions/pre-release.cdb
View file @
f8546425
No preview for this file type
pics/101102049.jpg
0 → 100644
View file @
f8546425
89.6 KB
script/c101102049.lua
0 → 100644
View file @
f8546425
--プランキッズ・ミュー
--
--Script by mercury233
function
c101102049
.
initial_effect
(
c
)
--link summon
aux
.
AddLinkProcedure
(
c
,
c101102049
.
mfilter
,
1
,
1
)
c
:
EnableReviveLimit
()
--splimit
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_CONTINUOUS
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
e1
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e1
:
SetCondition
(
c101102049
.
condition
)
e1
:
SetOperation
(
c101102049
.
regop
)
c
:
RegisterEffect
(
e1
)
--release replace
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_CONTINUOUS
+
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_RELEASE_REPLACE
)
e2
:
SetRange
(
LOCATION_MZONE
+
LOCATION_GRAVE
)
e2
:
SetCountLimit
(
1
,
101102049
)
e2
:
SetTarget
(
c101102049
.
reptg
)
e2
:
SetValue
(
c101102049
.
repval
)
e2
:
SetOperation
(
c101102049
.
repop
)
c
:
RegisterEffect
(
e2
)
end
function
c101102049
.
mfilter
(
c
)
return
c
:
IsLevelBelow
(
4
)
and
c
:
IsLinkSetCard
(
0x120
)
end
function
c101102049
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetHandler
():
IsSummonType
(
SUMMON_TYPE_LINK
)
end
function
c101102049
.
regop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_FIELD
)
e1
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e1
:
SetCode
(
EFFECT_CANNOT_SPECIAL_SUMMON
)
e1
:
SetTargetRange
(
1
,
0
)
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
)
e1
:
SetTarget
(
c101102049
.
splimit
)
Duel
.
RegisterEffect
(
e1
,
tp
)
end
function
c101102049
.
splimit
(
e
,
c
,
sump
,
sumtype
,
sumpos
,
targetp
,
se
)
return
c
:
IsCode
(
101102049
)
and
bit
.
band
(
sumtype
,
SUMMON_TYPE_LINK
)
==
SUMMON_TYPE_LINK
end
function
c101102049
.
repfilter
(
c
,
tp
,
re
)
return
c
:
IsFaceup
()
and
c
:
IsControler
(
tp
)
and
c
:
IsLocation
(
LOCATION_MZONE
)
and
c
:
IsSetCard
(
0x120
)
and
c
:
IsReason
(
REASON_COST
)
and
c
==
re
:
GetHandler
()
and
not
c
:
IsReason
(
REASON_REPLACE
)
end
function
c101102049
.
reptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
GetTurnPlayer
()
==
1
-
tp
and
eg
:
IsExists
(
c101102049
.
repfilter
,
1
,
nil
,
tp
,
re
)
and
e
:
GetHandler
():
IsAbleToRemoveAsCost
()
end
return
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
101102049
,
0
))
end
function
c101102049
.
repval
(
e
,
c
)
return
c101102049
.
repfilter
(
c
,
e
:
GetHandlerPlayer
(),
c
:
GetReasonEffect
())
end
function
c101102049
.
repop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Remove
(
e
:
GetHandler
(),
POS_FACEUP
,
REASON_COST
+
REASON_REPLACE
)
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