Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts-888
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
4
Merge Requests
4
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-scripts-888
Commits
02c39537
Commit
02c39537
authored
Sep 14, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feat-ritual-space' into 'master'
feat: add support for ritual from extra deck See merge request
!71
parents
6f125c8d
e0b3b752
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
procedure.lua
procedure.lua
+11
-1
No files found.
procedure.lua
View file @
02c39537
...
@@ -1646,7 +1646,17 @@ end
...
@@ -1646,7 +1646,17 @@ end
---|"'Equal'"
---|"'Equal'"
---@return boolean
---@return boolean
function
Auxiliary
.
RitualCheck
(
g
,
tp
,
c
,
lv
,
greater_or_equal
)
function
Auxiliary
.
RitualCheck
(
g
,
tp
,
c
,
lv
,
greater_or_equal
)
return
Auxiliary
[
"RitualCheck"
..
greater_or_equal
](
g
,
c
,
lv
)
and
Duel
.
GetMZoneCount
(
tp
,
g
,
tp
)
>
0
and
(
not
c
.
mat_group_check
or
c
.
mat_group_check
(
g
,
tp
))
-- Check if there's space to summon
if
c
:
IsLocation
(
LOCATION_EXTRA
)
then
if
Duel
.
GetLocationCountFromEx
(
tp
,
tp
,
g
,
c
)
<=
0
then
return
false
end
else
if
Duel
.
GetMZoneCount
(
tp
,
g
,
tp
)
<=
0
then
return
false
end
end
return
Auxiliary
[
"RitualCheck"
..
greater_or_equal
](
g
,
c
,
lv
)
and
(
not
c
.
mat_group_check
or
c
.
mat_group_check
(
g
,
tp
))
and
(
not
Auxiliary
.
RCheckAdditional
or
Auxiliary
.
RCheckAdditional
(
tp
,
g
,
c
))
and
(
not
Auxiliary
.
RCheckAdditional
or
Auxiliary
.
RCheckAdditional
(
tp
,
g
,
c
))
end
end
function
Auxiliary
.
RitualCheckAdditionalLevel
(
c
,
rc
)
function
Auxiliary
.
RitualCheckAdditionalLevel
(
c
,
rc
)
...
...
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