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
4
Merge Requests
4
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
e11aa44f
Commit
e11aa44f
authored
Dec 18, 2016
by
VanillaSalt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
ac95b63e
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
45 additions
and
38 deletions
+45
-38
c16114248.lua
c16114248.lua
+1
-1
c18386170.lua
c18386170.lua
+8
-5
c19261966.lua
c19261966.lua
+2
-2
c20366274.lua
c20366274.lua
+2
-2
c28016193.lua
c28016193.lua
+1
-1
c31111109.lua
c31111109.lua
+9
-6
c4688231.lua
c4688231.lua
+3
-3
c48424886.lua
c48424886.lua
+2
-2
c54401832.lua
c54401832.lua
+2
-2
c6205579.lua
c6205579.lua
+2
-1
c74009824.lua
c74009824.lua
+2
-2
c74506079.lua
c74506079.lua
+1
-1
c74822425.lua
c74822425.lua
+2
-2
c77693536.lua
c77693536.lua
+3
-3
c81612598.lua
c81612598.lua
+2
-2
c84058253.lua
c84058253.lua
+1
-1
c94977269.lua
c94977269.lua
+2
-2
No files found.
c16114248.lua
View file @
e11aa44f
...
@@ -16,7 +16,7 @@ function c16114248.initial_effect(c)
...
@@ -16,7 +16,7 @@ function c16114248.initial_effect(c)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
end
end
function
c16114248
.
filter
(
c
,
fc
)
function
c16114248
.
filter
(
c
,
fc
)
return
c
:
IsRace
(
RACE_MACHINE
)
and
c
:
IsCanBeFusionMaterial
(
fc
)
return
c
:
IsRace
(
RACE_MACHINE
)
and
not
c
:
IsHasEffect
(
6205579
)
and
c
:
IsCanBeFusionMaterial
(
fc
)
end
end
function
c16114248
.
spfilter
(
c
,
mg
)
function
c16114248
.
spfilter
(
c
,
mg
)
return
mg
:
IsExists
(
c16114248
.
spfilter2
,
1
,
c
,
c
)
return
mg
:
IsExists
(
c16114248
.
spfilter2
,
1
,
c
,
c
)
...
...
c18386170.lua
View file @
e11aa44f
...
@@ -81,21 +81,24 @@ function c18386170.hdop(e,tp,eg,ep,ev,re,r,rp)
...
@@ -81,21 +81,24 @@ function c18386170.hdop(e,tp,eg,ep,ev,re,r,rp)
local
sg
=
g
:
RandomSelect
(
tp
,
1
)
local
sg
=
g
:
RandomSelect
(
tp
,
1
)
Duel
.
SendtoGrave
(
sg
,
REASON_EFFECT
)
Duel
.
SendtoGrave
(
sg
,
REASON_EFFECT
)
end
end
function
c18386170
.
ffilter
(
c
)
return
c
:
IsFusionSetCard
(
0xb1
)
and
not
c
:
IsHasEffect
(
6205579
)
end
function
c18386170
.
fscon
(
e
,
g
,
gc
,
chkf
)
function
c18386170
.
fscon
(
e
,
g
,
gc
,
chkf
)
if
g
==
nil
then
return
true
end
if
g
==
nil
then
return
true
end
if
gc
then
if
gc
then
local
mg
=
g
:
Filter
(
Card
.
IsFusionSetCard
,
nil
,
0xb1
)
local
mg
=
g
:
Filter
(
c18386170
.
ffilter
,
nil
)
mg
:
AddCard
(
gc
)
mg
:
AddCard
(
gc
)
return
gc
:
IsFusionSetCard
(
0xb1
)
and
mg
:
GetClassCount
(
Card
.
GetCode
)
>=
3
return
c18386170
.
ffilter
(
gc
)
and
mg
:
GetClassCount
(
Card
.
GetCode
)
>=
3
end
end
local
fs
=
false
local
fs
=
false
local
mg
=
g
:
Filter
(
Card
.
IsFusionSetCard
,
nil
,
0xb1
)
local
mg
=
g
:
Filter
(
c18386170
.
ffilter
,
nil
)
if
mg
:
IsExists
(
aux
.
FConditionCheckF
,
1
,
nil
,
chkf
)
then
fs
=
true
end
if
mg
:
IsExists
(
aux
.
FConditionCheckF
,
1
,
nil
,
chkf
)
then
fs
=
true
end
return
mg
:
GetClassCount
(
Card
.
GetCode
)
>=
3
and
(
fs
or
chkf
==
PLAYER_NONE
)
return
mg
:
GetClassCount
(
Card
.
GetCode
)
>=
3
and
(
fs
or
chkf
==
PLAYER_NONE
)
end
end
function
c18386170
.
fsop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
gc
,
chkf
)
function
c18386170
.
fsop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
gc
,
chkf
)
if
gc
then
if
gc
then
local
sg
=
eg
:
Filter
(
Card
.
IsFusionSetCard
,
gc
,
0xb1
)
local
sg
=
eg
:
Filter
(
c18386170
.
ffilter
,
gc
)
sg
:
Remove
(
Card
.
IsCode
,
nil
,
gc
:
GetCode
())
sg
:
Remove
(
Card
.
IsCode
,
nil
,
gc
:
GetCode
())
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FMATERIAL
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FMATERIAL
)
local
g1
=
sg
:
Select
(
tp
,
1
,
1
,
nil
)
local
g1
=
sg
:
Select
(
tp
,
1
,
1
,
nil
)
...
@@ -106,7 +109,7 @@ function c18386170.fsop(e,tp,eg,ep,ev,re,r,rp,gc,chkf)
...
@@ -106,7 +109,7 @@ function c18386170.fsop(e,tp,eg,ep,ev,re,r,rp,gc,chkf)
Duel
.
SetFusionMaterial
(
g1
)
Duel
.
SetFusionMaterial
(
g1
)
return
return
end
end
local
sg
=
eg
:
Filter
(
Card
.
IsFusionSetCard
,
nil
,
0xb1
)
local
sg
=
eg
:
Filter
(
c18386170
.
ffilter
,
nil
)
local
g1
=
nil
local
g1
=
nil
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FMATERIAL
)
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_FMATERIAL
)
if
chkf
~=
PLAYER_NONE
then
g1
=
sg
:
FilterSelect
(
tp
,
aux
.
FConditionCheckF
,
1
,
1
,
nil
,
chkf
)
if
chkf
~=
PLAYER_NONE
then
g1
=
sg
:
FilterSelect
(
tp
,
aux
.
FConditionCheckF
,
1
,
1
,
nil
,
chkf
)
...
...
c19261966.lua
View file @
e11aa44f
...
@@ -38,10 +38,10 @@ function c19261966.initial_effect(c)
...
@@ -38,10 +38,10 @@ function c19261966.initial_effect(c)
c
:
RegisterEffect
(
e4
)
c
:
RegisterEffect
(
e4
)
end
end
function
c19261966
.
ffilter1
(
c
)
function
c19261966
.
ffilter1
(
c
)
return
c
:
IsFusionSetCard
(
0x9d
)
return
c
:
IsFusionSetCard
(
0x9d
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c19261966
.
ffilter2
(
c
)
function
c19261966
.
ffilter2
(
c
)
return
c
:
IsFusionAttribute
(
ATTRIBUTE_WATER
)
or
c
:
IsHasEffect
(
4904633
)
return
(
c
:
IsFusionAttribute
(
ATTRIBUTE_WATER
)
or
c
:
IsHasEffect
(
4904633
))
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c19261966
.
exfilter
(
c
,
g
)
function
c19261966
.
exfilter
(
c
,
g
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
...
...
c20366274.lua
View file @
e11aa44f
...
@@ -49,10 +49,10 @@ function c20366274.initial_effect(c)
...
@@ -49,10 +49,10 @@ function c20366274.initial_effect(c)
c
:
RegisterEffect
(
e5
)
c
:
RegisterEffect
(
e5
)
end
end
function
c20366274
.
ffilter1
(
c
)
function
c20366274
.
ffilter1
(
c
)
return
c
:
IsFusionSetCard
(
0x9d
)
return
c
:
IsFusionSetCard
(
0x9d
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c20366274
.
ffilter2
(
c
)
function
c20366274
.
ffilter2
(
c
)
return
c
:
IsFusionAttribute
(
ATTRIBUTE_LIGHT
)
or
c
:
IsHasEffect
(
4904633
)
return
(
c
:
IsFusionAttribute
(
ATTRIBUTE_LIGHT
)
or
c
:
IsHasEffect
(
4904633
))
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c20366274
.
exfilter
(
c
,
g
)
function
c20366274
.
exfilter
(
c
,
g
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
...
...
c28016193.lua
View file @
e11aa44f
...
@@ -36,7 +36,7 @@ function c28016193.initial_effect(c)
...
@@ -36,7 +36,7 @@ function c28016193.initial_effect(c)
c
:
RegisterEffect
(
e3
)
c
:
RegisterEffect
(
e3
)
end
end
function
c28016193
.
filter
(
c
)
function
c28016193
.
filter
(
c
)
return
c
:
IsFusionSetCard
(
0xe1
)
return
c
:
IsFusionSetCard
(
0xe1
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c28016193
.
fscon
(
e
,
g
,
gc
,
chkfnf
)
function
c28016193
.
fscon
(
e
,
g
,
gc
,
chkfnf
)
if
g
==
nil
then
return
true
end
if
g
==
nil
then
return
true
end
...
...
c31111109.lua
View file @
e11aa44f
...
@@ -27,14 +27,17 @@ function c31111109.initial_effect(c)
...
@@ -27,14 +27,17 @@ function c31111109.initial_effect(c)
e3
:
SetValue
(
aux
.
fuslimit
)
e3
:
SetValue
(
aux
.
fuslimit
)
c
:
RegisterEffect
(
e3
)
c
:
RegisterEffect
(
e3
)
end
end
function
c31111109
.
ffilter
(
c
,
cat
)
return
c
:
IsFusionSetCard
(
cat
)
and
not
c
:
IsHasEffect
(
6205579
)
end
function
c31111109
.
fuscon
(
e
,
g
,
gc
,
chkf
)
function
c31111109
.
fuscon
(
e
,
g
,
gc
,
chkf
)
if
g
==
nil
then
return
false
end
if
g
==
nil
then
return
false
end
if
gc
then
return
false
end
if
gc
then
return
false
end
local
g1
=
g
:
Filter
(
Card
.
IsFusionSetCard
,
nil
,
0x9
)
local
g1
=
g
:
Filter
(
c31111109
.
ffilter
,
nil
,
0x9
)
local
c1
=
g1
:
GetCount
()
local
c1
=
g1
:
GetCount
()
local
g2
=
g
:
Filter
(
Card
.
IsFusionSetCard
,
nil
,
0x1f
)
local
g2
=
g
:
Filter
(
c31111109
.
ffilter
,
nil
,
0x1f
)
local
c2
=
g2
:
GetCount
()
local
c2
=
g2
:
GetCount
()
local
g3
=
g
:
Filter
(
Card
.
IsFusionSetCard
,
nil
,
0x8
)
local
g3
=
g
:
Filter
(
c31111109
.
ffilter
,
nil
,
0x8
)
local
c3
=
g3
:
GetCount
()
local
c3
=
g3
:
GetCount
()
local
ag
=
g1
:
Clone
()
local
ag
=
g1
:
Clone
()
ag
:
Merge
(
g2
)
ag
:
Merge
(
g2
)
...
@@ -44,9 +47,9 @@ function c31111109.fuscon(e,g,gc,chkf)
...
@@ -44,9 +47,9 @@ function c31111109.fuscon(e,g,gc,chkf)
end
end
function
c31111109
.
fusop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
gc
,
chkf
)
function
c31111109
.
fusop
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
gc
,
chkf
)
if
gc
then
return
end
if
gc
then
return
end
local
g1
=
eg
:
Filter
(
Card
.
IsFusionSetCard
,
nil
,
0x9
)
local
g1
=
eg
:
Filter
(
c31111109
.
ffilter
,
nil
,
0x9
)
local
g2
=
eg
:
Filter
(
Card
.
IsFusionSetCard
,
nil
,
0x1f
)
local
g2
=
eg
:
Filter
(
c31111109
.
ffilter
,
nil
,
0x1f
)
local
g3
=
eg
:
Filter
(
Card
.
IsFusionSetCard
,
nil
,
0x8
)
local
g3
=
eg
:
Filter
(
c31111109
.
ffilter
,
nil
,
0x8
)
local
ag
=
g1
:
Clone
()
local
ag
=
g1
:
Clone
()
ag
:
Merge
(
g2
)
ag
:
Merge
(
g2
)
ag
:
Merge
(
g3
)
ag
:
Merge
(
g3
)
...
...
c4688231.lua
View file @
e11aa44f
...
@@ -31,14 +31,14 @@ function c4688231.initial_effect(c)
...
@@ -31,14 +31,14 @@ function c4688231.initial_effect(c)
c
:
RegisterEffect
(
e3
)
c
:
RegisterEffect
(
e3
)
end
end
function
c4688231
.
filter1
(
c
)
function
c4688231
.
filter1
(
c
)
return
c
:
IsFusionSetCard
(
0xe1
)
return
c
:
IsFusionSetCard
(
0xe1
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
--additional condition for 77693536 effect
--additional condition for 77693536 effect
function
c4688231
.
filter2
(
c
)
function
c4688231
.
filter2
(
c
)
if
c
:
IsLocation
(
LOCATION_MZONE
)
then
if
c
:
IsLocation
(
LOCATION_MZONE
)
then
return
c
:
IsType
(
TYPE_PENDULUM
)
return
c
:
IsType
(
TYPE_PENDULUM
)
and
not
c
:
IsHasEffect
(
6205579
)
else
else
return
bit
.
band
(
c
:
GetOriginalType
(),
TYPE_PENDULUM
)
~=
0
return
bit
.
band
(
c
:
GetOriginalType
(),
TYPE_PENDULUM
)
~=
0
and
not
c
:
IsHasEffect
(
6205579
)
end
end
end
end
function
c4688231
.
fscon
(
e
,
g
,
gc
,
chkfnf
)
function
c4688231
.
fscon
(
e
,
g
,
gc
,
chkfnf
)
...
...
c48424886.lua
View file @
e11aa44f
...
@@ -41,10 +41,10 @@ function c48424886.initial_effect(c)
...
@@ -41,10 +41,10 @@ function c48424886.initial_effect(c)
c
:
RegisterEffect
(
e4
)
c
:
RegisterEffect
(
e4
)
end
end
function
c48424886
.
ffilter1
(
c
)
function
c48424886
.
ffilter1
(
c
)
return
c
:
IsFusionSetCard
(
0x9d
)
return
c
:
IsFusionSetCard
(
0x9d
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c48424886
.
ffilter2
(
c
)
function
c48424886
.
ffilter2
(
c
)
return
c
:
IsFusionAttribute
(
ATTRIBUTE_FIRE
)
or
c
:
IsHasEffect
(
4904633
)
return
(
c
:
IsFusionAttribute
(
ATTRIBUTE_FIRE
)
or
c
:
IsHasEffect
(
4904633
))
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c48424886
.
exfilter
(
c
,
g
)
function
c48424886
.
exfilter
(
c
,
g
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
...
...
c54401832.lua
View file @
e11aa44f
...
@@ -11,10 +11,10 @@ function c54401832.initial_effect(c)
...
@@ -11,10 +11,10 @@ function c54401832.initial_effect(c)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
end
end
function
c54401832
.
filter1
(
c
)
function
c54401832
.
filter1
(
c
)
return
c
:
IsFusionSetCard
(
0xe1
)
return
c
:
IsFusionSetCard
(
0xe1
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c54401832
.
filter2
(
c
)
function
c54401832
.
filter2
(
c
)
return
c
:
IsAttackBelow
(
3000
)
return
c
:
IsAttackBelow
(
3000
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c54401832
.
fscon
(
e
,
g
,
gc
,
chkfnf
)
function
c54401832
.
fscon
(
e
,
g
,
gc
,
chkfnf
)
if
g
==
nil
then
return
true
end
if
g
==
nil
then
return
true
end
...
...
c6205579.lua
View file @
e11aa44f
...
@@ -6,7 +6,8 @@ function c6205579.initial_effect(c)
...
@@ -6,7 +6,8 @@ function c6205579.initial_effect(c)
e1
:
SetCode
(
EFFECT_FUSION_SUBSTITUTE
)
e1
:
SetCode
(
EFFECT_FUSION_SUBSTITUTE
)
e1
:
SetCondition
(
c6205579
.
subcon
)
e1
:
SetCondition
(
c6205579
.
subcon
)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
local
e2
=
e1
:
Clone
()
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
)
e2
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetProperty
(
EFFECT_FLAG_CANNOT_DISABLE
+
EFFECT_FLAG_UNCOPYABLE
)
e2
:
SetCode
(
6205579
)
e2
:
SetCode
(
6205579
)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
...
...
c74009824.lua
View file @
e11aa44f
...
@@ -40,10 +40,10 @@ function c74009824.initial_effect(c)
...
@@ -40,10 +40,10 @@ function c74009824.initial_effect(c)
c
:
RegisterEffect
(
e4
)
c
:
RegisterEffect
(
e4
)
end
end
function
c74009824
.
ffilter1
(
c
)
function
c74009824
.
ffilter1
(
c
)
return
c
:
IsFusionSetCard
(
0x9d
)
return
c
:
IsFusionSetCard
(
0x9d
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c74009824
.
ffilter2
(
c
)
function
c74009824
.
ffilter2
(
c
)
return
c
:
IsFusionAttribute
(
ATTRIBUTE_WIND
)
or
c
:
IsHasEffect
(
4904633
)
return
(
c
:
IsFusionAttribute
(
ATTRIBUTE_WIND
)
or
c
:
IsHasEffect
(
4904633
))
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c74009824
.
exfilter
(
c
,
g
)
function
c74009824
.
exfilter
(
c
,
g
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
...
...
c74506079.lua
View file @
e11aa44f
...
@@ -17,7 +17,7 @@ function c74506079.initial_effect(c)
...
@@ -17,7 +17,7 @@ function c74506079.initial_effect(c)
c
:
RegisterEffect
(
e2
)
c
:
RegisterEffect
(
e2
)
end
end
function
c74506079
.
ffilter
(
c
)
function
c74506079
.
ffilter
(
c
)
return
c
:
IsFusionSetCard
(
0x3e
)
and
c
:
IsRace
(
RACE_REPTILE
)
return
c
:
IsFusionSetCard
(
0x3e
)
and
c
:
IsRace
(
RACE_REPTILE
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c74506079
.
fscondition
(
e
,
g
,
gc
)
function
c74506079
.
fscondition
(
e
,
g
,
gc
)
if
g
==
nil
then
return
true
end
if
g
==
nil
then
return
true
end
...
...
c74822425.lua
View file @
e11aa44f
...
@@ -42,10 +42,10 @@ function c74822425.initial_effect(c)
...
@@ -42,10 +42,10 @@ function c74822425.initial_effect(c)
c
:
RegisterEffect
(
e4
)
c
:
RegisterEffect
(
e4
)
end
end
function
c74822425
.
ffilter1
(
c
)
function
c74822425
.
ffilter1
(
c
)
return
c
:
IsFusionSetCard
(
0x9d
)
return
c
:
IsFusionSetCard
(
0x9d
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c74822425
.
ffilter2
(
c
)
function
c74822425
.
ffilter2
(
c
)
return
c
:
IsFusionAttribute
(
ATTRIBUTE_EARTH
)
or
c
:
IsHasEffect
(
4904633
)
return
(
c
:
IsFusionAttribute
(
ATTRIBUTE_EARTH
)
or
c
:
IsHasEffect
(
4904633
))
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c74822425
.
exfilter
(
c
,
g
)
function
c74822425
.
exfilter
(
c
,
g
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
...
...
c77693536.lua
View file @
e11aa44f
...
@@ -39,14 +39,14 @@ function c77693536.initial_effect(c)
...
@@ -39,14 +39,14 @@ function c77693536.initial_effect(c)
c
:
RegisterEffect
(
e3
)
c
:
RegisterEffect
(
e3
)
end
end
function
c77693536
.
filter1
(
c
)
function
c77693536
.
filter1
(
c
)
return
c
:
IsFusionSetCard
(
0xe1
)
return
c
:
IsFusionSetCard
(
0xe1
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
--additional condition for 77693536 effect
--additional condition for 77693536 effect
function
c77693536
.
filter2
(
c
)
function
c77693536
.
filter2
(
c
)
if
c
:
IsLocation
(
LOCATION_MZONE
)
then
if
c
:
IsLocation
(
LOCATION_MZONE
)
then
return
c
:
IsType
(
TYPE_NORMAL
)
return
c
:
IsType
(
TYPE_NORMAL
)
and
not
c
:
IsHasEffect
(
6205579
)
else
else
return
bit
.
band
(
c
:
GetOriginalType
(),
TYPE_NORMAL
)
~=
0
return
bit
.
band
(
c
:
GetOriginalType
(),
TYPE_NORMAL
)
~=
0
and
not
c
:
IsHasEffect
(
6205579
)
end
end
end
end
function
c77693536
.
fscon
(
e
,
g
,
gc
,
chkfnf
)
function
c77693536
.
fscon
(
e
,
g
,
gc
,
chkfnf
)
...
...
c81612598.lua
View file @
e11aa44f
...
@@ -11,10 +11,10 @@ function c81612598.initial_effect(c)
...
@@ -11,10 +11,10 @@ function c81612598.initial_effect(c)
c
:
RegisterEffect
(
e1
)
c
:
RegisterEffect
(
e1
)
end
end
function
c81612598
.
filter1
(
c
)
function
c81612598
.
filter1
(
c
)
return
c
:
IsFusionSetCard
(
0xe1
)
return
c
:
IsFusionSetCard
(
0xe1
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c81612598
.
filter2
(
c
)
function
c81612598
.
filter2
(
c
)
return
c
:
IsAttackBelow
(
2500
)
return
c
:
IsAttackBelow
(
2500
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c81612598
.
fscon
(
e
,
g
,
gc
,
chkfnf
)
function
c81612598
.
fscon
(
e
,
g
,
gc
,
chkfnf
)
if
g
==
nil
then
return
true
end
if
g
==
nil
then
return
true
end
...
...
c84058253.lua
View file @
e11aa44f
...
@@ -30,7 +30,7 @@ function c84058253.initial_effect(c)
...
@@ -30,7 +30,7 @@ function c84058253.initial_effect(c)
c
:
RegisterEffect
(
e3
)
c
:
RegisterEffect
(
e3
)
end
end
function
c84058253
.
ffilter
(
c
)
function
c84058253
.
ffilter
(
c
)
return
c
:
IsFusionSetCard
(
0x1093
)
return
c
:
IsFusionSetCard
(
0x1093
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c84058253
.
fscondition
(
e
,
g
,
gc
,
chkf
)
function
c84058253
.
fscondition
(
e
,
g
,
gc
,
chkf
)
if
g
==
nil
then
return
false
end
if
g
==
nil
then
return
false
end
...
...
c94977269.lua
View file @
e11aa44f
...
@@ -47,10 +47,10 @@ function c94977269.initial_effect(c)
...
@@ -47,10 +47,10 @@ function c94977269.initial_effect(c)
c
:
RegisterEffect
(
e5
)
c
:
RegisterEffect
(
e5
)
end
end
function
c94977269
.
ffilter1
(
c
)
function
c94977269
.
ffilter1
(
c
)
return
c
:
IsFusionSetCard
(
0x9d
)
return
c
:
IsFusionSetCard
(
0x9d
)
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c94977269
.
ffilter2
(
c
)
function
c94977269
.
ffilter2
(
c
)
return
c
:
IsFusionAttribute
(
ATTRIBUTE_DARK
)
or
c
:
IsHasEffect
(
4904633
)
return
(
c
:
IsFusionAttribute
(
ATTRIBUTE_DARK
)
or
c
:
IsHasEffect
(
4904633
))
and
not
c
:
IsHasEffect
(
6205579
)
end
end
function
c94977269
.
exfilter
(
c
,
g
)
function
c94977269
.
exfilter
(
c
,
g
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
return
c
:
IsFaceup
()
and
c
:
IsCanBeFusionMaterial
()
and
not
g
:
IsContains
(
c
)
...
...
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