Initial Working Creep Handler

This commit is contained in:
2025-07-06 16:00:36 -03:00
parent 2a7b74542c
commit bb3f797fc3
8 changed files with 41 additions and 117 deletions

View File

@@ -22,10 +22,10 @@ export type GameConfig = {
* @type {GameConfig}
*/
export const DEFAULT_GAME_CONFIG: GameConfig = {
maxCreeps: 50,
maxCreeps: 15,
minCreepsPerRole: {
harvester: 5,
upgrader: 5,
builder: 5
upgrader: 0,
builder: 0
}
};