diff options
Diffstat (limited to 'src/entities/caporale.h')
-rw-r--r-- | src/entities/caporale.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/entities/caporale.h b/src/entities/caporale.h index ac4be6f..18bacbc 100644 --- a/src/entities/caporale.h +++ b/src/entities/caporale.h @@ -6,15 +6,17 @@ #ifndef CAPORALE_H #define CAPORALE_H -#define CAPORALE_COOLDOWN 0.5 +#define CAPORALE_COOLDOWN 1.0 #define CAPORALE_BULLET_DAMAGE 0.01 -#define CAPORALE_CHANGE_OF_HIT 10 +#define CAPORALE_GUN_TARGETING_SPEED 20.0 #define CAPORALE_LOW_HEALTH_THRESHOLD 0.9 #define CAPORALE_LOW_HEALTH_BULLET_DAMAGE 0.02 typedef struct Caporale { EntityFlyToPointInfo flyToPlayer; double timeSinceLastShot; + + Vector3 gunTarget; } Caporale; void initCaporale(Entity * entity, Game * game); |