Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
no81cards
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
Nemo Ma
no81cards
Commits
5bc0ad4d
"include/svn:/svn.code.sf.net/p/irrlicht/code/trunk@4226" did not exist on "642f4080b46817e01686800c77164bab119cb7d3"
Commit
5bc0ad4d
authored
Aug 13, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
fbb27808
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
expansions/script/c11451485.lua
expansions/script/c11451485.lua
+3
-3
expansions/script/c11451486.lua
expansions/script/c11451486.lua
+4
-4
No files found.
expansions/script/c11451485.lua
View file @
5bc0ad4d
...
...
@@ -67,7 +67,7 @@ function cm.hand(g)
return
g
:
FilterCount
(
Card
.
IsLocation
,
nil
,
LOCATION_HAND
)
<=
1
end
function
cm
.
hand2
(
g
)
return
g
:
FilterCount
(
function
(
c
)
return
c
:
IsAttribute
(
ATTRIBUTE_FIRE
)
and
c
:
IsRace
(
RACE_FAIRY
)
and
c
:
IsLocation
(
LOCATION_HAND
)
and
not
c
:
Is
XyzLevel
(
sc
,
8
)
and
not
c
:
IsRank
(
8
)
end
,
nil
)
<=
1
return
g
:
FilterCount
(
function
(
c
)
return
c
:
IsAttribute
(
ATTRIBUTE_FIRE
)
and
c
:
IsRace
(
RACE_FAIRY
)
and
c
:
IsLocation
(
LOCATION_HAND
)
and
not
c
:
Is
Level
(
8
)
and
not
c
:
IsRank
(
8
)
end
,
nil
)
<=
1
end
function
cm
.
spcon
(
e
,
c
,
og
,
min
,
max
)
if
c
==
nil
then
return
true
end
...
...
@@ -84,7 +84,7 @@ function cm.spcon(e,c,og,min,max)
local
exchk
=
cm
.
hand
if
og
then
mg
=
og
:
Filter
(
cm
.
spfilter2
,
c
,
c
)
exchk
=
cm
.
hand2
exchk
=
aux
.
TRUE
--
cm.hand2
else
mg
=
g
end
...
...
@@ -105,7 +105,7 @@ function cm.sptg(e,tp,eg,ep,ev,re,r,rp,chk,c,og,min,max)
if
max
<
maxc
then
maxc
=
max
end
end
local
g
=
Duel
.
GetMatchingGroup
(
cm
.
spfilter
,
tp
,
LOCATION_HAND
+
LOCATION_MZONE
,
0
,
c
,
c
)
local
exchk
=
cm
.
hand
local
exchk
=
aux
.
TRUE
--
cm.hand
local
mg
=
nil
if
og
then
mg
=
og
:
Filter
(
cm
.
spfilter2
,
c
,
c
)
...
...
expansions/script/c11451486.lua
View file @
5bc0ad4d
...
...
@@ -65,7 +65,7 @@ function cm.hand(g)
return
g
:
FilterCount
(
Card
.
IsLocation
,
nil
,
LOCATION_HAND
)
<=
1
end
function
cm
.
hand2
(
g
)
return
g
:
FilterCount
(
function
(
c
)
return
c
:
IsAttribute
(
ATTRIBUTE_WATER
)
and
c
:
IsRace
(
RACE_FAIRY
)
and
c
:
IsLocation
(
LOCATION_HAND
)
and
not
c
:
Is
XyzLevel
(
sc
,
8
)
and
not
c
:
IsRank
(
8
)
end
,
nil
)
<=
1
return
g
:
FilterCount
(
function
(
c
)
return
c
:
IsAttribute
(
ATTRIBUTE_WATER
)
and
c
:
IsRace
(
RACE_FAIRY
)
and
c
:
IsLocation
(
LOCATION_HAND
)
and
not
c
:
Is
Level
(
8
)
and
not
c
:
IsRank
(
8
)
end
,
nil
)
<=
1
end
function
cm
.
spcon
(
e
,
c
,
og
,
min
,
max
)
if
c
==
nil
then
return
true
end
...
...
@@ -82,7 +82,7 @@ function cm.spcon(e,c,og,min,max)
local
exchk
=
cm
.
hand
if
og
then
mg
=
og
:
Filter
(
cm
.
spfilter2
,
c
,
c
)
exchk
=
cm
.
hand2
exchk
=
aux
.
TRUE
--
cm.hand2
else
mg
=
g
end
...
...
@@ -107,7 +107,7 @@ function cm.sptg(e,tp,eg,ep,ev,re,r,rp,chk,c,og,min,max)
local
mg
=
nil
if
og
then
mg
=
og
:
Filter
(
cm
.
spfilter2
,
c
,
c
)
exchk
=
cm
.
hand2
exchk
=
aux
.
TRUE
--
cm.hand2
else
mg
=
g
end
...
...
@@ -297,5 +297,5 @@ function cm.imop(e,tp,eg,ep,ev,re,r,rp)
end
end
function
cm
.
efilter
(
e
,
re
)
return
re
:
GetOwner
()
~=
e
:
GetOwner
()
return
re
:
GetOwner
()
~=
e
:
GetOwner
()
--or (re:IsActivated() and not re:GetOwner():IsRelateToEffect(re))
end
\ 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