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
526c2082
Commit
526c2082
authored
Oct 17, 2023
by
Huangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed
parent
502d56de
Pipeline
#23771
passed with stages
in 26 minutes and 59 seconds
Changes
8
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
33 additions
and
18 deletions
+33
-18
expansions/pre-release.cdb
expansions/pre-release.cdb
+0
-0
expansions/script/c47330511.lua
expansions/script/c47330511.lua
+4
-4
expansions/script/c47344572.lua
expansions/script/c47344572.lua
+1
-5
expansions/script/c47344578.lua
expansions/script/c47344578.lua
+9
-3
expansions/script/c47350500.lua
expansions/script/c47350500.lua
+14
-3
expansions/script/c47350505.lua
expansions/script/c47350505.lua
+1
-0
expansions/script/c47350508.lua
expansions/script/c47350508.lua
+2
-2
expansions/script/c47350509.lua
expansions/script/c47350509.lua
+2
-1
No files found.
expansions/pre-release.cdb
deleted
100644 → 0
View file @
502d56de
File deleted
expansions/script/c47330511.lua
View file @
526c2082
...
...
@@ -39,20 +39,20 @@ function s.operation(e,tp,eg,ep,ev,re,r,rp)
if
Duel
.
SendtoDeck
(
tdc
,
nil
,
SEQ_DECKBOTTOM
,
REASON_EFFECT
)
>
0
then
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_EQUIP
)
local
eqc
=
Duel
.
SelectMatchingCard
(
tp
,
s
.
eqfilter
,
tp
,
LOCATION_GRAVE
+
LOCATION_EXTRA
,
0
,
1
,
1
,
nil
,
tdc
:
GetCode
()):
GetFirst
()
Duel
.
Equip
(
tp
,
eqc
,
tc
,
false
)
Duel
.
Equip
(
tp
,
eqc
,
tc
)
local
e2
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e2
:
SetType
(
EFFECT_TYPE_SINGLE
)
e2
:
SetCode
(
EFFECT_EQUIP_LIMIT
)
e2
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
e2
:
SetLabelObject
(
tc
)
e2
:
SetValue
(
s
.
eqlimit
)
e2
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
)
tc
:
RegisterEffect
(
e2
)
tc
:
RegisterFlagEffect
(
82962242
,
RESET_EVENT
+
RESETS_STANDARD
,
0
,
1
)
eqc
:
RegisterEffect
(
e2
)
end
end
end
function
s
.
eqlimit
(
e
,
c
)
return
e
:
Get
Owner
()
==
c
return
e
:
Get
LabelObject
()
==
c
end
function
s
.
tograve
(
c
)
local
e1
=
Effect
.
CreateEffect
(
c
)
...
...
expansions/script/c47344572.lua
View file @
526c2082
...
...
@@ -10,7 +10,6 @@ function s.initial_effect(c)
e1
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
e1
:
SetRange
(
LOCATION_HAND
)
e1
:
SetCountLimit
(
1
,
id
)
e1
:
SetCondition
(
s
.
sycon
)
e1
:
SetValue
(
s
.
matval
)
c
:
RegisterEffect
(
e1
)
...
...
@@ -27,9 +26,6 @@ function s.initial_effect(c)
e2
:
SetOperation
(
s
.
tsop
)
c
:
RegisterEffect
(
e2
)
end
function
s
.
sycon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
eg
:
IsExists
(
s
.
tsfilter
,
1
,
nil
,
tp
)
end
function
s
.
matval
(
e
,
c
)
return
c
:
IsType
(
TYPE_SYNCHRO
)
and
c
:
IsSetCard
(
0x43e
)
end
...
...
expansions/script/c47344578.lua
View file @
526c2082
...
...
@@ -16,11 +16,11 @@ function s.initial_effect(c)
--atk down
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetDescription
(
aux
.
Stringid
(
id
,
0
))
e2
:
SetCategory
(
CATEGORY_ATKCHANGE
)
e2
:
SetCategory
(
CATEGORY_ATKCHANGE
+
CATEGORY_DESTROY
)
e2
:
SetType
(
EFFECT_TYPE_IGNITION
)
e2
:
SetCode
(
EVENT_FREE_CHAIN
)
e2
:
SetRange
(
LOCATION_MZONE
)
e2
:
SetCost
(
s
.
cost
)
e2
:
SetTarget
(
s
.
atktg
)
e2
:
SetOperation
(
s
.
atkop
)
c
:
RegisterEffect
(
e2
)
--to grave
...
...
@@ -45,9 +45,15 @@ function s.counter(e,tp,eg,ep,ev,re,r,rp)
end
end
function
s
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsCanRemoveCounter
(
tp
,
1
,
0
,
0x43f
,
2
,
REASON_COST
)
and
Duel
.
GetFieldGroupCount
(
tp
,
0
,
LOCATION_MZONE
)
>
0
end
if
chk
==
0
then
return
Duel
.
IsCanRemoveCounter
(
tp
,
1
,
0
,
0x43f
,
2
,
REASON_COST
)
end
Duel
.
RemoveCounter
(
tp
,
1
,
0
,
0x43f
,
2
,
REASON_COST
)
end
function
s
.
downfilter
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsAttackAbove
(
1
)
end
function
s
.
atktg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
downfilter
,
tp
,
0
,
LOCATION_MZONE
,
1
,
nil
)
end
end
function
s
.
atkop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
c
=
e
:
GetHandler
()
local
mc
=
Duel
.
GetFieldGroupCount
(
tp
,
LOCATION_MZONE
,
0
)
...
...
expansions/script/c47350500.lua
View file @
526c2082
...
...
@@ -63,14 +63,25 @@ function Lost_In_Mirror.eff3op(e,tp,eg,ep,ev,re,r,rp)
and
Duel
.
SelectEffectYesNo
(
tp
,
e
:
GetHandler
(),
aux
.
Stringid
(
47350500
,
0
))
then
Duel
.
BreakEffect
()
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_SET
)
local
sc
=
Duel
.
SelectMatchingCard
(
tp
,
Lost_In_Mirror
.
setfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
,
tc
:
GetCode
())
Duel
.
SSet
(
tp
,
sc
)
local
sg
=
Duel
.
SelectMatchingCard
(
tp
,
Lost_In_Mirror
.
setfilter
,
tp
,
LOCATION_GRAVE
,
0
,
1
,
1
,
nil
,
tc
:
GetCode
())
if
#
sg
==
0
then
return
end
local
sc
=
sg
:
GetFirst
()
if
Duel
.
MoveToField
(
sc
,
tp
,
tp
,
LOCATION_SZONE
,
POS_FACEDOWN
,
true
)
then
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetCode
(
EFFECT_CHANGE_TYPE
)
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
-
RESET_TURN_SET
)
e1
:
SetValue
(
TYPE_TRAP
)
sc
:
RegisterEffect
(
e1
)
Duel
.
RaiseEvent
(
sc
,
EVENT_SSET
,
e
,
REASON_EFFECT
,
tc
:
GetOwner
(),
nil
,
0
)
end
end
end
end
end
function
Lost_In_Mirror
.
setfilter
(
c
,
code
)
return
c
:
IsType
(
TYPE_MONSTER
)
and
not
c
:
IsCode
(
code
)
and
c
:
IsRace
(
RACE_FIEND
)
and
c
:
IsSSetable
()
return
c
:
IsType
(
TYPE_MONSTER
)
and
not
c
:
IsCode
(
code
)
and
c
:
IsRace
(
RACE_FIEND
)
end
function
Lost_In_Mirror
.
confirm
(
tp
,
tc
)
Duel
.
ConfirmCards
(
1
-
tp
,
tc
)
...
...
expansions/script/c47350505.lua
View file @
526c2082
...
...
@@ -20,6 +20,7 @@ function s.op(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
-
RESET_TURN_SET
)
e1
:
SetValue
(
TYPE_TRAP
)
tc
:
RegisterEffect
(
e1
)
Duel
.
RaiseEvent
(
tc
,
EVENT_SSET
,
e
,
REASON_EFFECT
,
tc
:
GetOwner
(),
nil
,
0
)
end
end
function
s
.
filter
(
c
,
tp
)
...
...
expansions/script/c47350508.lua
View file @
526c2082
...
...
@@ -18,7 +18,7 @@ function s.tgcon(e,tp,eg,ep,ev,re,r,rp)
return
e
:
GetHandler
():
IsSummonType
(
SUMMON_TYPE_FUSION
)
end
function
s
.
tgfilter
(
c
)
return
c
:
IsRace
(
RACE_FIEND
)
and
c
:
IsLevel
(
3
)
and
c
:
IsAbleToGrave
()
return
(
c
:
IsSetCard
(
0x43c
)
or
(
c
:
IsRace
(
RACE_FIEND
)
and
c
:
IsLevel
(
3
))
)
and
c
:
IsAbleToGrave
()
end
function
s
.
tgtg
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
if
chk
==
0
then
return
Duel
.
IsExistingMatchingCard
(
s
.
tgfilter
,
tp
,
LOCATION_DECK
,
0
,
1
,
nil
)
end
...
...
@@ -77,5 +77,5 @@ function s.initial_effect(c)
s
.
tohand
(
c
)
end
function
s
.
fmatfilter
(
c
)
return
c
:
IsAttribute
(
ATTRIBUTE_DARK
)
and
c
:
IsType
(
TYPE_MONSTER
)
return
c
:
IsAttribute
(
ATTRIBUTE_DARK
)
and
c
:
Is
Fusion
Type
(
TYPE_MONSTER
)
end
expansions/script/c47350509.lua
View file @
526c2082
...
...
@@ -102,6 +102,7 @@ function s.setop(e,tp,eg,ep,ev,re,r,rp)
e1
:
SetReset
(
RESET_EVENT
+
RESETS_STANDARD
-
RESET_TURN_SET
)
e1
:
SetValue
(
TYPE_TRAP
)
tc
:
RegisterEffect
(
e1
)
Duel
.
RaiseEvent
(
tc
,
EVENT_SSET
,
e
,
REASON_EFFECT
,
tc
:
GetOwner
(),
nil
,
0
)
end
end
end
...
...
@@ -115,5 +116,5 @@ function s.initial_effect(c)
s
.
set
(
c
)
end
function
s
.
fmatfilter
(
c
)
return
c
:
IsLevel
(
3
)
and
c
:
IsType
(
TYPE_MONSTER
)
return
c
:
IsLevel
(
3
)
and
c
:
Is
Fusion
Type
(
TYPE_MONSTER
)
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