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
Huangnan
no81cards
Commits
5c7f694d
Commit
5c7f694d
authored
Jul 21, 2023
by
Nemo Ma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
da8344b8
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
12 deletions
+13
-12
expansions/script/c29017393.lua
expansions/script/c29017393.lua
+4
-5
expansions/script/c29065555.lua
expansions/script/c29065555.lua
+1
-0
expansions/script/c29068155.lua
expansions/script/c29068155.lua
+1
-0
expansions/script/c60002200.lua
expansions/script/c60002200.lua
+3
-3
expansions/script/c60002201.lua
expansions/script/c60002201.lua
+2
-2
expansions/script/c60002202.lua
expansions/script/c60002202.lua
+2
-2
No files found.
expansions/script/c29017393.lua
View file @
5c7f694d
...
...
@@ -101,7 +101,6 @@ end
end
if
cm
then
cm
.
named_with_Arknight
=
1
function
cm
.
initial_effect
(
c
)
c
:
EnableCounterPermit
(
0x10ae
)
c
:
EnableReviveLimit
()
...
...
@@ -162,12 +161,12 @@ function c29017393.ctop(e,tp,eg,ep,ev,re,r,rp)
local
c
=
e
:
GetHandler
()
if
e
:
GetHandler
():
IsRelateToEffect
(
e
)
then
local
n
=
1
if
Duel
.
IsPlayerAffectedByEffect
(
tp
,
29065580
)
then
n
=
n
+
1
end
--
if Duel.IsPlayerAffectedByEffect(tp,29065580) then
--
n=n+1
--
end
e
:
GetHandler
():
AddCounter
(
0x10ae
,
n
)
end
if
Duel
.
IsExistingMatchingCard
(
c29017393
.
refilter
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
290
6552
3
,
2
))
then
if
Duel
.
IsExistingMatchingCard
(
c29017393
.
refilter
,
tp
,
0
,
LOCATION_ONFIELD
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
290
1739
3
,
2
))
then
local
sg
=
Duel
.
GetMatchingGroup
(
c29017393
.
refilter
,
tp
,
0
,
LOCATION_ONFIELD
,
nil
)
if
sg
:
GetCount
()
>
0
then
Duel
.
Remove
(
sg
,
POS_FACEDOWN
,
REASON_EFFECT
)
...
...
expansions/script/c29065555.lua
View file @
5c7f694d
--方舟骑士-玛恩纳
c29065555
.
named_with_Arknight
=
1
function
c29065555
.
initial_effect
(
c
)
--xyz summon
c
:
EnableReviveLimit
()
...
...
expansions/script/c29068155.lua
View file @
5c7f694d
--引领者 -方舟骑士-
c29068155
.
named_with_Arknight
=
1
function
c29068155
.
initial_effect
(
c
)
--link summon
c
:
EnableReviveLimit
()
...
...
expansions/script/c60002200.lua
View file @
5c7f694d
...
...
@@ -22,7 +22,7 @@ function cm.initial_effect(c)
c
:
RegisterEffect
(
e3
)
end
function
cm
.
filter
(
c
)
return
c
:
IsCode
(
60002199
)
and
c
:
IsAbleTo
Hand
()
return
c
:
IsCode
(
60002199
)
and
c
:
IsAbleTo
Remove
()
end
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsCanAddCounter
(
tp
,
0x625
,
1
,
e
:
GetHandler
())
end
...
...
@@ -34,8 +34,8 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
c
:
AddCounter
(
0x625
,
2
)
if
Duel
.
IsExistingMatchingCard
(
cm
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
0
))
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
filter
,
tp
,
0
,
LOCATION_GRAVE
,
1
,
1
,
nil
)
Duel
.
Remove
(
g
:
GetFirst
()
,
POS_FACEUP
,
REASON_EFFECT
)
local
tc
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
)
Duel
.
Remove
(
tc
,
POS_FACEUP
,
REASON_EFFECT
)
Duel
.
Recover
(
tp
,
500
,
REASON_EFFECT
)
Duel
.
Draw
(
tp
,
1
,
REASON_EFFECT
)
end
...
...
expansions/script/c60002201.lua
View file @
5c7f694d
...
...
@@ -37,8 +37,8 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
c
:
AddCounter
(
0x625
,
2
)
if
Duel
.
IsExistingMatchingCard
(
cm
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
0
))
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
filter
,
tp
,
0
,
LOCATION_GRAVE
,
1
,
1
,
nil
)
Duel
.
Remove
(
g
:
GetFirst
()
,
POS_FACEUP
,
REASON_EFFECT
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
)
Duel
.
Remove
(
g
,
POS_FACEUP
,
REASON_EFFECT
)
Duel
.
Recover
(
tp
,
500
,
REASON_EFFECT
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_DESTROY
)
local
g2
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
xfilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
1
,
nil
)
...
...
expansions/script/c60002202.lua
View file @
5c7f694d
...
...
@@ -34,8 +34,8 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
c
:
AddCounter
(
0x625
,
2
)
if
Duel
.
IsExistingMatchingCard
(
cm
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
0
))
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_REMOVE
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
filter
,
tp
,
0
,
LOCATION_GRAVE
,
1
,
1
,
nil
)
Duel
.
Remove
(
g
:
GetFirst
()
,
POS_FACEUP
,
REASON_EFFECT
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
cm
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
)
Duel
.
Remove
(
g
,
POS_FACEUP
,
REASON_EFFECT
)
Duel
.
Recover
(
tp
,
1500
,
REASON_EFFECT
)
end
--cost
...
...
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