diff --git a/game/building_factory.c b/game/building_factory.c index d1a6a01..1413ba1 100644 --- a/game/building_factory.c +++ b/game/building_factory.c @@ -176,8 +176,8 @@ ecs_entity_t placeBuilding(Game *game, BuildingType type, .range = 46.0f, .projMinDamage = 40.0f, .projMaxDamage = 80.0f, - .projMinLifespan = 2.6f, - .projMaxLifespan = 3.2f, + .projMinLifespan = 0.8f, + .projMaxLifespan = 1.2f, .projSpeed = 100.0f, .projRadius = 4.0f, .projDamageCount = 3, diff --git a/game/components.h b/game/components.h index 50904c4..708f0ab 100644 --- a/game/components.h +++ b/game/components.h @@ -101,14 +101,14 @@ static ParticleEmitter GET_FIREBALL_EMITTER() { .emitterLifetime = 2.0f, .data.minOffset = { -2.0f, -2.0f }, .data.maxOffset = { 2.0f, 2.0f }, - .data.emmitRate = 1.2f, + .data.emmitRate = 2.2f, .data.emmitVariance = 1.0f, .data.emmitVarianceMin = 0.0f, .data.emmitVarianceMax = 1.0f, - .data.startColor = { 210, 0, 0, 210 }, + .data.startColor = { 210, 10, 10, 210 }, .data.endColor = { 110, 10, 10, 110 }, - .data.minLifetime = 0.4f, - .data.maxLifetime = 0.8f, + .data.minLifetime = 0.3f, + .data.maxLifetime = 0.5f, .data.minStartSize = 4.0f, .data.maxStartSize = 6.0f, .data.tileID = getParticleTypeTile(PARTICLE_CIRCLE),