feat: Enhance terrain generation with new types and drawing mechanics

This commit is contained in:
Kacper Kostka (aider)
2025-04-02 12:18:52 +02:00
parent 3fa8a695b3
commit a4ef5e0f40
5 changed files with 264 additions and 17 deletions

View File

@@ -37,6 +37,13 @@ const COST_SPAWNER = 500;
const COST_TREE = 50;
const COST_SOLDIER = 250;
// Terrain costs
const COST_WATER = 20;
const COST_GRASS = 10;
const COST_SAND = 15;
const COST_DIRT = 5;
const COST_STONE = 25;
// Earn money
const REWARD_DELIVER_WOOD = 5;
const REWARD_BUILD_COMPLETE = 20;