working on port

This commit is contained in:
Evan
2024-11-15 20:43:15 -08:00
parent 49b35b0e45
commit 4236a580e3
9 changed files with 111 additions and 23 deletions
+4 -2
View File
@@ -27,7 +27,8 @@ export enum GameMap {
export enum UnitType {
TransportShip,
Destroyer
Destroyer,
Port
}
export class Item {
@@ -36,7 +37,8 @@ export class Item {
export const Items = {
Nuke: new Item("Nuke", 1_000_000),
Destroyer: new Item("Destroyer", 10)
Destroyer: new Item("Destroyer", 10),
Port: new Item("Port", 10)
} as const;
export class Nation {