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
92319d4f
Commit
92319d4f
authored
Jun 17, 2024
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
47d8119d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
33 deletions
+1
-33
expansions/no42.cdb
expansions/no42.cdb
+0
-0
expansions/pics/9912001.jpg
expansions/pics/9912001.jpg
+0
-0
expansions/script/c11451851.lua
expansions/script/c11451851.lua
+1
-1
expansions/script/c9912001.lua
expansions/script/c9912001.lua
+0
-32
No files found.
expansions/no42.cdb
View file @
92319d4f
No preview for this file type
expansions/pics/9912001.jpg
deleted
100644 → 0
View file @
47d8119d
42 KB
expansions/script/c11451851.lua
View file @
92319d4f
...
@@ -428,7 +428,7 @@ function cm.desop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -428,7 +428,7 @@ function cm.desop(e,tp,eg,ep,ev,re,r,rp)
end
end
if
Duel
.
GetCurrentChain
()
==
1
then
if
Duel
.
GetCurrentChain
()
==
1
then
op
(
e
,
tp
)
op
(
e
,
tp
)
else
else
if
e
:
GetHandler
():
GetFlagEffect
(
11451862
)
>
0
then
e
:
GetHandler
():
ResetFlagEffect
(
11451862
)
e
:
GetHandler
():
ResetFlagEffect
(
11451862
)
if
SetCardData
then
if
SetCardData
then
Duel
.
Hint
(
24
,
0
,
aux
.
Stringid
(
11451862
,
2
))
Duel
.
Hint
(
24
,
0
,
aux
.
Stringid
(
11451862
,
2
))
...
...
expansions/script/c9912001.lua
deleted
100644 → 0
View file @
47d8119d
--天马行空
function
c9912001
.
initial_effect
(
c
)
--Activate
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetCategory
(
CATEGORY_TOHAND
+
CATEGORY_SEARCH
)
e1
:
SetType
(
EFFECT_TYPE_ACTIVATE
)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetTarget
(
c9912001
.
target
)
e1
:
SetOperation
(
c9912001
.
activate
)
c
:
RegisterEffect
(
e1
)
end
function
c9912001
.
filter
(
c
)
return
(
c
:
IsLocation
(
LOCATION_DECK
)
or
c
:
IsFacedown
())
and
c
:
IsCode
(
15000211
,
11451001
,
9910051
,
65130301
)
and
c
:
IsAbleToHand
()
end
function
c9912001
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
c9912001
.
filter
,
tp
,
LOCATION_DECK
+
LOCATION_REMOVED
,
0
,
1
,
nil
)
end
Duel
.
SetOperationInfo
(
0
,
CATEGORY_TOHAND
,
nil
,
1
,
tp
,
LOCATION_DECK
+
LOCATION_REMOVED
)
end
function
c9912001
.
activate
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
c9912001
.
filter
,
tp
,
LOCATION_DECK
+
LOCATION_REMOVED
,
0
,
1
,
1
,
nil
)
local
tc
=
g
:
GetFirst
()
if
not
tc
or
Duel
.
SendtoHand
(
tc
,
nil
,
REASON_EFFECT
)
==
0
or
not
tc
:
IsLocation
(
LOCATION_HAND
)
then
return
end
Duel
.
SendtoHand
(
tc
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
tc
)
local
sg
=
Group
.
CreateGroup
()
for
i
=
1
,
2
do
local
cc
=
Duel
.
CreateToken
(
tp
,
tc
:
GetCode
())
sg
:
AddCard
(
cc
)
end
Duel
.
SendtoDeck
(
sg
,
tp
,
SEQ_DECKSHUFFLE
,
REASON_RULE
)
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