From 7c123269b33ccfa337e84491efc117e1d5804173 Mon Sep 17 00:00:00 2001 From: Natalie Date: Sun, 26 Apr 2026 18:35:40 -0700 Subject: [PATCH] =?UTF-8?q?feat(data):=20=E2=9C=A8=20add=20domain=20type?= =?UTF-8?q?=20for=20units?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .project/designs/app/src/data/units.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.project/designs/app/src/data/units.ts b/.project/designs/app/src/data/units.ts index 761471da..432456ed 100644 --- a/.project/designs/app/src/data/units.ts +++ b/.project/designs/app/src/data/units.ts @@ -1,6 +1,8 @@ export type AttackType = "blade" | "pierce" | "crush" | "trample" | "siege"; export type ArmorType = "unarmored" | "light" | "medium" | "armored" | "heavy" | "plate" | "fortified"; +export type Domain = "land" | "air" | "sea"; + export interface Unit { id: string; name: string; @@ -15,6 +17,7 @@ export interface Unit { range: number; movement: number; keywords: string[]; + domain: Domain; race?: string; unique?: boolean; }