zenno: improve single target ahead/behind skills wording

For #28.
This commit is contained in:
2026-07-31 22:30:39 -04:00
parent ff07b90c73
commit 656e155625
+2 -2
View File
@@ -259,8 +259,8 @@ export const TARGET_FORMAT: Readonly<Record<Target, (v?: number) => string>> = {
[Target.Sympathizers]: () => 'to others with Sympathy', [Target.Sympathizers]: () => 'to others with Sympathy',
[Target.InView]: (v) => targetn(v!, 'in view'), [Target.InView]: (v) => targetn(v!, 'in view'),
[Target.Frontmost]: (v) => targetn(v!, 'at the front', 'the frontmost'), [Target.Frontmost]: (v) => targetn(v!, 'at the front', 'the frontmost'),
[Target.Ahead]: (v) => targetn(v!, 'ahead'), [Target.Ahead]: (v) => targetn(v!, 'ahead', 'to the runner ahead'),
[Target.Behind]: (v) => targetn(v!, 'behind'), [Target.Behind]: (v) => targetn(v!, 'behind', 'to the runner behind'),
[Target.AllTeammates]: () => 'to all teammates', [Target.AllTeammates]: () => 'to all teammates',
[Target.Style]: (v) => stylename(v!, 'all'), [Target.Style]: (v) => stylename(v!, 'all'),
[Target.RushingAhead]: (v) => targetn(v!, 'rushing ahead'), [Target.RushingAhead]: (v) => targetn(v!, 'rushing ahead'),