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
a233f986
Commit
a233f986
authored
Feb 10, 2026
by
mercury233
Committed by
GitHub
Feb 10, 2026
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix Ultimate Tyranno (#3124)
parent
0b9a6b8c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
c15894048.lua
c15894048.lua
+6
-6
No files found.
c15894048.lua
View file @
a233f986
...
...
@@ -6,8 +6,8 @@ function c15894048.initial_effect(c)
e1
:
SetCode
(
EFFECT_CANNOT_ATTACK
)
e1
:
SetRange
(
LOCATION_MZONE
)
e1
:
SetTargetRange
(
LOCATION_MZONE
,
0
)
e1
:
SetTarget
(
c15894048
.
catg
)
e1
:
SetCondition
(
c15894048
.
cacon
)
e1
:
SetTarget
(
c15894048
.
catg
)
c
:
RegisterEffect
(
e1
)
local
e3
=
Effect
.
CreateEffect
(
c
)
e3
:
SetType
(
EFFECT_TYPE_SINGLE
)
...
...
@@ -15,15 +15,15 @@ function c15894048.initial_effect(c)
e3
:
SetValue
(
1
)
c
:
RegisterEffect
(
e3
)
end
function
c15894048
.
cacon
(
e
)
return
Duel
.
IsBattlePhase
()
and
Duel
.
IsTurnPlayer
(
e
:
GetHandlerPlayer
())
end
function
c15894048
.
catg
(
e
,
c
)
return
not
c
:
IsCode
(
15894048
)
and
Duel
.
IsExistingMatchingCard
(
c15894048
.
cfilter
,
e
:
GetHandlerPlayer
(),
LOCATION_MZONE
,
0
,
1
,
c
)
end
function
c15894048
.
cfilter
(
c
)
if
c
:
IsFacedown
()
or
not
c
:
IsCode
(
15894048
)
or
not
c
:
IsAttackable
(
)
then
return
false
end
if
not
(
c
:
IsCode
(
15894048
)
and
c
:
IsAttackable
()
)
then
return
false
end
local
ag
,
direct
=
c
:
GetAttackableTarget
()
return
ag
:
GetCount
()
>
0
or
direct
end
function
c15894048
.
cacon
(
e
)
return
Duel
.
GetCurrentPhase
()
>
PHASE_MAIN1
and
Duel
.
GetCurrentPhase
()
<
PHASE_MAIN2
and
Duel
.
IsExistingMatchingCard
(
c15894048
.
cfilter
,
e
:
GetHandlerPlayer
(),
LOCATION_MZONE
,
0
,
1
,
nil
)
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