Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-scripts
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
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
Commits
356fb070
You need to sign in or sign up before continuing.
Commit
356fb070
authored
Dec 19, 2016
by
DailyShana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
47eb3e46
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
26 deletions
+9
-26
c41209827.lua
c41209827.lua
+1
-1
c49306994.lua
c49306994.lua
+6
-4
c65646587.lua
c65646587.lua
+1
-20
utility.lua
utility.lua
+1
-1
No files found.
c41209827.lua
View file @
356fb070
...
...
@@ -38,7 +38,7 @@ function c41209827.initial_effect(c)
c
:
RegisterEffect
(
e3
)
end
function
c41209827
.
ffilter
(
c
)
return
c
:
IsFusionAttribute
(
ATTRIBUTE_DARK
)
and
c
:
IsLocation
(
LOCATION_
MZONE
)
and
not
c
:
IsType
(
TYPE_TOKEN
)
return
c
:
IsFusionAttribute
(
ATTRIBUTE_DARK
)
and
c
:
IsLocation
(
LOCATION_
ONFIELD
)
and
not
c
:
IsType
(
TYPE_TOKEN
)
end
function
c41209827
.
atkcon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
return
bit
.
band
(
e
:
GetHandler
():
GetSummonType
(),
SUMMON_TYPE_FUSION
)
==
SUMMON_TYPE_FUSION
...
...
c49306994.lua
View file @
356fb070
...
...
@@ -31,7 +31,7 @@ function c49306994.initial_effect(c)
e4
:
SetType
(
EFFECT_TYPE_FIELD
+
EFFECT_TYPE_TRIGGER_F
)
e4
:
SetRange
(
LOCATION_SZONE
)
e4
:
SetCode
(
EVENT_ATTACK_ANNOUNCE
)
e4
:
SetCondition
(
c49306994
.
act
con
)
e4
:
SetCondition
(
c49306994
.
dis
con
)
e4
:
SetOperation
(
c49306994
.
disop
)
c
:
RegisterEffect
(
e4
)
--destroy
...
...
@@ -77,9 +77,11 @@ function c49306994.aclimit(e,re,tp)
end
function
c49306994
.
actcon
(
e
)
local
tc
=
e
:
GetHandler
():
GetEquipTarget
()
local
a
=
Duel
.
GetAttacker
()
local
d
=
Duel
.
GetAttackTarget
()
return
(
a
and
a
==
tc
)
or
(
d
and
d
==
tc
)
return
Duel
.
GetAttacker
()
==
tc
or
Duel
.
GetAttackTarget
()
==
tc
end
function
c49306994
.
discon
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
tc
=
e
:
GetHandler
():
GetEquipTarget
()
return
Duel
.
GetAttacker
()
==
tc
or
Duel
.
GetAttackTarget
()
==
tc
end
function
c49306994
.
disfilter
(
c
)
return
aux
.
disfilter1
(
c
)
and
c
:
IsType
(
TYPE_SPELL
+
TYPE_TRAP
)
...
...
c65646587.lua
View file @
356fb070
...
...
@@ -9,29 +9,10 @@ function c65646587.initial_effect(c)
e1
:
SetTarget
(
c65646587
.
target
)
e1
:
SetOperation
(
c65646587
.
activate
)
c
:
RegisterEffect
(
e1
)
if
not
c65646587
.
global_check
then
c65646587
.
global_check
=
true
local
f
=
Card
.
IsCanBeFusionMaterial
Card
.
IsCanBeFusionMaterial
=
function
(
c
,
fc
,
ismon
)
if
(
c
:
GetSequence
()
==
6
or
c
:
GetSequence
()
==
7
)
and
c
:
IsLocation
(
LOCATION_SZONE
)
then
return
f
(
c
,
fc
,
true
)
end
if
c
:
IsCode
(
80604091
)
then
return
f
(
c
,
fc
,
true
)
end
return
f
(
c
,
fc
,
ismon
)
end
local
f2
=
Card
.
IsType
Card
.
IsType
=
function
(
c
,
tp
)
if
(
c
:
GetSequence
()
==
6
or
c
:
GetSequence
()
==
7
)
and
c
:
IsLocation
(
LOCATION_SZONE
)
then
local
opt
=
bit
.
bor
(
c
:
GetOriginalType
(),
TYPE_SPELL
)
return
bit
.
band
(
tp
,
opt
)
~=
0
end
return
f2
(
c
,
tp
)
end
end
end
function
c65646587
.
filter0
(
c
,
e
)
local
seq
=
c
:
GetSequence
()
return
(
seq
==
6
or
seq
==
7
)
and
c
:
IsCanBeFusionMaterial
(
nil
,
true
)
and
not
c
:
IsImmuneToEffect
(
e
)
return
(
seq
==
6
or
seq
==
7
)
and
c
:
IsCanBeFusionMaterial
()
and
not
c
:
IsImmuneToEffect
(
e
)
end
function
c65646587
.
filter1
(
c
,
e
)
return
c
:
IsCanBeFusionMaterial
()
and
not
c
:
IsImmuneToEffect
(
e
)
...
...
utility.lua
View file @
356fb070
...
...
@@ -445,7 +445,7 @@ function Auxiliary.XyzOperation2(f,lv,minc,maxc,alterf,desc,op)
end
end
function
Auxiliary
.
FConditionCheckF
(
c
,
chkf
)
return
c
:
Is
OnField
(
)
and
c
:
IsControler
(
chkf
)
return
c
:
Is
Location
(
LOCATION_MZONE
)
and
c
:
IsControler
(
chkf
)
end
--Fusion monster, name + name
--material_count: number of different names in material list
...
...
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