From 656e1556257fedada309c5b6712779042824750e Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Fri, 31 Jul 2026 22:30:39 -0400 Subject: [PATCH] zenno: improve single target ahead/behind skills wording For #28. --- zenno/src/lib/data/skill.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zenno/src/lib/data/skill.ts b/zenno/src/lib/data/skill.ts index 21900bb..95fcf6d 100644 --- a/zenno/src/lib/data/skill.ts +++ b/zenno/src/lib/data/skill.ts @@ -259,8 +259,8 @@ export const TARGET_FORMAT: Readonly string>> = { [Target.Sympathizers]: () => 'to others with Sympathy', [Target.InView]: (v) => targetn(v!, 'in view'), [Target.Frontmost]: (v) => targetn(v!, 'at the front', 'the frontmost'), - [Target.Ahead]: (v) => targetn(v!, 'ahead'), - [Target.Behind]: (v) => targetn(v!, 'behind'), + [Target.Ahead]: (v) => targetn(v!, 'ahead', 'to the runner ahead'), + [Target.Behind]: (v) => targetn(v!, 'behind', 'to the runner behind'), [Target.AllTeammates]: () => 'to all teammates', [Target.Style]: (v) => stylename(v!, 'all'), [Target.RushingAhead]: (v) => targetn(v!, 'rushing ahead'),