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
MyCard
pre-release-database-cdb
Commits
0114c3f1
Commit
0114c3f1
authored
Aug 09, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 糾罪巧-Aizaβ.LEON
parent
fee393ff
Pipeline
#40024
passed with stages
in 5 minutes and 17 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
20 deletions
+32
-20
DBPR.cdb
DBPR.cdb
+0
-0
script/c100245018.lua
script/c100245018.lua
+2
-0
script/c100245020.lua
script/c100245020.lua
+27
-16
test-strings.conf
test-strings.conf
+3
-4
No files found.
DBPR.cdb
View file @
0114c3f1
No preview for this file type
script/c100245018.lua
View file @
0114c3f1
...
...
@@ -157,12 +157,14 @@ function s.disop(e,tp,eg,ep,ev,re,r,rp)
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_DISABLE
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
+
RESET_PHASE
+
PHASE_END
)
tc
:
RegisterEffect
(
e1
)
local
e2
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e2
:
SetType
(
EFFECT_TYPE_SINGLE
)
e2
:
SetCode
(
EFFECT_DISABLE_EFFECT
)
e2
:
SetValue
(
RESET_TURN_SET
)
e2
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
+
RESET_PHASE
+
PHASE_END
)
tc
:
RegisterEffect
(
e2
)
end
...
...
script/c100245020.lua
View file @
0114c3f1
...
...
@@ -64,19 +64,19 @@ function s.initial_effect(c)
e5
:
SetOperation
(
s
.
damop1
)
c
:
RegisterEffect
(
e5
)
local
e6
=
Effect
.
CreateEffect
(
c
)
e6
:
SetType
(
EFFECT_TYPE_
CONTINUOUS
+
EFFECT_TYPE_FIELD
)
e6
:
SetType
(
EFFECT_TYPE_
FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e6
:
SetCode
(
EVENT_TO_HAND
)
e6
:
Set
Range
(
LOCATION_MZONE
)
e6
:
Set
LabelObject
(
c
)
e6
:
SetCondition
(
s
.
regcon
)
e6
:
SetOperation
(
s
.
regop
)
c
:
RegisterEffect
(
e6
)
Duel
.
RegisterEffect
(
e6
,
0
)
local
e7
=
Effect
.
CreateEffect
(
c
)
e7
:
SetType
(
EFFECT_TYPE_
CONTINUOUS
+
EFFECT_TYPE_FIELD
)
e7
:
SetType
(
EFFECT_TYPE_
FIELD
+
EFFECT_TYPE_CONTINUOUS
)
e7
:
SetCode
(
EVENT_CHAIN_SOLVED
)
e7
:
Set
Range
(
LOCATION_MZONE
)
e7
:
Set
LabelObject
(
c
)
e7
:
SetCondition
(
s
.
damcon2
)
e7
:
SetOperation
(
s
.
damop2
)
c
:
RegisterEffect
(
e7
)
Duel
.
RegisterEffect
(
e7
,
0
)
Duel
.
AddCustomActivityCounter
(
id
,
ACTIVITY_SPSUMMON
,
s
.
counterfilter
)
end
function
s
.
counterfilter
(
c
)
...
...
@@ -164,7 +164,7 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
end
end
function
s
.
flipop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
e
:
GetHandler
():
RegisterFlagEffect
(
id
,
RESET_EVENT
+
RESETS_STANDARD
,
0
,
1
)
e
:
GetHandler
():
RegisterFlagEffect
(
id
,
RESET_EVENT
+
RESETS_STANDARD
,
EFFECT_FLAG_CLIENT_HINT
,
1
,
0
,
aux
.
Stringid
(
id
,
3
)
)
end
function
s
.
damcon1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetHandler
():
GetFlagEffect
(
id
)
>
0
...
...
@@ -176,23 +176,34 @@ function s.damop1(e,tp,eg,ep,ev,re,r,rp)
local
ct
=
eg
:
FilterCount
(
Card
.
IsControler
,
nil
,
1
-
tp
)
Duel
.
Damage
(
1
-
tp
,
ct
*
900
,
REASON_EFFECT
)
end
function
s
.
regfilter
(
c
,
ec
,
code
)
return
c
==
ec
and
c
:
IsFaceup
()
and
c
:
GetFlagEffect
(
code
)
>
0
and
not
c
:
IsStatus
(
STATUS_BATTLE_DESTROYED
)
and
not
c
:
IsDisabled
()
end
function
s
.
regcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetHandler
():
GetFlagEffect
(
id
)
>
0
and
eg
:
IsExists
(
Card
.
IsControler
,
1
,
nil
,
1
-
tp
)
and
Duel
.
IsChainSolving
()
and
re
and
re
:
GetOwnerPlayer
()
==
1
-
tp
local
c
=
e
:
GetLabelObject
()
local
p
=
c
:
GetControler
()
return
eg
:
IsExists
(
Card
.
IsControler
,
1
,
nil
,
1
-
p
)
and
Duel
.
IsChainSolving
()
and
re
and
re
:
GetOwnerPlayer
()
==
1
-
p
and
Duel
.
IsExistingMatchingCard
(
s
.
regfilter
,
p
,
LOCATION_MZONE
,
0
,
1
,
nil
,
c
,
id
)
end
function
s
.
regop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
ct
=
eg
:
FilterCount
(
Card
.
IsControler
,
nil
,
1
-
tp
)
e
:
GetHandler
():
RegisterFlagEffect
(
id
+
o
,
RESET_EVENT
+
RESETS_STANDARD
+
RESET_CHAIN
,
0
,
1
,
ct
)
local
c
=
e
:
GetLabelObject
()
local
p
=
c
:
GetControler
()
local
ct
=
eg
:
FilterCount
(
Card
.
IsControler
,
nil
,
1
-
p
)
c
:
RegisterFlagEffect
(
id
+
o
,
RESET_EVENT
+
RESETS_STANDARD
+
RESET_CHAIN
,
0
,
1
,
ct
)
end
function
s
.
damcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetHandler
():
GetFlagEffect
(
id
+
o
)
>
0
local
c
=
e
:
GetLabelObject
()
local
p
=
c
:
GetControler
()
return
Duel
.
IsExistingMatchingCard
(
s
.
regfilter
,
p
,
LOCATION_MZONE
,
0
,
1
,
nil
,
c
,
id
+
o
)
end
function
s
.
damop2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetLabelObject
()
local
p
=
c
:
GetControler
()
Duel
.
Hint
(
HINT_CARD
,
0
,
id
)
local
labels
=
{
e
:
GetHandler
()
:
GetFlagEffectLabel
(
id
+
o
)}
local
labels
=
{
c
:
GetFlagEffectLabel
(
id
+
o
)}
local
ct
=
0
for
i
=
1
,
#
labels
do
ct
=
ct
+
labels
[
i
]
end
e
:
GetHandler
()
:
ResetFlagEffect
(
id
+
o
)
Duel
.
Damage
(
1
-
t
p
,
ct
*
900
,
REASON_EFFECT
)
c
:
ResetFlagEffect
(
id
+
o
)
Duel
.
Damage
(
1
-
p
,
ct
*
900
,
REASON_EFFECT
)
end
test-strings.conf
View file @
0114c3f1
#The first line is used for comment
!
counter
0
x106f
少女指示物
!
counter
0
x70
龋齿指示物
!
counter
0
x71
盘子指示物
!
counter
0
x73
纠罪指示物
!
setname
0
x2cf
树熊
!
setname
0
x2d0
死伟王
...
...
@@ -7,7 +9,4 @@
!
setname
0
x2d2
奏悦机组
!
setname
0
x2d3
终刻
!
setname
0
x2d4
不可见
!
counter
0
x70
龋齿指示物
!
counter
0
x71
盘子指示物
!
setname
0
x2d5
纠罪巧
!
counter
0
x73
纠罪指示物
\ No newline at end of file
!
setname
0
x2d5
纠罪巧
\ No newline at end of file
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