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
09c058db
Commit
09c058db
authored
Oct 29, 2025
by
未闻皂名
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2025/10/29 bug修复
parent
946b90e7
Pipeline
#41315
passed with stages
in 9 minutes and 57 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
script/RDCondition.lua
script/RDCondition.lua
+2
-1
script/c120293055.lua
script/c120293055.lua
+2
-2
No files found.
script/RDCondition.lua
View file @
09c058db
...
...
@@ -62,7 +62,8 @@ function RushDuel.IsPlayerDrawInThisTurn(player)
end
-- 条件: 玩家在这个回合没有发动过特定卡名的效果
function
RushDuel
.
IsPlayerNoActivateInThisTurn
(
player
,
code
)
return
not
RD
.
ActivateCodes
[
player
+
1
][
code
]
local
codes
=
RushDuel
.
ActivateCodes
[
player
+
1
]
or
{}
return
not
codes
[
code
]
end
-- 条件: 守备力为 def
function
RushDuel
.
IsDefense
(
card
,
def
)
...
...
script/c120293055.lua
View file @
09c058db
local
cm
,
m
=
GetID
()
local
list
=
{
120
102010
}
local
list
=
{
120
293055
}
cm
.
name
=
"宇宙姬的天体观测"
function
cm
.
initial_effect
(
c
)
RD
.
AddCodeList
(
c
,
list
)
...
...
@@ -18,7 +18,7 @@ function cm.filter(c)
return
c
:
IsLevelBelow
(
5
)
and
c
:
IsRace
(
RACE_GALAXY
)
and
c
:
IsAttack
(
900
)
and
c
:
IsAbleToHand
()
end
function
cm
.
condition
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
RD
.
IsPlayerNoActivateInThisTurn
(
tp
,
list
[
1
])
return
RD
.
IsPlayerNoActivateInThisTurn
(
tp
,
list
[
2
])
end
function
cm
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
cm
.
filter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
nil
)
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