2025-03-08 18:41:32 +01:00
|
|
|
import type { Resource } from "./types";
|
|
|
|
|
|
|
|
|
2024-11-05 12:44:24 +01:00
|
|
|
export const CULTURE_TO_WIN = 20000;
|
2024-11-15 10:59:05 +01:00
|
|
|
export const WORLD_MAP_HEIGHT = 9;
|
|
|
|
export const WORLD_MAP_WIDTH = 9;
|
2024-12-21 12:35:13 +01:00
|
|
|
|
2025-03-08 18:41:32 +01:00
|
|
|
export const RESOURCES: Resource[] = ['wood', 'stone', 'iron', 'food', 'culture'];
|
|
|
|
|
2024-12-21 12:35:13 +01:00
|
|
|
// Debug values.
|
|
|
|
export const TOWN_HALL_START_LEVEL = 1;
|
|
|
|
export const RESOURCE_BUILDINGS_START_LEVEL = 1;
|