From 577763211438efd50a2bdf1aac9b37410c4f0492 Mon Sep 17 00:00:00 2001 From: Stefan Arsic <55553527+WoodyXP@users.noreply.github.com> Date: Tue, 4 Jul 2023 14:04:08 +0200 Subject: [PATCH] Create navalunitdatabase.ts --- client/src/units/navalunitdatabase.ts | 31 +++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 client/src/units/navalunitdatabase.ts diff --git a/client/src/units/navalunitdatabase.ts b/client/src/units/navalunitdatabase.ts new file mode 100644 index 00000000..65fb93dd --- /dev/null +++ b/client/src/units/navalunitdatabase.ts @@ -0,0 +1,31 @@ +import { UnitDatabase } from "./unitdatabase" + +export class NavalDatabase extends UnitDatabase { + constructor() { + super(); + this.blueprints = { + "CVN-70 Carl Vinson": { + "name": "CVN-70 Carl Vinson", + "class": "Aircraft Carrier", + "era": ["Mid Cold War"], + "label": "CVN-70 Carl Vinson", + "shortLabel": "CVN-70 Carl Vinson", + "range": "Short", + "loadouts": [ + { + "fuel": 1, + "items": [], + "roles": [ + "Template" + ], + "code": "", + "name": "Default" + } + ], + "filename": "" + }, + } + } +} + +export var navalDatabase = new NavalDatabase();