Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
no81cards
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
Nemo Ma
no81cards
Commits
4d9b610e
Commit
4d9b610e
authored
Oct 31, 2019
by
Nemo Ma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
319bba28
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
25 deletions
+24
-25
expansions/script/c33701017.lua
expansions/script/c33701017.lua
+3
-2
expansions/script/c33701018.lua
expansions/script/c33701018.lua
+4
-3
expansions/script/c33701020.lua
expansions/script/c33701020.lua
+3
-5
expansions/script/c33701021.lua
expansions/script/c33701021.lua
+3
-5
expansions/script/c9950143.lua
expansions/script/c9950143.lua
+10
-10
expansions/script/c9950187.lua
expansions/script/c9950187.lua
+1
-0
No files found.
expansions/script/c33701017.lua
View file @
4d9b610e
...
...
@@ -61,9 +61,10 @@ function s.spcost(e, tp, eg, ep, ev, re, r, rp, chk)
local
rg
=
Duel
.
GetMatchingGroup
(
s
.
spfilter
,
tp
,
LOCATION_HAND
+
LOCATION_GRAVE
,
0
,
e
:
GetHandler
())
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
-
2
and
#
rg
>
1
and
aux
.
SelectUnselectGroup
(
rg
,
e
,
tp
,
2
,
2
,
s
.
ChkfMMZ
(
1
),
0
)
rg
:
CheckSubGroup
(
s
.
ChkfMMZ
(
1
),
2
,
2
,
tp
)
end
local
g
=
aux
.
SelectUnselectGroup
(
rg
,
e
,
tp
,
2
,
2
,
s
.
ChkfMMZ
(
1
),
1
,
tp
,
HINTMSG_REMOVE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
g
=
rg
:
SelectSubGroup
(
s
.
ChkfMMZ
(
1
),
tp
,
2
,
2
,
tp
)
Duel
.
Remove
(
g
,
POS_FACEUP
,
REASON_COST
)
end
function
s
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
...
...
expansions/script/c33701018.lua
View file @
4d9b610e
...
...
@@ -53,7 +53,7 @@ function s.MZFilter(c, tp)
return
c
:
IsLocation
(
LOCATION_MZONE
)
and
c
:
GetSequence
()
<
5
and
c
:
IsControler
(
tp
)
end
function
s
.
ChkfMMZ
(
sumcount
)
return
function
(
sg
,
e
,
tp
,
mg
)
return
function
(
sg
,
tp
)
return
sg
:
FilterCount
(
s
.
MZFilter
,
nil
,
tp
)
+
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>=
sumcount
end
end
...
...
@@ -61,9 +61,10 @@ function s.spcost(e, tp, eg, ep, ev, re, r, rp, chk)
local
rg
=
Duel
.
GetMatchingGroup
(
s
.
spfilter
,
tp
,
LOCATION_HAND
+
LOCATION_MZONE
+
LOCATION_GRAVE
,
0
,
e
:
GetHandler
())
if
chk
==
0
then
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
-
3
and
#
rg
>
1
and
aux
.
SelectUnselectGroup
(
rg
,
e
,
tp
,
3
,
3
,
s
.
ChkfMMZ
(
1
),
0
)
rg
:
CheckSubGroup
(
s
.
ChkfMMZ
(
1
),
3
,
3
,
tp
)
end
local
g
=
aux
.
SelectUnselectGroup
(
rg
,
e
,
tp
,
3
,
3
,
s
.
ChkfMMZ
(
1
),
1
,
tp
,
HINTMSG_REMOVE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
g
=
rg
:
SelectSubGroup
(
s
.
ChkfMMZ
(
1
),
3
,
3
,
tp
)
Duel
.
Remove
(
g
,
POS_FACEUP
,
REASON_COST
)
end
function
s
.
sptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
...
...
expansions/script/c33701020.lua
View file @
4d9b610e
...
...
@@ -62,19 +62,17 @@ end
function
s
.
tgfilter
(
c
)
return
c
:
IsSetCard
(
0x144e
)
and
c
:
IsAbleToGrave
()
end
function
s
.
rescon
(
sg
,
e
,
tp
,
mg
)
return
sg
:
GetClassCount
(
Card
.
GetCode
)
==
#
sg
end
function
s
.
tgtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
g
=
Duel
.
GetMatchingGroup
(
s
.
tgfilter
,
tp
,
LOCATION_DECK
,
0
,
nil
)
if
chk
==
0
then
return
aux
.
SelectUnselectGroup
(
g
,
e
,
tp
,
1
,
4
,
s
.
rescon
,
chk
)
return
g
:
CheckSubGroup
(
aux
.
dncheck
,
1
,
4
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOGRAVE
,
g
,
1
,
0
,
0
)
end
function
s
.
tgop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
g
=
Duel
.
GetMatchingGroup
(
s
.
tgfilter
,
tp
,
LOCATION_DECK
,
0
,
nil
,
e
,
tp
)
local
dg
=
aux
.
SelectUnselectGroup
(
g
,
e
,
tp
,
1
,
4
,
s
.
rescon
,
1
,
tp
,
HINTMSG_TOGRAVE
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TOGRAVE
)
local
dg
=
g
:
SelectSubGroup
(
aux
.
dncheck
,
tp
,
1
,
4
)
if
#
dg
>
0
then
local
ct
=
Duel
.
SendtoGrave
(
dg
,
REASON_EFFECT
)
if
ct
>
0
and
Duel
.
Recover
(
tp
,
ct
*
1000
,
REASON_EFFECT
)
>
0
then
...
...
expansions/script/c33701021.lua
View file @
4d9b610e
...
...
@@ -33,16 +33,14 @@ end
function
s
.
tgfilter
(
c
)
return
c
:
IsSetCard
(
0x144e
)
and
c
:
IsAbleToGrave
()
end
function
s
.
rescon
(
sg
,
e
,
tp
,
mg
)
return
sg
:
GetClassCount
(
Card
.
GetCode
)
==
#
sg
end
function
s
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
not
e
:
GetHandler
():
IsRelateToEffect
(
e
)
then
return
end
local
g
=
Duel
.
GetMatchingGroup
(
s
.
tgfilter
,
tp
,
LOCATION_DECK
,
0
,
nil
)
if
aux
.
SelectUnselectGroup
(
g
,
e
,
tp
,
1
,
3
,
s
.
rescon
,
0
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
id
,
0
))
then
local
dg
=
aux
.
SelectUnselectGroup
(
g
,
e
,
tp
,
1
,
3
,
s
.
rescon
,
1
,
tp
,
HINTMSG_TOGRAVE
)
if
g
:
CheckSubGroup
(
aux
.
dncheck
,
1
,
3
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
id
,
0
))
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_TOGRAVE
)
local
dg
=
g
:
SelectSubGroup
(
aux
.
dncheck
,
tp
,
1
,
3
)
Duel
.
SendtoGrave
(
dg
,
REASON_EFFECT
)
end
end
...
...
expansions/script/c9950143.lua
View file @
4d9b610e
...
...
@@ -21,8 +21,8 @@ function c9950143.initial_effect(c)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetHintTiming
(
0
,
TIMINGS_CHECK_MONSTER
)
e3
:
SetCountLimit
(
1
,
9950143
)
e3
:
SetTarget
(
c9950143
.
target
)
e3
:
SetOperation
(
c9950143
.
operation
)
e3
:
SetTarget
(
c9950143
.
target
1
)
e3
:
SetOperation
(
c9950143
.
operation
1
)
c
:
RegisterEffect
(
e3
)
--negate
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
@@ -33,9 +33,9 @@ function c9950143.initial_effect(c)
e1
:
SetRange
(
LOCATION_MZONE
)
e1
:
SetCountLimit
(
1
)
e1
:
SetCode
(
EVENT_CHAINING
)
e1
:
SetCondition
(
c9950143
.
condition
)
e1
:
SetTarget
(
c9950143
.
target
)
e1
:
SetOperation
(
c9950143
.
operation
)
e1
:
SetCondition
(
c9950143
.
condition
2
)
e1
:
SetTarget
(
c9950143
.
target
2
)
e1
:
SetOperation
(
c9950143
.
operation
2
)
c
:
RegisterEffect
(
e1
)
--spsummon bgm
local
e8
=
Effect
.
CreateEffect
(
c
)
...
...
@@ -53,7 +53,7 @@ end
function
c9950143
.
sumsuc
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_MUSIC
,
0
,
aux
.
Stringid
(
9950143
,
0
))
end
function
c9950143
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
function
c9950143
.
target
1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
if
chkc
then
return
chkc
:
IsOnField
()
and
aux
.
disfilter1
(
chkc
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
aux
.
disfilter1
,
tp
,
LOCATION_ONFIELD
,
LOCATION_ONFIELD
,
1
,
nil
)
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FACEUP
)
...
...
@@ -61,7 +61,7 @@ function c9950143.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DISABLE
,
g
,
1
,
0
,
0
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DRAW
,
nil
,
0
,
tp
,
1
)
end
function
c9950143
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c9950143
.
operation
1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
tc
=
Duel
.
GetFirstTarget
()
if
((
tc
:
IsFaceup
()
and
not
tc
:
IsDisabled
())
or
tc
:
IsType
(
TYPE_TRAPMONSTER
))
and
tc
:
IsRelateToEffect
(
e
)
then
...
...
@@ -104,17 +104,17 @@ function c9950143.operation(e,tp,eg,ep,ev,re,r,rp)
end
Duel
.
Hint
(
HINT_MUSIC
,
0
,
aux
.
Stringid
(
9950143
,
0
))
end
function
c9950143
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c9950143
.
condition
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
loc
=
Duel
.
GetChainInfo
(
ev
,
CHAININFO_TRIGGERING_LOCATION
)
return
ep
~=
tp
and
loc
==
LOCATION_MZONE
and
re
:
IsActiveType
(
TYPE_MONSTER
)
and
Duel
.
IsChainNegatable
(
ev
)
and
re
:
GetHandler
():
IsSummonType
(
SUMMON_TYPE_SPECIAL
)
end
function
c9950143
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
c9950143
.
target
2
(
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
)
Duel
.
SetOperationInfo
(
0
,
CATEGORY_DRAW
,
nil
,
0
,
tp
,
1
)
end
function
c9950143
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
c9950143
.
operation
2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
NegateActivation
(
ev
)
Duel
.
BreakEffect
()
Duel
.
Draw
(
tp
,
1
,
REASON_EFFECT
)
...
...
expansions/script/c9950187.lua
View file @
4d9b610e
...
...
@@ -6,6 +6,7 @@ function c9950187.initial_effect(c)
e1
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e1
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetRange
(
LOCATION_HAND
)
e1
:
SetCountLimit
(
1
,
9950187
)
e1
:
SetCost
(
c9950187
.
cost
)
e1
:
SetTarget
(
c9950187
.
target
)
...
...
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