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
Nguyễn Anh Kiệt
ygopro-222DIY-cards
Commits
36899460
Commit
36899460
authored
Sep 08, 2024
by
Huangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
a805e1a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
expansions/script/c60010032.lua
expansions/script/c60010032.lua
+6
-5
expansions/script/c60010056.lua
expansions/script/c60010056.lua
+1
-0
No files found.
expansions/script/c60010032.lua
View file @
36899460
...
...
@@ -5,6 +5,7 @@ function cm.initial_effect(c)
--material
local
e1
=
Effect
.
CreateEffect
(
c
)
e1
:
SetDescription
(
aux
.
Stringid
(
31755044
,
0
))
e1
:
SetCategory
(
CATEGORY_SPECIAL_SUMMON
+
CATEGORY_GRAVE_SPSUMMON
)
e1
:
SetType
(
EFFECT_TYPE_IGNITION
)
e1
:
SetProperty
(
EFFECT_FLAG_CARD_TARGET
)
e1
:
SetRange
(
LOCATION_HAND
)
...
...
@@ -52,7 +53,7 @@ function cm.matop(e,tp,eg,ep,ev,re,r,rp)
local
attro
=
tc
:
GetAttribute
()
local
races
=
e
:
GetHandler
():
GetRace
()
local
attrs
=
e
:
GetHandler
():
GetAttribute
()
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
==
0
then
return
end
if
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
==
0
or
not
c
:
IsRelateToEffect
(
e
)
or
not
tc
:
IsRelateToEffect
(
e
)
then
return
end
Duel
.
SpecialSummon
(
c
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
local
i
=
0
while
i
<=
0xffff
do
...
...
@@ -69,14 +70,14 @@ function cm.matop(e,tp,eg,ep,ev,re,r,rp)
i
=
i
+
1
end
if
Duel
.
IsExistingMatchingCard
(
cm
.
spfil
,
tp
,
LOCATION_HAND
+
LOCATION_GRAVE
,
0
,
1
,
nil
,
raceo
,
attro
,
races
,
attrs
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
0
))
then
local
sc
=
Duel
.
GetMatchingGroup
(
cm
.
spfil
,
tp
,
LOCATION_HAND
+
LOCATION_GRAVE
,
0
,
nil
,
raceo
,
attro
,
races
,
attrs
):
Select
(
tp
,
1
,
1
,
nil
)
if
Duel
.
IsExistingMatchingCard
(
cm
.
spfil
,
tp
,
LOCATION_HAND
+
LOCATION_GRAVE
,
0
,
1
,
nil
,
raceo
,
attro
,
races
,
attrs
,
e
,
tp
)
and
Duel
.
GetLocationCount
(
tp
,
LOCATION_MZONE
)
>
0
and
Duel
.
SelectYesNo
(
tp
,
aux
.
Stringid
(
m
,
0
))
then
local
sc
=
Duel
.
GetMatchingGroup
(
cm
.
spfil
,
tp
,
LOCATION_HAND
+
LOCATION_GRAVE
,
0
,
nil
,
raceo
,
attro
,
races
,
attrs
,
e
,
tp
):
Select
(
tp
,
1
,
1
,
nil
)
Duel
.
BreakEffect
()
Duel
.
SpecialSummon
(
sc
,
0
,
tp
,
tp
,
false
,
false
,
POS_FACEUP
)
end
end
function
cm
.
spfil
(
c
,
raceo
,
attro
,
races
,
attrs
)
return
not
c
:
IsRace
(
raceo
)
and
not
c
:
IsAttribute
(
attro
)
and
not
c
:
IsRace
(
races
)
and
not
c
:
IsAttribute
(
attrs
)
and
c
:
Is
Type
(
TYPE_MONSTER
)
function
cm
.
spfil
(
c
,
raceo
,
attro
,
races
,
attrs
,
e
,
tp
)
return
not
c
:
IsRace
(
raceo
)
and
not
c
:
IsAttribute
(
attro
)
and
not
c
:
IsRace
(
races
)
and
not
c
:
IsAttribute
(
attrs
)
and
c
:
Is
CanBeSpecialSummoned
(
e
,
0
,
tp
,
false
,
false
)
end
function
cm
.
repfilter
(
c
,
tp
,
races
,
attrs
)
return
c
:
IsControler
(
tp
)
and
c
:
IsOnField
()
and
not
c
:
IsAttribute
(
races
)
and
not
c
:
IsRace
(
attrs
)
...
...
expansions/script/c60010056.lua
View file @
36899460
...
...
@@ -20,6 +20,7 @@ function cm.initial_effect(c)
e11
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_O
)
e11
:
SetRange
(
LOCATION_HAND
)
e11
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e11
:
SetProperty
(
EFFECT_FLAG_DELAY
)
e11
:
SetCountLimit
(
1
,
m
+
10000000
)
e11
:
SetCondition
(
cm
.
spcon
)
e11
:
SetTarget
(
cm
.
sptg
)
...
...
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