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
3
Merge Requests
3
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
ef62823e
Commit
ef62823e
authored
Jul 15, 2024
by
Chen Bill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 魅惑の女王
add Auxiliary.GoldenAllureQueenCondition
parent
af45749a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
6 deletions
+13
-6
c23756165.lua
c23756165.lua
+2
-2
c50140163.lua
c50140163.lua
+2
-2
c87257460.lua
c87257460.lua
+2
-2
utility.lua
utility.lua
+7
-0
No files found.
c23756165.lua
View file @
ef62823e
...
...
@@ -48,11 +48,11 @@ function c23756165.regop(e,tp,eg,ep,ev,re,r,rp)
end
function
c23756165
.
eqcon1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
return
c
:
GetFlagEffect
(
id
+
1
)
>
0
and
not
aux
.
IsSelfEquip
(
c
,
id
)
and
not
Duel
.
IsPlayerAffectedByEffect
(
tp
,
95937545
)
return
c
:
GetFlagEffect
(
id
+
1
)
>
0
and
not
aux
.
IsSelfEquip
(
c
,
id
)
and
not
aux
.
GoldenAllureQueenCondition
(
c
,
tp
)
end
function
c23756165
.
eqcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
return
c
:
GetFlagEffect
(
id
+
1
)
>
0
and
not
aux
.
IsSelfEquip
(
c
,
id
)
and
Duel
.
IsPlayerAffectedByEffect
(
tp
,
95937545
)
and
e
:
GetHandler
():
IsOriginalSetCard
(
0x3
)
return
c
:
GetFlagEffect
(
id
+
1
)
>
0
and
not
aux
.
IsSelfEquip
(
c
,
id
)
and
aux
.
GoldenAllureQueenCondition
(
c
,
tp
)
end
function
c23756165
.
filter
(
c
)
return
c
:
IsLevelBelow
(
5
)
and
c
:
IsFaceup
()
and
c
:
IsAbleToChangeControler
()
...
...
c50140163.lua
View file @
ef62823e
...
...
@@ -36,11 +36,11 @@ function c50140163.regop(e,tp,eg,ep,ev,re,r,rp)
end
function
c50140163
.
eqcon1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
return
c
:
GetFlagEffect
(
id
+
1
)
>
0
and
not
aux
.
IsSelfEquip
(
c
,
id
)
and
not
Duel
.
IsPlayerAffectedByEffect
(
tp
,
95937545
)
return
c
:
GetFlagEffect
(
id
+
1
)
>
0
and
not
aux
.
IsSelfEquip
(
c
,
id
)
and
not
aux
.
GoldenAllureQueenCondition
(
c
,
tp
)
end
function
c50140163
.
eqcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
return
c
:
GetFlagEffect
(
id
+
1
)
>
0
and
not
aux
.
IsSelfEquip
(
c
,
id
)
and
Duel
.
IsPlayerAffectedByEffect
(
tp
,
95937545
)
and
e
:
GetHandler
():
IsOriginalSetCard
(
0x3
)
return
c
:
GetFlagEffect
(
id
+
1
)
>
0
and
not
aux
.
IsSelfEquip
(
c
,
id
)
and
aux
.
GoldenAllureQueenCondition
(
c
,
tp
)
end
function
c50140163
.
filter
(
c
)
return
c
:
IsAbleToChangeControler
()
...
...
c87257460.lua
View file @
ef62823e
...
...
@@ -34,10 +34,10 @@ function c87257460.initial_effect(c)
end
c87257460
.
lvup
=
{
23756165
}
function
c87257460
.
eqcon1
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
not
aux
.
IsSelfEquip
(
e
:
GetHandler
(),
id
)
and
not
Duel
.
IsPlayerAffectedByEffect
(
tp
,
95937545
)
return
not
aux
.
IsSelfEquip
(
e
:
GetHandler
(),
id
)
and
not
aux
.
GoldenAllureQueenCondition
(
e
:
GetHandler
(),
tp
)
end
function
c87257460
.
eqcon2
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
not
aux
.
IsSelfEquip
(
e
:
GetHandler
(),
id
)
and
Duel
.
IsPlayerAffectedByEffect
(
tp
,
95937545
)
and
e
:
GetHandler
():
IsOriginalSetCard
(
0x3
)
return
not
aux
.
IsSelfEquip
(
e
:
GetHandler
(),
id
)
and
aux
.
GoldenAllureQueenCondition
(
e
:
GetHandler
(),
tp
)
end
function
c87257460
.
filter
(
c
)
return
c
:
IsLevelBelow
(
3
)
and
c
:
IsFaceup
()
and
c
:
IsAbleToChangeControler
()
...
...
utility.lua
View file @
ef62823e
...
...
@@ -1646,3 +1646,10 @@ end
function
Auxiliary
.
IsSelfEquip
(
c
,
id
)
return
c
:
GetEquipGroup
():
IsExists
(
Card
.
GetFlagEffect
,
1
,
nil
,
id
)
end
---Check if the equip effect of c becomes a Quick Effect.
---@param c Card
---@param tp integer
---@return boolean
function
Auxiliary
.
GoldenAllureQueenCondition
(
c
,
tp
)
return
Duel
.
IsPlayerAffectedByEffect
(
tp
,
95937545
)
and
c
:
IsOriginalSetCard
(
0x3
)
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