feat(data): add domain type for units

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Natalie 2026-04-26 18:35:40 -07:00
parent 3d04d5cb65
commit 7c123269b3

View file

@ -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;
}