From 57b90ac7245f80c26939fae5b84bf33b2baf7c29 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 15 Dec 2025 16:09:07 -0800 Subject: [PATCH] add imageId/actionId to JobSkill type --- src/lib/types/JobSkill.d.ts | 2 ++ src/lib/types/api/entities.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/lib/types/JobSkill.d.ts b/src/lib/types/JobSkill.d.ts index cdf376b3..e6a78dd2 100644 --- a/src/lib/types/JobSkill.d.ts +++ b/src/lib/types/JobSkill.d.ts @@ -13,4 +13,6 @@ export interface JobSkill { sub: boolean emp: boolean order: number + imageId?: string + actionId?: number } diff --git a/src/lib/types/api/entities.ts b/src/lib/types/api/entities.ts index b7c3473e..cb4830c2 100644 --- a/src/lib/types/api/entities.ts +++ b/src/lib/types/api/entities.ts @@ -191,6 +191,8 @@ export interface JobSkill { base: boolean // Base skill (for advanced jobs) order: number // Display order job: Job // Associated job + imageId?: string // Image filename (e.g., "2710_3") + actionId?: number // Unique game ID } // JobAccessory entity