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
2fc1e091
Commit
2fc1e091
authored
Jul 05, 2025
by
Amiya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复
parent
bf3bd7db
Pipeline
#38559
failed with stages
in 4 minutes and 25 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
script/c101302030.lua
script/c101302030.lua
+2
-3
script/c101302053.lua
script/c101302053.lua
+3
-3
No files found.
script/c101302030.lua
View file @
2fc1e091
...
...
@@ -14,8 +14,7 @@ function s.initial_effect(c)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetDescription
(
aux
.
Stringid
(
id
,
1
))
e2
:
SetCategory
(
CATEGORY_SUMMON
)
e2
:
SetType
(
EFFECT_TYPE_QUICK_O
)
e2
:
SetCode
(
EVENT_FREE_CHAIN
)
e2
:
SetType
(
EFFECT_TYPE_IGNITION
)
e2
:
SetRange
(
LOCATION_HAND
)
e2
:
SetCountLimit
(
1
,
id
)
e2
:
SetCondition
(
s
.
spcon
)
...
...
@@ -52,7 +51,7 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
end
end
function
s
.
thfilter
(
c
)
return
not
c
:
IsCode
(
id
)
and
(
c
:
IsAttack
(
800
)
or
c
:
IsDefense
(
800
))
and
c
:
IsAttribute
(
ATTRIBUTE_DARK
+
ATTRIBUTE_LIGHT
)
and
c
:
IsAbleToHand
()
return
not
c
:
IsCode
(
id
)
and
(
c
:
IsAttack
(
800
)
or
c
:
IsDefense
(
800
))
and
c
:
Is
Level
(
4
)
and
c
:
Is
Attribute
(
ATTRIBUTE_DARK
+
ATTRIBUTE_LIGHT
)
and
c
:
IsAbleToHand
()
end
function
s
.
thtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
thfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
...
...
script/c101302053.lua
View file @
2fc1e091
...
...
@@ -34,7 +34,7 @@ function s.spcon(e,tp,eg,ep,ev,re,r,rp)
return
Duel
.
IsMainPhase
()
end
function
s
.
costfilter
(
c
,
e
,
tp
)
return
c
:
IsAttribute
(
ATTRIBUTE_FIRE
)
and
c
:
GetOriginalLevel
()
>
2
and
Duel
.
GetMZoneCount
(
tp
,
c
)
>
0
return
c
:
IsAttribute
(
ATTRIBUTE_FIRE
)
and
c
:
GetOriginalLevel
()
>
1
and
Duel
.
GetMZoneCount
(
tp
,
c
)
>
0
and
Duel
.
IsExistingTarget
(
s
.
spfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
,
e
,
tp
,
c
:
GetOriginalLevel
(),
c
:
GetOriginalRace
())
end
function
s
.
spfilter
(
c
,
e
,
tp
,
lv
,
race
)
...
...
@@ -65,12 +65,12 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
end
function
s
.
repfilter
(
c
,
tp
)
return
c
:
IsControler
(
tp
)
and
c
:
IsOnField
()
and
c
:
IsLocation
(
LOCATION_SZONE
)
and
c
:
IsFacedown
()
and
c
:
IsLocation
(
LOCATION_SZONE
)
and
not
c
:
IsLocation
(
LOCATION_FZONE
)
and
c
:
IsFacedown
()
and
c
:
IsReason
(
REASON_EFFECT
)
and
not
c
:
IsReason
(
REASON_REPLACE
)
end
function
s
.
desreptg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
c
=
e
:
GetHandler
()
if
chk
==
0
then
return
eg
:
IsExists
(
s
.
repfilter
,
1
,
nil
,
tp
)
if
chk
==
0
then
return
rp
==
1
-
tp
and
eg
:
IsExists
(
s
.
repfilter
,
1
,
nil
,
tp
)
and
c
:
IsAbleToRemove
()
and
not
c
:
IsStatus
(
STATUS_DESTROY_CONFIRMED
+
STATUS_BATTLE_DESTROYED
)
end
return
Duel
.
SelectEffectYesNo
(
tp
,
c
,
96
)
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