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
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
八宫一月
ygopro-THC-cards
Commits
e91473e9
Commit
e91473e9
authored
Feb 09, 2022
by
Grajade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update c74563025.lua
parent
1329ea4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
20 deletions
+8
-20
script/c74563025.lua
script/c74563025.lua
+8
-20
No files found.
script/c74563025.lua
View file @
e91473e9
...
...
@@ -23,9 +23,6 @@ function c74563025.initial_effect(c)
e2
:
SetCode
(
EFFECT_DIRECT_ATTACK
)
c
:
RegisterEffect
(
e2
)
end
function
c74563025
.
filter
(
c
)
return
aux
.
TRUE
end
function
c74563025
.
cost
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
e
:
SetLabel
(
100
)
if
chk
==
0
then
return
true
end
...
...
@@ -41,24 +38,16 @@ end
function
c74563025
.
target
(
e
,
tp
,
eg
,
ep
,
ev
,
re
,
r
,
rp
,
chk
)
local
ph
=
Duel
.
GetCurrentPhase
()
local
dg
=
Duel
.
GetMatchingGroup
(
c74563025
.
filter
,
tp
,
0
,
LOCATION_ONFIELD
,
nil
)
if
e
:
GetLabel
()
~=
100
then
return
false
end
e
:
SetLabel
(
0
)
local
ct
=
0
if
ph
>=
PHASE_BATTLE_START
and
ph
<=
PHASE_BATTLE
then
ct
=
1
else
ct
=
2
if
chk
==
0
then
if
e
:
GetLabel
()
~=
100
then
return
false
end
return
e
:
GetHandler
():
IsReleasable
()
and
Duel
.
GetTurnPlayer
()
==
tp
and
Duel
.
GetFieldGroupCount
(
tp
,
0
,
LOCATION_ONFIELD
)
>
0
and
((
ph
>=
PHASE_BATTLE_START
and
ph
<=
PHASE_BATTLE
)
or
Duel
.
IsExistingMatchingCard
(
c74563025
.
rlfilter
,
tp
,
LOCATION_ONFIELD
+
LOCATION_HAND
,
0
,
1
,
e
:
GetHandler
()))
end
if
chk
==
0
then
if
(
ph
>=
PHASE_BATTLE_START
and
ph
<=
PHASE_BATTLE
)
then
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsReleasable
,
tp
,
LOCATION_ONFIELD
+
LOCATION_HAND
,
0
,
1
,
e
:
GetHandler
())
and
dg
:
GetCount
()
>
0
and
e
:
GetHandler
():
IsReleasable
()
and
Duel
.
GetTurnPlayer
()
==
tp
else
return
Duel
.
IsExistingMatchingCard
(
Card
.
IsReleasable
,
tp
,
LOCATION_ONFIELD
+
LOCATION_HAND
,
0
,
2
,
e
:
GetHandler
())
and
dg
:
GetCount
()
>
0
and
e
:
GetHandler
():
IsReleasable
()
and
Duel
.
GetTurnPlayer
()
==
tp
end
end
Debug
.
Message
(
ct
)
e
:
SetLabel
(
0
)
local
ct
=
1
if
ph
>=
PHASE_BATTLE_START
and
ph
<=
PHASE_BATTLE
then
ct
=
0
end
Duel
.
Hint
(
HINT_SELECTMSG
,
tp
,
HINTMSG_RELEASE
)
local
cg
=
Duel
.
SelectMatchingCard
(
tp
,
c74563025
.
rlfilter
,
tp
,
LOCATION_ONFIELD
+
LOCATION_HAND
,
0
,
ct
,
2
,
e
:
GetHandler
(),
tp
)
local
cg
=
Duel
.
SelectMatchingCard
(
tp
,
c74563025
.
rlfilter
,
tp
,
LOCATION_ONFIELD
+
LOCATION_HAND
,
0
,
ct
,
1
,
e
:
GetHandler
(),
tp
)
cg
:
AddCard
(
e
:
GetHandler
())
local
tc
=
cg
:
GetFirst
()
local
ctype
=
0
...
...
@@ -70,7 +59,6 @@ function c74563025.target(e,tp,eg,ep,ev,re,r,rp,chk)
end
tc
=
cg
:
GetNext
()
end
e
:
SetLabel
(
0
,
cg
:
GetCount
())
Duel
.
Release
(
cg
,
REASON_COST
)
if
e
:
IsHasType
(
EFFECT_TYPE_ACTIVATE
)
then
Duel
.
SetChainLimit
(
c74563025
.
chlimit
(
ctype
))
...
...
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