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
1e073671
Commit
1e073671
authored
Jan 19, 2025
by
POLYMER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
8f03ddd6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
9 deletions
+7
-9
expansions/script/c98920131.lua
expansions/script/c98920131.lua
+1
-1
expansions/script/c98920356.lua
expansions/script/c98920356.lua
+1
-1
expansions/script/c98920385.lua
expansions/script/c98920385.lua
+1
-1
expansions/script/c98920723.lua
expansions/script/c98920723.lua
+3
-5
expansions/script/c98920806.lua
expansions/script/c98920806.lua
+1
-1
No files found.
expansions/script/c98920131.lua
View file @
1e073671
...
@@ -73,7 +73,7 @@ function c98920131.eqop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -73,7 +73,7 @@ function c98920131.eqop(e,tp,eg,ep,ev,re,r,rp)
--Add Equip limit
--Add Equip limit
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetProperty
(
EFFECT_FLAG_
COPY_INHERIT
+
EFFECT_FLAG_
OWNER_RELATE
)
e1
:
SetProperty
(
EFFECT_FLAG_OWNER_RELATE
)
e1
:
SetCode
(
EFFECT_EQUIP_LIMIT
)
e1
:
SetCode
(
EFFECT_EQUIP_LIMIT
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetValue
(
c98920131
.
eqlimit
)
e1
:
SetValue
(
c98920131
.
eqlimit
)
...
...
expansions/script/c98920356.lua
View file @
1e073671
...
@@ -64,7 +64,7 @@ function c98920356.eqop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -64,7 +64,7 @@ function c98920356.eqop(e,tp,eg,ep,ev,re,r,rp)
--Add Equip limit
--Add Equip limit
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetProperty
(
EFFECT_FLAG_
COPY_INHERIT
+
EFFECT_FLAG_
OWNER_RELATE
)
e1
:
SetProperty
(
EFFECT_FLAG_OWNER_RELATE
)
e1
:
SetCode
(
EFFECT_EQUIP_LIMIT
)
e1
:
SetCode
(
EFFECT_EQUIP_LIMIT
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetValue
(
c98920356
.
eqlimit
)
e1
:
SetValue
(
c98920356
.
eqlimit
)
...
...
expansions/script/c98920385.lua
View file @
1e073671
...
@@ -48,7 +48,7 @@ function c98920385.eqop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -48,7 +48,7 @@ function c98920385.eqop(e,tp,eg,ep,ev,re,r,rp)
Duel
.
Equip
(
tp
,
g
:
GetFirst
(),
c
)
Duel
.
Equip
(
tp
,
g
:
GetFirst
(),
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetProperty
(
EFFECT_FLAG_
COPY_INHERIT
+
EFFECT_FLAG_
OWNER_RELATE
)
e1
:
SetProperty
(
EFFECT_FLAG_OWNER_RELATE
)
e1
:
SetCode
(
EFFECT_EQUIP_LIMIT
)
e1
:
SetCode
(
EFFECT_EQUIP_LIMIT
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetValue
(
c98920385
.
eqlimit
)
e1
:
SetValue
(
c98920385
.
eqlimit
)
...
...
expansions/script/c98920723.lua
View file @
1e073671
...
@@ -23,8 +23,9 @@ function c98920723.initial_effect(c)
...
@@ -23,8 +23,9 @@ function c98920723.initial_effect(c)
--dragon
--dragon
local
e2
=
Effect
.
CreateEffect
(
c
)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
)
e2
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
e2
:
SetCode
(
EFFECT_CHANGE_RACE
)
e2
:
SetCode
(
EFFECT_CHANGE_RACE
)
e2
:
Set
Condition
(
c98920723
.
con
)
e2
:
Set
Range
(
LOCATION_GRAVE
)
e2
:
SetValue
(
RACE_DRAGON
)
e2
:
SetValue
(
RACE_DRAGON
)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
--negate
--negate
...
@@ -65,9 +66,6 @@ function c98920723.initial_effect(c)
...
@@ -65,9 +66,6 @@ function c98920723.initial_effect(c)
e6
:
SetLabelObject
(
e4
)
e6
:
SetLabelObject
(
e4
)
c
:
RegisterEffect
(
e6
)
c
:
RegisterEffect
(
e6
)
end
end
function
c98920723
.
con
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
e
:
GetHandler
():
IsLocation
(
LOCATION_GRAVE
)
end
function
c98920723
.
eftg
(
e
,
c
)
function
c98920723
.
eftg
(
e
,
c
)
return
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsSetCard
(
0x4093
)
and
c
:
GetEquipGroup
():
IsContains
(
e
:
GetHandler
())
return
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsSetCard
(
0x4093
)
and
c
:
GetEquipGroup
():
IsContains
(
e
:
GetHandler
())
end
end
...
@@ -94,7 +92,7 @@ function c98920723.desop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -94,7 +92,7 @@ function c98920723.desop(e,tp,eg,ep,ev,re,r,rp)
local
e1
=
Effect
.
CreateEffect
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_EQUIP_LIMIT
)
e1
:
SetCode
(
EFFECT_EQUIP_LIMIT
)
e1
:
SetProperty
(
EFFECT_FLAG_
COPY_INHERIT
+
EFFECT_FLAG_
OWNER_RELATE
)
e1
:
SetProperty
(
EFFECT_FLAG_OWNER_RELATE
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
e1
:
SetValue
(
c98920723
.
eqlimit
)
e1
:
SetValue
(
c98920723
.
eqlimit
)
tc
:
RegisterEffect
(
e1
)
tc
:
RegisterEffect
(
e1
)
...
...
expansions/script/c98920806.lua
View file @
1e073671
...
@@ -13,7 +13,7 @@ function c98920806.initial_effect(c)
...
@@ -13,7 +13,7 @@ function c98920806.initial_effect(c)
e2
:
SetDescription
(
aux
.
Stringid
(
98920806
,
1
))
e2
:
SetDescription
(
aux
.
Stringid
(
98920806
,
1
))
e2
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_TRIGGER_O
)
e2
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
e2
:
SetCode
(
EVENT_SUMMON_SUCCESS
)
e2
:
SetProperty
(
EFFECT_FLAG_DAMAGE_STEP
)
e2
:
SetProperty
(
EFFECT_FLAG_DAMAGE_STEP
+
EFFECT_FLAG_DELAY
)
e2
:
SetCountLimit
(
1
,
98920806
)
e2
:
SetCountLimit
(
1
,
98920806
)
e2
:
SetTarget
(
c98920806
.
target
)
e2
:
SetTarget
(
c98920806
.
target
)
e2
:
SetOperation
(
c98920806
.
operation
)
e2
:
SetOperation
(
c98920806
.
operation
)
...
...
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