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
8cb2cff2
Commit
8cb2cff2
authored
Mar 23, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
237b6dd3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
5 deletions
+9
-5
expansions/script/c11451969.lua
expansions/script/c11451969.lua
+1
-1
expansions/script/c7480828.lua
expansions/script/c7480828.lua
+1
-1
expansions/script/c7497718.lua
expansions/script/c7497718.lua
+5
-3
expansions/strings.conf
expansions/strings.conf
+2
-0
No files found.
expansions/script/c11451969.lua
View file @
8cb2cff2
...
@@ -91,7 +91,7 @@ function cm.chop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -91,7 +91,7 @@ function cm.chop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
ChangeChainOperation
(
ev
,
cm
.
repop
)
Duel
.
ChangeChainOperation
(
ev
,
cm
.
repop
)
end
end
function
cm
.
repop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
function
cm
.
repop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
e2
=
Effect
.
CreateEffect
(
c
)
local
e2
=
Effect
.
CreateEffect
(
e
:
GetHandler
()
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetType
(
EFFECT_TYPE_FIELD
)
e2
:
SetCode
(
EFFECT_DISABLE
)
e2
:
SetCode
(
EFFECT_DISABLE
)
e2
:
SetTargetRange
(
0
,
LOCATION_ONFIELD
)
e2
:
SetTargetRange
(
0
,
LOCATION_ONFIELD
)
...
...
expansions/script/c7480828.lua
View file @
8cb2cff2
...
@@ -53,7 +53,7 @@ function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
...
@@ -53,7 +53,7 @@ function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
if
chk
==
0
then
if
chk
==
0
then
if
e
:
GetLabel
()
~=
100
then
return
false
end
if
e
:
GetLabel
()
~=
100
then
return
false
end
e
:
SetLabel
(
0
)
e
:
SetLabel
(
0
)
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
-
1
return
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
IsExistingMatchingCard
(
s
.
spfilter1
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
,
e
,
tp
)
and
Duel
.
IsExistingMatchingCard
(
s
.
spfilter1
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
,
e
,
tp
)
end
end
e
:
SetLabel
(
0
)
e
:
SetLabel
(
0
)
...
...
expansions/script/c7497718.lua
View file @
8cb2cff2
...
@@ -77,7 +77,8 @@ function s.adjustop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -77,7 +77,8 @@ function s.adjustop(e,tp,eg,ep,ev,re,r,rp)
end
end
BlackLotus_ElementSaber_Effect
=
{}
BlackLotus_ElementSaber_Effect
=
{}
Card
.
RegisterEffect
=
function
(
card
,
effect
,
flag
)
Card
.
RegisterEffect
=
function
(
card
,
effect
,
flag
)
if
effect
and
s
.
GetRange
(
effect
)
==
LOCATION_MZONE
and
(
effect
:
IsHasType
(
EFFECT_TYPE_QUICK_O
)
or
effect
:
IsHasType
(
EFFECT_TYPE_IGNITION
))
then
if
effect
and
s
.
GetRange
(
effect
)
==
LOCATION_MZONE
and
((
effect
:
IsHasType
(
EFFECT_TYPE_QUICK_O
)
and
bit
.
band
(
effect
:
GetCode
(),
EVENT_FREE_CHAIN
)
==
EVENT_FREE_CHAIN
)
or
effect
:
IsHasType
(
EFFECT_TYPE_IGNITION
))
then
--Duel.Hint(HINT_CARD,0,card:GetCode())
local
eff
=
effect
:
Clone
()
local
eff
=
effect
:
Clone
()
BlackLotus_ElementSaber_Effect
[
card
:
GetCode
()]
=
eff
BlackLotus_ElementSaber_Effect
[
card
:
GetCode
()]
=
eff
end
end
...
@@ -215,11 +216,12 @@ end
...
@@ -215,11 +216,12 @@ end
function
s
.
cptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
function
s
.
cptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
c
=
e
:
GetHandler
()
local
c
=
e
:
GetHandler
()
local
ce
=
BlackLotus_ElementSaber_Effect
[
c
:
GetOriginalCode
()]
local
ce
=
BlackLotus_ElementSaber_Effect
[
c
:
GetOriginalCode
()]
local
tg
=
ce
:
GetTarget
()
local
tg
=
nil
if
ce
then
tg
=
ce
:
GetTarget
()
end
if
chk
==
0
then
if
chk
==
0
then
return
ce
and
(
not
tg
or
tg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
0
))
return
ce
and
(
not
tg
or
tg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
0
))
end
end
local
ce
=
BlackLotus_ElementSaber_Effect
[
c
:
GetOriginalCode
()]
--
local ce=BlackLotus_ElementSaber_Effect[c:GetOriginalCode()]
e
:
SetProperty
(
ce
:
GetProperty
())
e
:
SetProperty
(
ce
:
GetProperty
())
if
tg
then
tg
(
e
,
tp
,
ceg
,
cep
,
cev
,
cre
,
cr
,
crp
,
1
)
end
if
tg
then
tg
(
e
,
tp
,
ceg
,
cep
,
cev
,
cre
,
cr
,
crp
,
1
)
end
ce
:
SetLabelObject
(
e
:
GetLabelObject
())
ce
:
SetLabelObject
(
e
:
GetLabelObject
())
...
...
expansions/strings.conf
View file @
8cb2cff2
...
@@ -637,6 +637,7 @@
...
@@ -637,6 +637,7 @@
!
setname
0
x47fb
亚克
!
setname
0
x47fb
亚克
#水镜
#水镜
!
setname
0
xff0
契灵
!
setname
0
xff7
式神
!
setname
0
xff7
式神
#紫宵 (PurpleNightfall) 114 0x970-0x97f
#紫宵 (PurpleNightfall) 114 0x970-0x97f
...
@@ -810,6 +811,7 @@
...
@@ -810,6 +811,7 @@
!
setname
0
x662e
圣兽装骑·蜂
!
setname
0
x662e
圣兽装骑·蜂
!
setname
0
x962e
圣兽装骑·骸
!
setname
0
x962e
圣兽装骑·骸
!
setname
0
x642
伊兹尼亚
!
setname
0
x642
伊兹尼亚
!
setname
0
x6a2
大世环
!
counter
0
x62b
万世铭指示物
!
counter
0
x62b
万世铭指示物
#MEKK
#MEKK
...
...
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