Pause button, backspace, added.

This commit is contained in:
Storm Dragon
2026-01-21 10:37:14 -05:00
parent bcc0c7db01
commit 7eb62b0d70
6 changed files with 37 additions and 9 deletions

View File

@@ -54,7 +54,7 @@ const int ZOMBIE_ATTACK_MAX_HEIGHT = 6;
// Boar settings
const int BOAR_HEALTH = 4;
const int BOAR_MAX_COUNT = 3;
const int BOAR_MAX_COUNT = 1;
const int BOAR_MOVE_INTERVAL_MIN = 800;
const int BOAR_MOVE_INTERVAL_MAX = 1500;
const int BOAR_ATTACK_INTERVAL = 1500;
@@ -66,6 +66,7 @@ const int BOAR_FOOTSTEP_MAX_DISTANCE = 5;
const float BOAR_SOUND_VOLUME_STEP = 3.0;
const int BOAR_SIGHT_RANGE = 4;
const int BOAR_CHARGE_SPEED = 500; // ms per tile when charging
const int BOAR_SPAWN_CHANCE_PER_HOUR = 30;
// Barricade configuration
const int BARRICADE_BASE_HEALTH = 100;