From f1464f77121a3ceb80c3ca084ed73b80c759f2e3 Mon Sep 17 00:00:00 2001 From: thetek Date: Mon, 13 May 2024 15:05:25 +0200 Subject: [PATCH] feat: add specific threat types --- schema-types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema-types.ts b/schema-types.ts index 1080271..ce03029 100644 --- a/schema-types.ts +++ b/schema-types.ts @@ -60,7 +60,7 @@ export type DiscreteRange = number & tag export type Target = { location: Point, threatLevel: Range<0, 1>, - type: string, + type: "airDefense" | "artillery" | "radar", }; export type Point = {