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
0357e59e
Commit
0357e59e
authored
Jan 28, 2021
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
8ef0f3b4
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
60 deletions
+30
-60
expansions/pre-release.cdb
expansions/pre-release.cdb
+0
-0
script/c100416033.lua
script/c100416033.lua
+20
-44
script/c100416035.lua
script/c100416035.lua
+7
-12
script/c100416039.lua
script/c100416039.lua
+3
-4
No files found.
expansions/pre-release.cdb
View file @
0357e59e
No preview for this file type
script/c100416033.lua
View file @
0357e59e
...
...
@@ -97,72 +97,48 @@ end
function
c100416033
.
rfilter
(
c
,
tp
)
return
c
:
IsLevelAbove
(
7
)
and
(
c
:
IsControler
(
tp
)
or
c
:
IsFaceup
())
end
function
c100416033
.
rfilter2
(
c
,
e
,
tp
)
return
Duel
.
IsExistingMatchingCard
(
c100416033
.
cfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
,
e
,
tp
,
c
)
end
function
c100416033
.
cfilter
(
c
,
e
,
tp
,
mc
)
if
not
(
c
:
IsSetCard
(
0x261
)
and
c
:
IsType
(
TYPE_MONSTER
))
then
return
false
end
local
b1
=
c
:
IsAbleToHand
()
local
b2
=
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
if
not
b1
and
b2
then
return
Duel
.
GetMZoneCount
(
tp
,
mc
)
>
0
else
return
b1
or
b2
end
end
function
c100416033
.
excostfilter
(
c
,
tp
)
return
c
:
IsAbleToRemove
()
and
c
:
IsHasEffect
(
100416038
,
tp
)
end
function
c100416033
.
cfilter2
(
c
,
e
,
tp
,
ft
)
return
Duel
.
IsExistingMatchingCard
(
c100416033
.
thfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
c
,
e
,
tp
,
ft
)
function
c100416033
.
costfilter
(
c
,
e
,
tp
)
local
check
=
Duel
.
GetMZoneCount
(
tp
,
c
)
>
0
return
Duel
.
IsExistingMatchingCard
(
c100416033
.
tgfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
c
,
e
,
tp
,
check
)
end
function
c100416033
.
tgfilter
(
c
,
e
,
tp
,
check
)
return
c
:
IsSetCard
(
0x261
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
(
c
:
IsAbleToHand
()
or
check
and
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
))
end
function
c100416033
.
thcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
g1
=
Duel
.
GetReleaseGroup
(
tp
):
Filter
(
c100416033
.
rfilter
,
nil
,
tp
)
local
g1
=
Duel
.
GetReleaseGroup
(
tp
):
Filter
(
c100416033
.
rfilter
,
e
:
GetHandler
()
,
tp
)
local
g2
=
Duel
.
GetMatchingGroup
(
c100416033
.
excostfilter
,
tp
,
LOCATION_GRAVE
,
0
,
nil
,
tp
)
local
ft
=
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
local
b1
=
g1
:
IsExists
(
c100416033
.
rfilter2
,
1
,
nil
,
e
,
tp
)
local
b2
=
g2
:
IsExists
(
c100416033
.
cfilter2
,
1
,
nil
,
e
,
tp
,
ft
)
if
chk
==
0
then
return
b1
or
b2
end
local
s
=
0
if
b1
and
not
b2
then
s
=
0
elseif
not
b1
and
b2
then
s
=
1
elseif
b1
and
b2
then
s
=
Duel
.
SelectOption
(
tp
,
aux
.
Stringid
(
100416033
,
2
),
aux
.
Stringid
(
100416033
,
3
))
end
local
tc
if
s
==
0
then
g1
:
Merge
(
g2
)
if
chk
==
0
then
return
g1
:
IsExists
(
c100416033
.
costfilter
,
1
,
nil
,
e
,
tp
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
tc
=
g1
:
FilterSelect
(
tp
,
c100416033
.
rfilter2
,
1
,
1
,
nil
,
e
,
tp
):
GetFirst
()
Duel
.
Release
(
tc
,
REASON_COST
)
else
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
tc
=
g2
:
FilterSelect
(
tp
,
c100416033
.
cfilter2
,
1
,
1
,
nil
,
e
,
tp
,
ft
):
GetFirst
()
tc
=
g1
:
FilterSelect
(
tp
,
c100416033
.
costfilter
,
1
,
1
,
nil
,
e
,
tp
):
GetFirst
()
if
tc
:
IsLocation
(
LOCATION_GRAVE
)
then
local
te
=
tc
:
IsHasEffect
(
100416038
,
tp
)
if
te
then
te
:
UseCountLimit
(
tp
)
Duel
.
Remove
(
tc
,
POS_FACEUP
,
REASON_EFFECT
+
REASON_REPLACE
)
end
else
Duel
.
Release
(
tc
,
REASON_COST
)
end
end
function
c100416033
.
thfilter
(
c
,
e
,
tp
,
ft
)
return
c
:
IsSetCard
(
0x261
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
(
c
:
IsAbleToHand
()
or
c
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
and
(
not
ft
or
ft
>
0
))
end
function
c100416033
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c100416033
.
t
hfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
,
e
,
tp
)
end
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c100416033
.
t
gfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
,
e
,
tp
,
true
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
nil
,
0
,
tp
,
LOCATION_GRAVE
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_SPECIAL_SUMMON
,
nil
,
0
,
tp
,
LOCATION_GRAVE
)
end
function
c100416033
.
thop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
check
=
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_OPERATECARD
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
c100416033
.
thfilter
),
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
,
e
,
tp
)
local
ft
=
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
c100416033
.
tgfilter
),
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
,
e
,
tp
,
check
)
local
tc
=
g
:
GetFirst
()
if
tc
then
if
tc
:
IsAbleToHand
()
and
(
not
tc
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
or
ft
<=
0
or
Duel
.
SelectOption
(
tp
,
1190
,
1152
)
==
0
)
then
if
tc
:
IsAbleToHand
()
and
(
not
tc
:
IsCanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
or
not
check
or
Duel
.
SelectOption
(
tp
,
1190
,
1152
)
==
0
)
then
Duel
.
SendtoHand
(
tc
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
tc
)
else
Duel
.
SpecialSummon
(
tc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
...
...
script/c100416035.lua
View file @
0357e59e
...
...
@@ -31,7 +31,7 @@ function c100416035.initial_effect(c)
--negate
local
e4
=
Effect
.
CreateEffect
(
c
)
e4
:
SetDescription
(
aux
.
Stringid
(
100416035
,
1
))
e4
:
SetCategory
(
CATEGORY_NEGATE
+
CATEGORY_DESTROY
)
e4
:
SetCategory
(
CATEGORY_NEGATE
)
e4
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e4
:
SetCode
(
EVENT_CHAINING
)
e4
:
SetProperty
(
EFFECT_FLAG_DAMAGE_STEP
+
EFFECT_FLAG_DAMAGE_CAL
)
...
...
@@ -50,7 +50,7 @@ function c100416035.tgrfilter1(c)
return
c
:
IsType
(
TYPE_TUNER
)
and
c
:
IsLevelAbove
(
8
)
end
function
c100416035
.
tgrfilter2
(
c
)
return
not
c
:
IsType
(
TYPE_TUNER
)
return
not
c
:
IsType
(
TYPE_TUNER
)
and
c
:
IsType
(
TYPE_SYNCHRO
)
end
function
c100416035
.
mnfilter
(
c
,
g
)
return
g
:
IsExists
(
c100416035
.
mnfilter2
,
1
,
c
,
c
)
...
...
@@ -86,20 +86,20 @@ function c100416035.desop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Destroy
(
dg
,
REASON_EFFECT
)
end
end
function
c100416035
.
negfilter
(
c
)
function
c100416035
.
negfilter
(
c
,
tp
)
return
c
:
IsFaceup
()
and
c
:
IsSetCard
(
0x261
)
and
c
:
IsOnField
()
and
c
:
IsControler
(
tp
)
end
function
c100416035
.
negcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
e
:
GetHandler
():
IsStatus
(
STATUS_BATTLE_DESTROYED
)
then
return
false
end
if
not
re
:
IsHasProperty
(
EFFECT_FLAG_CARD_TARGET
)
then
return
false
end
local
tg
=
Duel
.
GetChainInfo
(
ev
,
CHAININFO_TARGET_CARDS
)
return
tg
and
tg
:
IsExists
(
c100416035
.
negfilter
,
1
,
nil
)
and
Duel
.
IsChainNegatable
(
ev
)
return
tg
and
tg
:
IsExists
(
c100416035
.
negfilter
,
1
,
nil
,
tp
)
and
Duel
.
IsChainNegatable
(
ev
)
end
function
c100416035
.
costfilter
(
c
,
tp
)
if
c
:
IsLocation
(
LOCATION_HAND
+
LOCATION_MZONE
+
LOCATION_GRAVE
)
then
if
c
:
IsLocation
(
LOCATION_HAND
+
LOCATION_MZONE
)
then
return
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsReleasable
()
else
return
c
:
Is
LevelAbove
(
7
)
and
c
:
IsSetCard
(
0x261
)
and
c
:
Is
AbleToRemove
()
and
c
:
IsHasEffect
(
100416038
,
tp
)
return
c
:
IsAbleToRemove
()
and
c
:
IsHasEffect
(
100416038
,
tp
)
end
end
function
c100416035
.
negcost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
...
...
@@ -118,12 +118,7 @@ end
function
c100416035
.
negtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
true
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_NEGATE
,
eg
,
1
,
0
,
0
)
if
re
:
GetHandler
():
IsDestructable
()
and
re
:
GetHandler
():
IsRelateToEffect
(
re
)
then
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DESTROY
,
eg
,
1
,
0
,
0
)
end
end
function
c100416035
.
negop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
Duel
.
NegateActivation
(
ev
)
and
re
:
GetHandler
():
IsRelateToEffect
(
re
)
then
Duel
.
Destroy
(
eg
,
REASON_EFFECT
)
end
Duel
.
NegateActivation
(
ev
)
end
script/c100416039.lua
View file @
0357e59e
...
...
@@ -56,8 +56,7 @@ function c100416039.spfilter2(c,e,tp,lv)
return
c100416039
.
spfilter
(
c
,
e
,
tp
,
nil
)
and
c
:
IsLevel
(
lv
)
end
function
c100416039
.
fselect
(
g
,
e
,
tp
)
return
g
:
GetCount
()
==
2
and
g
:
IsExists
(
Card
.
IsType
,
1
,
nil
,
TYPE_TUNER
)
and
g
:
IsExists
(
aux
.
NOT
(
Card
.
IsType
),
1
,
nil
,
TYPE_TUNER
)
and
Duel
.
IsExistingMatchingCard
(
c100416039
.
spfilter1
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
e
,
tp
,
g
)
return
g
:
GetCount
()
==
2
and
Duel
.
IsExistingMatchingCard
(
c100416039
.
spfilter1
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
nil
,
e
,
tp
,
g
)
end
function
c100416039
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
b1
=
Duel
.
IsExistingMatchingCard
(
c100416039
.
thfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
...
...
@@ -98,9 +97,9 @@ function c100416039.activate(e,tp,eg,ep,ev,re,r,rp)
if
rg
and
rg
:
GetCount
()
==
2
then
local
c1
=
rg
:
GetFirst
()
local
c2
=
rg
:
GetNext
()
if
Duel
.
Release
(
rg
,
REASON_EFFECT
)
==
2
then
local
lv
=
c1
:
GetLevel
()
-
c2
:
GetLevel
()
if
lv
<
0
then
lv
=-
lv
end
if
Duel
.
Release
(
rg
,
REASON_EFFECT
)
==
2
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SPSUMMON
)
local
sg
=
Duel
.
SelectMatchingCard
(
tp
,
c100416039
.
spfilter2
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
,
e
,
tp
,
lv
)
if
sg
:
GetCount
()
>
0
then
...
...
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