Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-THC-cards
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
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
HiiragiGuardians
ygopro-THC-cards
Commits
99f0761a
Commit
99f0761a
authored
Apr 03, 2024
by
GuGu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update c25501.lua 上古八阿哥
parent
4f6c266a
Pipeline
#26221
passed with stage
in 22 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
55 deletions
+55
-55
script/c25501.lua
script/c25501.lua
+55
-55
No files found.
script/c25501.lua
View file @
99f0761a
--花与妖的连结✿风见幽香
function
c25501
.
initial_effect
(
c
)
--link summon
Exlink
.
AddLinkProcedure
(
c
,
nil
,
7
,
nil
,
c25501
.
mattg
,
c25501
.
matval
,
0
,
LOCATION_MZONE
)
c
:
EnableReviveLimit
()
--atk
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
)
e2
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
e2
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
e2
:
SetRange
(
LOCATION_MZONE
)
e2
:
SetValue
(
c25501
.
atkval
)
c
:
RegisterEffect
(
e2
)
--cannot attack
local
e4
=
Effect
.
CreateEffect
(
c
)
e4
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_CONTINUOUS
)
e4
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e4
:
SetOperation
(
c25501
.
atklimit
)
c
:
RegisterEffect
(
e4
)
--immune trap
local
e6
=
Effect
.
CreateEffect
(
c
)
e6
:
SetType
(
EFFECT_TYPE_SINGLE
)
e6
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
e6
:
SetRange
(
LOCATION_MZONE
)
e6
:
SetCode
(
EFFECT_IMMUNE_EFFECT
)
e6
:
SetCondition
(
c25501
.
econ
)
e6
:
SetValue
(
c25501
.
efilter
)
c
:
RegisterEffect
(
e6
)
end
function
c25501
.
mattg
(
e
,
c
)
local
tp
=
e
:
GetHandler
():
GetControler
()
local
check1
=
c
:
IsType
(
TYPE_MONSTER
)
and
(
c
:
IsOnField
()
or
c
:
IsFacedown
())
return
check1
and
not
(
c
:
IsType
(
TYPE_LINK
)
and
c
:
IsControler
(
1
-
tp
))
end
function
c25501
.
matval
(
e
,
lc
,
mg
,
c
,
tp
)
if
e
:
GetHandler
()
~=
lc
then
return
false
,
nil
end
return
true
,
not
mg
or
mg
end
function
c25501
.
atkval
(
e
,
c
)
return
c
:
GetLinkedGroupCount
()
*
1000
end
function
c25501
.
atklimit
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_CANNOT_ATTACK
)
e1
:
SetReset
(
RESET_EVENT
+
0x1fe0000
+
RESET_PHASE
+
PHASE_END
)
e
:
GetHandler
():
RegisterEffect
(
e1
)
end
function
c25501
.
econ
(
e
)
local
tp
=
e
:
GetHandler
():
GetControler
()
return
Duel
.
GetLP
(
tp
)
>
Duel
.
GetLP
(
1
-
tp
)
end
function
c25501
.
efilter
(
e
,
te
)
return
te
:
IsActiveType
(
TYPE_TRAP
)
end
--花与妖的连结✿风见幽香
function
c25501
.
initial_effect
(
c
)
--link summon
Exlink
.
AddLinkProcedure
(
c
,
nil
,
7
,
nil
,
c25501
.
mattg
,
c25501
.
matval
,
0
,
LOCATION_MZONE
)
c
:
EnableReviveLimit
()
--atk
local
e2
=
Effect
.
CreateEffect
(
c
)
e2
:
SetType
(
EFFECT_TYPE_SINGLE
)
e2
:
SetCode
(
EFFECT_UPDATE_ATTACK
)
e2
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
e2
:
SetRange
(
LOCATION_MZONE
)
e2
:
SetValue
(
c25501
.
atkval
)
c
:
RegisterEffect
(
e2
)
--cannot attack
local
e4
=
Effect
.
CreateEffect
(
c
)
e4
:
SetType
(
EFFECT_TYPE_SINGLE
+
EFFECT_TYPE_CONTINUOUS
)
e4
:
SetCode
(
EVENT_SPSUMMON_SUCCESS
)
e4
:
SetOperation
(
c25501
.
atklimit
)
c
:
RegisterEffect
(
e4
)
--immune trap
local
e6
=
Effect
.
CreateEffect
(
c
)
e6
:
SetType
(
EFFECT_TYPE_SINGLE
)
e6
:
SetProperty
(
EFFECT_FLAG_SINGLE_RANGE
)
e6
:
SetRange
(
LOCATION_MZONE
)
e6
:
SetCode
(
EFFECT_IMMUNE_EFFECT
)
e6
:
SetCondition
(
c25501
.
econ
)
e6
:
SetValue
(
c25501
.
efilter
)
c
:
RegisterEffect
(
e6
)
end
function
c25501
.
mattg
(
e
,
c
)
local
tp
=
e
:
GetHandler
():
GetControler
()
local
check1
=
c
:
IsType
(
TYPE_MONSTER
)
and
c
:
IsOnField
()
and
c
:
IsFaceup
()
return
check1
and
not
(
c
:
IsType
(
TYPE_LINK
)
and
c
:
IsControler
(
1
-
tp
))
end
function
c25501
.
matval
(
e
,
lc
,
mg
,
c
,
tp
)
if
e
:
GetHandler
()
~=
lc
then
return
false
,
nil
end
return
true
,
not
mg
or
mg
end
function
c25501
.
atkval
(
e
,
c
)
return
c
:
GetLinkedGroupCount
()
*
1000
end
function
c25501
.
atklimit
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
)
local
e1
=
Effect
.
CreateEffect
(
e
:
GetHandler
())
e1
:
SetType
(
EFFECT_TYPE_SINGLE
)
e1
:
SetCode
(
EFFECT_CANNOT_ATTACK
)
e1
:
SetReset
(
RESET_EVENT
+
0x1fe0000
+
RESET_PHASE
+
PHASE_END
)
e
:
GetHandler
():
RegisterEffect
(
e1
)
end
function
c25501
.
econ
(
e
)
local
tp
=
e
:
GetHandler
():
GetControler
()
return
Duel
.
GetLP
(
tp
)
>
Duel
.
GetLP
(
1
-
tp
)
end
function
c25501
.
efilter
(
e
,
te
)
return
te
:
IsActiveType
(
TYPE_TRAP
)
end
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