From 74f1c1eac1cd901a4003ee0b1a21cc433a7852bc Mon Sep 17 00:00:00 2001 From: "Kacper Kostka (aider)" Date: Wed, 2 Apr 2025 12:00:35 +0200 Subject: [PATCH] feat: Add attackCooldown to animals and weapon check for soldiers --- entities.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/entities.js b/entities.js index 44811b7..ea68f6a 100644 --- a/entities.js +++ b/entities.js @@ -24,7 +24,7 @@ function createCitizen(name, x, y, forcedProfession=null) { energy: ENERGY_MAX, health: HEALTH_MAX, education: 0, - hasWeapon: false + hasWeapon: profession === "Soldier" // Soldiers start with a weapon }; } @@ -107,7 +107,8 @@ function createAnimal(type, x, y) { vy: (Math.random() - 0.5) * 0.4, hunger: 0, dead: false, - reproductionCooldown: cd + reproductionCooldown: cd, + attackCooldown: 0 }; }