From 7be2a03c1a34329854d11d1f96182405326e06b0 Mon Sep 17 00:00:00 2001 From: Aaron Veden Date: Fri, 17 Jun 2022 16:55:38 -0700 Subject: [PATCH] FACTO-181: Reduced particle count for blood fountains --- prototypes/utils/ParticleUtils.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/prototypes/utils/ParticleUtils.lua b/prototypes/utils/ParticleUtils.lua index 100b608..8b9ed67 100644 --- a/prototypes/utils/ParticleUtils.lua +++ b/prototypes/utils/ParticleUtils.lua @@ -698,7 +698,7 @@ function particleUtils.makeBloodFountains(attributes) { type = "create-entity", entity_name = attributes.name .. "-blood-fountain-rampant", - repeat_count = 20, + repeat_count = 10, repeat_count_deviation = 3, offset_deviation = {{-0.4, -0.4}, {0.4, 0.4}} } @@ -729,7 +729,7 @@ function particleUtils.makeBloodFountains(attributes) { { type = "create-particle", - repeat_count = 130, + repeat_count = 65, repeat_count_deviation = 20, particle_name = bloodParticle, initial_height = 0.5, @@ -792,7 +792,7 @@ function particleUtils.makeBloodFountains(attributes) { type = "create-entity", entity_name = attributes.name .. "-blood-fountain-rampant", - repeat_count = 35, + repeat_count = 20, repeat_count_deviation = 5, offset_deviation = {{-0.4, -0.4}, {0.4, 0.4}} } @@ -825,7 +825,7 @@ function particleUtils.makeBloodFountains(attributes) { { type = "create-particle", - repeat_count = 130, + repeat_count = 100, repeat_count_deviation = 20, particle_name = bloodParticle, initial_height = 0.5, @@ -888,7 +888,7 @@ function particleUtils.makeBloodFountains(attributes) { type = "create-entity", entity_name = attributes.name .. "-blood-fountain-big-rampant", - repeat_count = 35, + repeat_count = 30, repeat_count_deviation = 5, offset_deviation = {{-1.6, -1.6}, {1.6, 1.6}} }