feat: Add attackCooldown to animals and weapon check for soldiers

This commit is contained in:
Kacper Kostka (aider) 2025-04-02 12:00:35 +02:00
parent 413aebf839
commit 74f1c1eac1

View File

@ -24,7 +24,7 @@ function createCitizen(name, x, y, forcedProfession=null) {
energy: ENERGY_MAX, energy: ENERGY_MAX,
health: HEALTH_MAX, health: HEALTH_MAX,
education: 0, 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, vy: (Math.random() - 0.5) * 0.4,
hunger: 0, hunger: 0,
dead: false, dead: false,
reproductionCooldown: cd reproductionCooldown: cd,
attackCooldown: 0
}; };
} }