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
bdade74a
Commit
bdade74a
authored
Mar 25, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
5d67717f
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
7 deletions
+16
-7
expansions/no81.cdb
expansions/no81.cdb
+0
-0
expansions/script/c10111180.lua
expansions/script/c10111180.lua
+1
-0
expansions/script/c10111181.lua
expansions/script/c10111181.lua
+9
-5
expansions/script/c118601317.lua
expansions/script/c118601317.lua
+4
-0
expansions/script/c67201135.lua
expansions/script/c67201135.lua
+1
-1
expansions/script/c91300059.lua
expansions/script/c91300059.lua
+1
-1
No files found.
expansions/no81.cdb
View file @
bdade74a
No preview for this file type
expansions/script/c10111180.lua
View file @
bdade74a
...
...
@@ -31,6 +31,7 @@ function c10111180.initial_effect(c)
e4
:
SetCategory
(
CATEGORY_DAMAGE
+
CATEGORY_TOHAND
+
CATEGORY_SEARCH
)
e4
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e4
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
e4
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e4
:
SetTarget
(
c10111180
.
combtg
)
e4
:
SetOperation
(
c10111180
.
combop
)
c
:
RegisterEffect
(
e4
)
...
...
expansions/script/c10111181.lua
View file @
bdade74a
...
...
@@ -49,11 +49,15 @@ function c10111181.target(e,tp,eg,ep,ev,re,r,rp,chk)
end
end
function
c10111181
.
operation
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
if
Duel
.
NegateActivation
(
ev
)
and
re
:
GetHandler
():
IsRelateToEffect
(
re
)
then
Duel
.
Destroy
(
eg
,
REASON_EFFECT
)
Duel
.
BreakEffect
()
Duel
.
Recover
(
tp
,
re
:
GetHandler
():
GetBaseAttack
(),
REASON_EFFECT
)
end
local
rc
=
re
:
GetHandler
()
if
Duel
.
NegateActivation
(
ev
)
and
rc
:
IsRelateToEffect
(
re
)
then
if
Duel
.
Destroy
(
rc
,
REASON_EFFECT
)
>
0
then
-- 检测破坏是否成功
local
atk
=
rc
:
GetBaseAttack
()
if
atk
>
0
then
-- 确保攻击力为正数
Duel
.
Recover
(
tp
,
atk
,
REASON_EFFECT
)
end
end
end
end
function
c10111181
.
spcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
rp
==
1
-
tp
and
e
:
GetHandler
():
IsPreviousControler
(
tp
)
...
...
expansions/script/c118601317.lua
View file @
bdade74a
...
...
@@ -10,6 +10,7 @@ function s.initial_effect(c)
e1
:
SetCode
(
EVENT_FREE_CHAIN
)
e1
:
SetRange
(
LOCATION_MZONE
)
e1
:
SetCountLimit
(
2
,
id
)
e1
:
SetCondition
(
s
.
condition
)
e1
:
SetTarget
(
s
.
target
)
e1
:
SetOperation
(
s
.
operation
)
c
:
RegisterEffect
(
e1
)
...
...
@@ -17,6 +18,9 @@ end
function
s
.
lcheck
(
g
)
return
g
:
IsExists
(
Card
.
IsLinkSetCard
,
1
,
nil
,
0xd2
)
end
function
s
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN1
or
Duel
.
GetCurrentPhase
()
==
PHASE_MAIN2
end
function
s
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
,
chkc
)
local
c
=
e
:
GetHandler
()
if
chkc
then
return
chkc
:
IsOnField
()
and
chkc
:
IsFaceup
()
end
...
...
expansions/script/c67201135.lua
View file @
bdade74a
...
...
@@ -22,7 +22,7 @@ function c67201135.initial_effect(c)
e3
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e3
:
SetCode
(
EVENT_CUSTOM
+
67201135
)
e3
:
SetRange
(
LOCATION_HAND
)
--e3:SetCountLimit(1,67201135
)
e3
:
SetCountLimit
(
1
,
EFFECT_COUNT_CODE_CHAIN
)
e3
:
SetCondition
(
c67201135
.
opcon
)
e3
:
SetTarget
(
c67201135
.
optg
)
e3
:
SetOperation
(
c67201135
.
opop
)
...
...
expansions/script/c91300059.lua
View file @
bdade74a
...
...
@@ -54,7 +54,7 @@ function s.mattg(e,c)
end
function
s
.
matval
(
e
,
lc
,
mg
,
c
,
tp
)
if
not
(
lc
:
IsRace
(
0x10
)
and
e
:
GetHandlerPlayer
()
==
tp
)
then
return
false
,
nil
end
return
true
,
true
return
true
,
not
mg
or
not
mg
:
IsExists
(
Card
.
IsControler
,
1
,
nil
,
1
-
tp
)
end
function
s
.
filter1
(
c
)
return
_G
[
"c"
..
c
:
GetCode
()]
and
_G
[
"c"
..
c
:
GetCode
()].
Findesiecle
and
c
:
IsType
(
TYPE_SPELL
+
TYPE_TRAP
)
and
c
:
IsAbleToHand
()
...
...
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