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
84c97021
Commit
84c97021
authored
Mar 31, 2022
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update db and pics
parent
a2625a85
Pipeline
#11382
passed with stages
in 56 seconds
Changes
5
Pipelines
2
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
55 additions
and
0 deletions
+55
-0
deck/22-03-31 new cards.ydk
deck/22-03-31 new cards.ydk
+1
-0
expansions/pre-release.cdb
expansions/pre-release.cdb
+0
-0
pics/101109067.jpg
pics/101109067.jpg
+0
-0
script/c100427034.lua
script/c100427034.lua
+1
-0
script/c101109067.lua
script/c101109067.lua
+53
-0
No files found.
deck/22-03-
27
new cards.ydk
→
deck/22-03-
31
new cards.ydk
View file @
84c97021
#created by ...
#created by ...
#main
#main
101109067
101109029
101109029
100427030
100427030
100427031
100427031
...
...
expansions/pre-release.cdb
View file @
84c97021
No preview for this file type
pics/101109067.jpg
0 → 100644
View file @
84c97021
75.3 KB
script/c100427034.lua
View file @
84c97021
...
@@ -10,6 +10,7 @@ function c100427034.initial_effect(c)
...
@@ -10,6 +10,7 @@ function c100427034.initial_effect(c)
e1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e1
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e1
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e1
:
SetCountLimit
(
1
,
100427034
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e1
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e1
:
SetCondition
(
c100427034
.
spcon
)
e1
:
SetCondition
(
c100427034
.
spcon
)
e1
:
SetTarget
(
c100427034
.
sptg
)
e1
:
SetTarget
(
c100427034
.
sptg
)
...
...
script/c101109067.lua
0 → 100644
View file @
84c97021
--月女神の鏃
--Script by mercury233
local
s
,
id
,
o
=
GetID
()
function
s
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_TODECK
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e1
:
SetCost
(
s
.
cost
)
e1
:
SetTarget
(
s
.
target
)
e1
:
SetOperation
(
s
.
activate
)
c
:
RegisterEffect
(
e1
)
end
function
s
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
e
:
SetLabel
(
100
)
if
chk
==
0
then
return
true
end
end
function
s
.
tgfilter
(
c
,
tp
)
return
c
:
IsAbleToGraveAsCost
()
and
Duel
.
IsExistingTarget
(
s
.
tdfilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
,
c
:
GetType
())
end
function
s
.
tdfilter
(
c
,
type
)
return
c
:
IsFaceup
()
and
c
:
IsAbleToDeck
()
and
c
:
GetType
()
&
type
&
(
TYPE_FUSION
|
TYPE_SYNCHRO
|
TYPE_XYZ
|
TYPE_PENDULUM
|
TYPE_LINK
)
>
0
end
function
s
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsControler
(
1
-
tp
)
and
chkc
:
IsLocation
(
LOCATION_MZONE
)
and
s
.
tdfilter
(
chkc
,
e
:
GetLabel
())
end
if
chk
==
0
then
if
e
:
GetLabel
()
~=
100
then
return
false
end
e
:
SetLabel
(
0
)
return
Duel
.
IsExistingMatchingCard
(
s
.
tgfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
tp
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TOGRAVE
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
tgfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
,
tp
)
Duel
.
SendtoGrave
(
g
,
REASON_COST
)
local
type
=
g
:
GetFirst
():
GetType
()
e
:
SetLabel
(
type
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TODECK
)
local
tg
=
Duel
.
SelectTarget
(
tp
,
s
.
tdfilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
1
,
nil
,
type
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TODECK
,
tg
,
1
,
0
,
0
)
if
e
:
IsHasType
(
EFFECT_TYPE_ACTIVATE
)
then
Duel
.
SetChainLimit
(
s
.
chainlm
)
end
end
function
s
.
chainlm
(
re
,
rp
,
tp
)
return
tp
==
rp
or
not
re
:
GetHandler
():
IsType
(
TYPE_MONSTER
)
end
function
s
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
tc
=
Duel
.
GetFirstTarget
()
if
tc
:
IsRelateToEffect
(
e
)
then
Duel
.
SendtoDeck
(
tc
,
nil
,
SEQ_DECKSHUFFLE
,
REASON_EFFECT
)
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