Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-222DIY-cards
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
alstroemeria-silentlove
ygopro-222DIY-cards
Commits
6eba1f82
Commit
6eba1f82
authored
Feb 11, 2025
by
Huangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
22f77745
Pipeline
#33113
passed with stages
in 68 minutes and 39 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
expansions/script/c16150018.lua
expansions/script/c16150018.lua
+17
-1
expansions/script/c79100330.lua
expansions/script/c79100330.lua
+1
-1
No files found.
expansions/script/c16150018.lua
View file @
6eba1f82
...
...
@@ -195,7 +195,7 @@ function cm.operation1(e,tp,eg,ep,ev,re,r,rp)
e2
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
tc
:
RegisterEffect
(
e2
,
true
)
elseif
op
==
1
then
Duel
.
NegateSummon
(
tc
)
Duel
.
NegateSummon
(
tc
)
if
not
Duel
.
Equip
(
tp
,
tc
,
c
,
false
,
true
)
then
return
end
--equip limit
local
e1
=
Effect
.
CreateEffect
(
tc
)
...
...
@@ -234,6 +234,22 @@ function cm.actop(e,tp)
local
g
=
Duel
.
SelectMatchingCard
(
tp
,
aux
.
NecroValleyFilter
(
cm
.
eqfilter
),
tp
,
LOCATION_GRAVE
+
LOCATION_HAND
,
0
,
1
,
1
,
nil
,
tp
)
if
g
:
GetCount
()
>
0
then
local
tc
=
g
:
GetFirst
()
Duel
.
MoveToField
(
tc
,
tp
,
tp
,
LOCATION_SZONE
,
POS_FACEUP
,
true
)
local
record_type
=
tc
:
GetOriginalType
()
tc
:
SetCardData
(
CARDDATA_TYPE
,
record_type
|
TYPE_EQUIP
)
tc
:
RegisterFlagEffect
(
m
,
RESET_EVENT
+
RESETS_STANDARD
-
RESET_TOFIELD
,
0
,
1
)
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_CONTINUOUS
)
e2
:
SetCode
(
EVENT_MOVE
)
e2
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetLabel
(
record_type
)
e2
:
SetOperation
(
function
(
de
)
local
c
=
de
:
GetHandler
()
dc
:
SetCardData
(
CARDDATA_TYPE
,
de
:
GetLabel
())
de
:
Reset
()
end
)
tc
:
RegisterEffect
(
e2
)
if
not
Duel
.
Equip
(
tp
,
tc
,
c
)
then
return
end
--equip limit
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
expansions/script/c79100330.lua
View file @
6eba1f82
...
...
@@ -5,7 +5,7 @@ function cm.initial_effect(c)
--fusion material
c
:
EnableReviveLimit
()
aux
.
AddFusionProcFunFunRep
(
c
,
c79100330
.
mfilter
,
c79100330
.
matfilter2
,
1
,
4
,
true
)
aux
.
EnableChangeCode
(
c
,
79100260
,
LOCATION_MZONE
+
LOCATION_
REMOVED
)
aux
.
EnableChangeCode
(
c
,
79100260
,
LOCATION_MZONE
+
LOCATION_
GRAVE
)
--destroy
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
79100330
,
0
))
...
...
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