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
421a68fe
Commit
421a68fe
authored
Aug 03, 2019
by
Nemo Ma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 0803
parent
6ef39503
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
19 additions
and
11 deletions
+19
-11
expansions/pics/9980565.jpg
expansions/pics/9980565.jpg
+0
-0
expansions/script/c13257330.lua
expansions/script/c13257330.lua
+3
-1
expansions/script/c13257333.lua
expansions/script/c13257333.lua
+1
-1
expansions/script/c13257340.lua
expansions/script/c13257340.lua
+3
-2
expansions/script/c13257343.lua
expansions/script/c13257343.lua
+2
-2
expansions/script/c13257344.lua
expansions/script/c13257344.lua
+7
-1
expansions/script/c9981001.lua
expansions/script/c9981001.lua
+0
-1
expansions/script/c9981007.lua
expansions/script/c9981007.lua
+2
-2
expansions/script/c9981036.lua
expansions/script/c9981036.lua
+1
-1
No files found.
expansions/pics/9980565.jpg
View replaced file @
6ef39503
View file @
421a68fe
49.8 KB
|
W:
|
H:
44.8 KB
|
W:
|
H:
2-up
Swipe
Onion skin
expansions/script/c13257330.lua
View file @
421a68fe
...
...
@@ -8,6 +8,7 @@ function cm.initial_effect(c)
e1
:
SetCategory
(
CATEGORY_DESTROY
+
CATEGORY_ATKCHANGE
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e1
:
SetHintTiming
(
0
,
0x1e0
)
e1
:
SetTarget
(
cm
.
destg
)
e1
:
SetOperation
(
cm
.
desop
)
...
...
@@ -44,7 +45,8 @@ function cm.destg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
--if chk==0 then return c13257336.check(Duel.GetAttacker(),tp) or c13257336.check(Duel.GetAttackTarget(),tp) end
if
chkc
==
0
then
return
chkc
:
IsOnField
()
and
cm
.
pcfilter
(
chkc
)
end
if
chk
==
0
then
return
Duel
.
IsExistingTarget
(
cm
.
pcfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
nil
)
and
Duel
.
GetFieldGroupCount
(
tp
,
0
,
LOCATION_MZONE
)
end
local
sg
=
Duel
.
GetMatchingGroup
(
aux
.
TRUE
,
tp
,
0
,
LOCATION_MZONE
,
nil
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FACEUP
)
Duel
.
SelectTarget
(
tp
,
cm
.
pcfilter
,
tp
,
LOCATION_MZONE
,
0
,
1
,
1
,
nil
)
Duel
.
SetChainLimit
(
cm
.
chlimit
)
end
function
cm
.
chlimit
(
e
,
ep
,
tp
)
...
...
expansions/script/c13257333.lua
View file @
421a68fe
...
...
@@ -48,7 +48,7 @@ function cm.eqtg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
end
function
cm
.
eqop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
tc
=
Duel
.
GetFirstTarget
()
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_SZONE
)
<=
0
or
tc
:
IsFacedown
()
or
not
c
:
IsRelateToEffect
(
e
)
or
not
tc
:
IsRelateToEffect
(
e
)
then
return
end
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_SZONE
)
<=
0
or
tc
:
IsFacedown
()
or
not
e
:
GetHandler
()
:
IsRelateToEffect
(
e
)
or
not
tc
:
IsRelateToEffect
(
e
)
then
return
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_EQUIP
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
eqfilter
,
tp
,
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
,
tc
)
if
g
:
GetCount
()
>
0
then
...
...
expansions/script/c13257340.lua
View file @
421a68fe
...
...
@@ -26,6 +26,7 @@ function cm.initial_effect(c)
e2
:
SetType
(
EFFECT_TYPE_CONTINUOUS
+
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EVENT_PHASE
+
PHASE_END
)
e2
:
SetRange
(
LOCATION_MZONE
)
e2
:
SetCountLimit
(
1
)
e2
:
SetOperation
(
cm
.
acop1
)
c
:
RegisterEffect
(
e2
)
local
e3
=
Effect
.
CreateEffect
(
c
)
...
...
@@ -174,8 +175,8 @@ function cm.filter2(c,e)
return
not
c
:
IsImmuneToEffect
(
e
)
end
function
cm
.
cost1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
e
:
GetHandler
():
GetCounter
(
0x351
)
>=
10
end
e
:
GetHandler
():
RemoveCounter
(
tp
,
0x351
,
10
,
REASON_COST
)
if
chk
==
0
then
return
e
:
GetHandler
():
GetCounter
(
0x351
)
>=
5
end
e
:
GetHandler
():
RemoveCounter
(
tp
,
0x351
,
5
,
REASON_COST
)
end
function
cm
.
target1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
filter2
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
nil
)
end
...
...
expansions/script/c13257343.lua
View file @
421a68fe
...
...
@@ -110,7 +110,7 @@ function cm.bombop(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetCode
(
EFFECT_SKIP_M1
)
e1
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e1
:
SetTargetRange
(
1
,
0
)
if
Duel
.
GetTurnPlayer
()
==
tp
and
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
then
if
Duel
.
GetTurnPlayer
()
==
tp
then
e1
:
SetLabel
(
Duel
.
GetTurnCount
())
e1
:
SetCondition
(
cm
.
skipcon
)
e1
:
SetReset
(
RESET_PHASE
+
PHASE_END
+
RESET_SELF_TURN
,
2
)
...
...
@@ -123,7 +123,7 @@ function cm.bombop(e,tp,eg,ep,ev,re,r,rp)
e2
:
SetCode
(
EFFECT_SKIP_M1
)
e2
:
SetProperty
(
EFFECT_FLAG_PLAYER_TARGET
)
e2
:
SetTargetRange
(
0
,
1
)
if
Duel
.
GetTurnPlayer
()
~=
tp
and
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
then
if
Duel
.
GetTurnPlayer
()
~=
tp
then
e2
:
SetLabel
(
Duel
.
GetTurnCount
())
e2
:
SetCondition
(
cm
.
skipcon
)
e2
:
SetReset
(
RESET_PHASE
+
PHASE_END
+
RESET_OPPO_TURN
,
2
)
...
...
expansions/script/c13257344.lua
View file @
421a68fe
...
...
@@ -75,12 +75,18 @@ function cm.operation(e,tp,eg,ep,ev,re,r,rp)
c
:
RegisterEffect
(
e4
)
end
function
cm
.
desfilter
(
c
,
e
)
return
e
:
GetHandler
():
GetAttack
()
>
c
:
GetAttack
()
return
e
:
GetHandler
():
GetAttack
()
>
=
c
:
GetAttack
()
end
function
cm
.
desop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
sg
=
Duel
.
GetMatchingGroup
(
cm
.
desfilter
,
tp
,
0
,
LOCATION_MZONE
,
nil
,
e
)
Duel
.
Destroy
(
sg
,
REASON_EFFECT
)
end
function
cm
.
pcfilter
(
c
,
tp
)
return
c
:
IsReason
(
REASON_BATTLE
+
REASON_EFFECT
)
and
c
:
IsPreviousLocation
(
LOCATION_MZONE
)
and
c
:
GetPreviousControler
()
==
tp
end
function
cm
.
pccon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
cm
.
pcfilter
,
1
,
nil
,
1
-
tp
)
end
function
cm
.
pctg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
e
:
GetHandler
():
IsCanAddCounter
(
0x351
,
1
)
end
end
...
...
expansions/script/c9981001.lua
View file @
421a68fe
...
...
@@ -20,7 +20,6 @@ function c9981001.initial_effect(c)
e3
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e3
:
SetRange
(
LOCATION_MZONE
)
e3
:
SetCountLimit
(
1
,
9981001
)
e3
:
SetCondition
(
c9981001
.
condition
)
e3
:
SetCost
(
c9981001
.
spcost
)
e3
:
SetTarget
(
c9981001
.
sptg
)
e3
:
SetOperation
(
c9981001
.
spop
)
...
...
expansions/script/c9981007.lua
View file @
421a68fe
...
...
@@ -32,12 +32,12 @@ function c9981007.initial_effect(c)
e2
:
SetOperation
(
c9981007
.
spop
)
c
:
RegisterEffect
(
e2
)
end
function
c9981007
.
filter
(
c
)
function
c9981007
.
th
filter
(
c
)
return
c
:
IsSetCard
(
0x5bc1
)
and
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsAbleToHand
()
end
function
c9981007
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
not
e
:
GetHandler
():
IsRelateToEffect
(
e
)
then
return
end
local
g
=
Duel
.
GetMatchingGroup
(
c9981007
.
filter
,
tp
,
LOCATION_DECK
,
0
,
nil
)
local
g
=
Duel
.
GetMatchingGroup
(
c9981007
.
th
filter
,
tp
,
LOCATION_DECK
,
0
,
nil
)
if
g
:
GetCount
()
>
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
9981007
,
0
))
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
local
sg
=
g
:
Select
(
tp
,
1
,
1
,
nil
)
...
...
expansions/script/c9981036.lua
View file @
421a68fe
...
...
@@ -22,7 +22,7 @@ function c9981036.initial_effect(c)
e2
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e2
:
SetType
(
EFFECT_TYPE_IGNITION
)
e2
:
SetRange
(
LOCATION_GRAVE
)
e2
:
SetCountLimit
(
1
,
9981036
)
e2
:
SetCountLimit
(
1
,
9981036
0
)
e2
:
SetCost
(
aux
.
bfgcost
)
e2
:
SetTarget
(
c9981036
.
target
)
e2
:
SetOperation
(
c9981036
.
operation
)
...
...
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