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
240c0ece
Commit
240c0ece
authored
Jul 23, 2024
by
Nemo Ma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
10013348
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
5 deletions
+13
-5
expansions/script/c12844103.lua
expansions/script/c12844103.lua
+3
-3
expansions/script/c12844105.lua
expansions/script/c12844105.lua
+8
-0
expansions/script/c12844113.lua
expansions/script/c12844113.lua
+1
-1
expansions/script/c98920283.lua
expansions/script/c98920283.lua
+1
-1
No files found.
expansions/script/c12844103.lua
View file @
240c0ece
...
@@ -23,7 +23,7 @@ function s.initial_effect(c)
...
@@ -23,7 +23,7 @@ function s.initial_effect(c)
local
e2
=
Effect
.
CreateEffect
(
c
)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e2
:
SetProperty
(
EFFECT_FLAG_IGNORE_IMMUNE
)
e2
:
SetProperty
(
EFFECT_FLAG_IGNORE_IMMUNE
)
e2
:
SetCode
(
EVENT_
ADJUST
)
e2
:
SetCode
(
EVENT_
MOVE
)
e2
:
SetRange
(
LOCATION_MZONE
)
e2
:
SetRange
(
LOCATION_MZONE
)
e2
:
SetOperation
(
s
.
adjustop
)
e2
:
SetOperation
(
s
.
adjustop
)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
...
@@ -76,10 +76,10 @@ end
...
@@ -76,10 +76,10 @@ end
function
s
.
adjustop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
s
.
adjustop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
sg
=
Duel
.
GetMatchingGroup
(
s
.
rmfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
local
sg
=
Duel
.
GetMatchingGroup
(
s
.
rmfilter
,
tp
,
LOCATION_MZONE
,
0
,
nil
)
if
#
sg
>
1
then
if
#
sg
>
1
then
Duel
.
Hint
(
HINT_SELECTMSG
,
1
-
tp
,
HINTMSG_FACEUP
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FACEUP
)
local
sc
=
sg
:
Select
(
tp
,
1
,
1
,
nil
):
GetFirst
()
local
sc
=
sg
:
Select
(
tp
,
1
,
1
,
nil
):
GetFirst
()
sg
:
RemoveCard
(
sc
)
sg
:
RemoveCard
(
sc
)
Duel
.
SendtoGrave
(
sg
,
REASON_RULE
)
Duel
.
SendtoGrave
(
sg
,
REASON_RULE
)
Duel
.
Readjust
()
--
Duel.Readjust()
end
end
end
end
expansions/script/c12844105.lua
View file @
240c0ece
...
@@ -32,6 +32,14 @@ function s.initial_effect(c)
...
@@ -32,6 +32,14 @@ function s.initial_effect(c)
e3
:
SetCode
(
EVENT_TO_GRAVE
)
e3
:
SetCode
(
EVENT_TO_GRAVE
)
e3
:
SetOperation
(
s
.
regop
)
e3
:
SetOperation
(
s
.
regop
)
c
:
RegisterEffect
(
e3
)
c
:
RegisterEffect
(
e3
)
--spsummon condition
local
e4
=
Effect
.
CreateEffect
(
c
)
e4
:
SetType
(
EFFECT_TYPE_SINGLE
)
e4
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
+
EFFECT_FLAG_SINGLE_RANGE
)
e4
:
SetCode
(
EFFECT_SPSUMMON_CONDITION
)
e4
:
SetRange
(
LOCATION_EXTRA
)
e4
:
SetValue
(
aux
.
fuslimit
)
c
:
RegisterEffect
(
e4
)
end
end
function
s
.
cfilter
(
c
)
function
s
.
cfilter
(
c
)
return
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsFusionSetCard
(
0xa77
)
and
c
:
IsAbleToRemoveAsCost
()
return
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsFusionSetCard
(
0xa77
)
and
c
:
IsAbleToRemoveAsCost
()
...
...
expansions/script/c12844113.lua
View file @
240c0ece
...
@@ -79,7 +79,7 @@ function s.teop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -79,7 +79,7 @@ function s.teop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
aux
.
Stringid
(
7984540
,
1
))
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
aux
.
Stringid
(
7984540
,
1
))
local
sc
=
sg
:
Select
(
tp
,
1
,
3
,
nil
)
local
sc
=
sg
:
Select
(
tp
,
1
,
3
,
nil
)
if
#
sc
~=
0
then
if
#
sc
~=
0
then
Duel
.
SendtoDeck
(
s
g
,
nil
,
SEQ_DECKSHUFFLE
,
REASON_EFFECT
)
Duel
.
SendtoDeck
(
s
c
,
nil
,
SEQ_DECKSHUFFLE
,
REASON_EFFECT
)
end
end
end
end
expansions/script/c98920283.lua
View file @
240c0ece
...
@@ -74,7 +74,7 @@ function c98920283.desop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -74,7 +74,7 @@ function c98920283.desop(e,tp,eg,ep,ev,re,r,rp)
end
end
local
g2
=
Duel
.
GetMatchingGroup
(
c98920283
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
nil
)
local
g2
=
Duel
.
GetMatchingGroup
(
c98920283
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
nil
)
if
ct1
>
0
and
g2
:
GetCount
()
>=
ct1
then
if
ct1
>
0
and
g2
:
GetCount
()
>=
ct1
then
local
sg
=
Duel
.
SelectMatchingCard
(
tp
,
c98920283
.
filter
,
tp
,
LOCATION_DECK
,
0
,
ct1
,
ct1
,
nil
)
local
sg
=
Duel
.
SelectMatchingCard
(
tp
,
c98920283
.
th
filter
,
tp
,
LOCATION_DECK
,
0
,
ct1
,
ct1
,
nil
)
Duel
.
SendtoHand
(
sg
,
nil
,
REASON_EFFECT
)
Duel
.
SendtoHand
(
sg
,
nil
,
REASON_EFFECT
)
Duel
.
ConfirmCards
(
1
-
tp
,
sg
)
Duel
.
ConfirmCards
(
1
-
tp
,
sg
)
end
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