Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
P
pre-release-database-cdb
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
Crescent/毛虫
pre-release-database-cdb
Commits
334cd55c
Commit
334cd55c
authored
Oct 17, 2024
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix マテリアクトル
parent
fcc07abb
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
5 deletions
+16
-5
script/c101207045.lua
script/c101207045.lua
+6
-4
script/c101207059.lua
script/c101207059.lua
+10
-1
No files found.
script/c101207045.lua
View file @
334cd55c
...
...
@@ -86,12 +86,14 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_ATOHAND
)
local
tg
=
g
:
SelectSubGroup
(
tp
,
s
.
thcheck
,
false
,
1
,
2
)
if
#
tg
>
0
and
Duel
.
SendtoHand
(
tg
,
nil
,
REASON_EFFECT
)
~=
0
and
tg
:
IsExists
(
Card
.
IsLocation
,
1
,
nil
,
LOCATION_HAND
)
then
if
tg
:
IsExists
(
Card
.
IsControler
,
1
,
nil
,
tp
)
then
Duel
.
ConfirmCards
(
1
-
tp
,
tg
)
local
sg
=
tg
:
Filter
(
Card
.
IsControler
,
nil
,
tp
)
if
sg
:
GetCount
()
>
0
then
Duel
.
ConfirmCards
(
1
-
tp
,
sg
)
Duel
.
ShuffleHand
(
tp
)
end
if
tg
:
IsExists
(
Card
.
IsControler
,
1
,
nil
,
1
-
tp
)
then
Duel
.
ConfirmCards
(
tp
,
tg
)
local
og
=
tg
:
Filter
(
Card
.
IsControler
,
nil
,
1
-
tp
)
if
og
:
GetCount
()
>
0
then
Duel
.
ConfirmCards
(
tp
,
og
)
Duel
.
ShuffleHand
(
1
-
tp
)
end
if
Duel
.
IsExistingMatchingCard
(
Card
.
IsType
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
,
TYPE_NORMAL
)
...
...
script/c101207059.lua
View file @
334cd55c
...
...
@@ -65,7 +65,16 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
BreakEffect
()
local
thg
=
rg
:
FilterSelect
(
tp
,
Card
.
IsAbleToHand
,
1
,
1
,
nil
)
Duel
.
SendtoHand
(
thg
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
thg
)
local
sg
=
thg
:
Filter
(
Card
.
IsControler
,
nil
,
tp
)
if
sg
:
GetCount
()
>
0
then
Duel
.
ConfirmCards
(
1
-
tp
,
sg
)
Duel
.
ShuffleHand
(
tp
)
end
local
og
=
thg
:
Filter
(
Card
.
IsControler
,
nil
,
1
-
tp
)
if
og
:
GetCount
()
>
0
then
Duel
.
ConfirmCards
(
tp
,
og
)
Duel
.
ShuffleHand
(
1
-
tp
)
end
end
end
function
s
.
ovcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
...
...
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