Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-rush-duel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
5
Issues
5
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
ygopro-rush-duel
Commits
25ead0a8
Commit
25ead0a8
authored
Oct 24, 2025
by
未闻皂名
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2025/10/24 bug修复
parent
e67ef7e7
Pipeline
#41251
passed with stages
in 10 minutes and 9 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
script/c120109029.lua
script/c120109029.lua
+1
-1
script/c120109048.lua
script/c120109048.lua
+1
-1
script/c120244012.lua
script/c120244012.lua
+1
-1
script/c120244041.lua
script/c120244041.lua
+1
-1
script/c120283002.lua
script/c120283002.lua
+1
-1
script/c120290065.lua
script/c120290065.lua
+1
-1
No files found.
script/c120109029.lua
View file @
25ead0a8
...
...
@@ -17,7 +17,7 @@ function cm.exfilter(c)
return
c
:
IsType
(
TYPE_SPELL
+
TYPE_TRAP
)
end
function
cm
.
thfilter
(
c
)
return
c
:
GetType
()
==
TYPE_EQUIP
+
TYPE_SPELL
and
c
:
IsAbleToHand
()
return
c
:
IsType
(
TYPE_EQUIP
)
and
c
:
IsAbleToHand
()
end
function
cm
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
RD
.
IsSummonTurn
(
e
:
GetHandler
())
...
...
script/c120109048.lua
View file @
25ead0a8
...
...
@@ -46,5 +46,5 @@ function cm.operation(e,tp,eg,ep,ev,re,r,rp)
end
function
cm
.
aclimit
(
e
,
re
,
tp
)
local
tc
=
re
:
GetHandler
()
return
re
:
IsActiveType
(
TYPE_SPELL
)
and
tc
:
GetType
()
==
TYPE_SPELL
return
re
:
IsActiveType
(
TYPE_SPELL
)
and
RD
.
IsNormalSpell
(
tc
)
end
\ No newline at end of file
script/c120244012.lua
View file @
25ead0a8
...
...
@@ -14,7 +14,7 @@ function cm.initial_effect(c)
end
--Destroy
function
cm
.
costfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
GetType
()
==
TYPE_EQUIP
+
TYPE_SPELL
and
c
:
IsAbleToGraveAsCost
()
return
c
:
IsFaceup
()
and
c
:
IsType
(
TYPE_EQUIP
)
and
c
:
IsAbleToGraveAsCost
()
end
function
cm
.
desfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsLevelBelow
(
8
)
...
...
script/c120244041.lua
View file @
25ead0a8
...
...
@@ -21,7 +21,7 @@ function cm.desfilter(c)
return
c
:
IsFaceup
()
end
function
cm
.
thfilter
(
c
)
return
c
:
GetType
()
==
TYPE_EQUIP
+
TYPE_SPELL
and
c
:
IsAbleToHand
()
return
c
:
IsType
(
TYPE_EQUIP
)
and
c
:
IsAbleToHand
()
end
cm
.
cost
=
RD
.
CostSendHandToGrave
(
Card
.
IsAbleToGraveAsCost
,
1
,
1
)
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
...
...
script/c120283002.lua
View file @
25ead0a8
...
...
@@ -50,6 +50,6 @@ cm.indval=RD.ValueEffectIndesType(0,TYPE_SPELL)
--Cannot Activate
function
cm
.
limit
(
e
,
re
,
tp
)
local
tc
=
re
:
GetHandler
()
return
tc
:
GetType
()
==
TYPE_SPELL
and
RD
.
IsLegendCard
(
tc
)
return
tc
:
IsType
(
TYPE_SPELL
)
and
RD
.
IsLegendCard
(
tc
)
and
re
:
IsHasType
(
EFFECT_TYPE_ACTIVATE
)
and
re
:
IsActiveType
(
TYPE_SPELL
)
end
\ No newline at end of file
script/c120290065.lua
View file @
25ead0a8
...
...
@@ -23,7 +23,7 @@ function cm.spcon(e,c)
end
--To Deck
function
cm
.
costfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
GetType
()
==
TYPE_EQUIP
+
TYPE_SPELL
and
c
:
IsAbleToGraveAsCost
()
return
c
:
IsFaceup
()
and
c
:
IsType
(
TYPE_EQUIP
)
and
c
:
IsAbleToGraveAsCost
()
end
function
cm
.
tdfilter
(
c
)
return
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsAbleToDeck
()
...
...
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