1
0
mirror of https://github.com/veden/Rampant.git synced 2025-01-30 04:30:52 +02:00

FACTO-181: Reduced particle count for blood fountains

This commit is contained in:
Aaron Veden 2022-06-17 16:55:38 -07:00
parent 6feebabd9b
commit 7be2a03c1a
No known key found for this signature in database
GPG Key ID: FF5990B1C6DD3F84

View File

@ -698,7 +698,7 @@ function particleUtils.makeBloodFountains(attributes)
{ {
type = "create-entity", type = "create-entity",
entity_name = attributes.name .. "-blood-fountain-rampant", entity_name = attributes.name .. "-blood-fountain-rampant",
repeat_count = 20, repeat_count = 10,
repeat_count_deviation = 3, repeat_count_deviation = 3,
offset_deviation = {{-0.4, -0.4}, {0.4, 0.4}} offset_deviation = {{-0.4, -0.4}, {0.4, 0.4}}
} }
@ -729,7 +729,7 @@ function particleUtils.makeBloodFountains(attributes)
{ {
{ {
type = "create-particle", type = "create-particle",
repeat_count = 130, repeat_count = 65,
repeat_count_deviation = 20, repeat_count_deviation = 20,
particle_name = bloodParticle, particle_name = bloodParticle,
initial_height = 0.5, initial_height = 0.5,
@ -792,7 +792,7 @@ function particleUtils.makeBloodFountains(attributes)
{ {
type = "create-entity", type = "create-entity",
entity_name = attributes.name .. "-blood-fountain-rampant", entity_name = attributes.name .. "-blood-fountain-rampant",
repeat_count = 35, repeat_count = 20,
repeat_count_deviation = 5, repeat_count_deviation = 5,
offset_deviation = {{-0.4, -0.4}, {0.4, 0.4}} offset_deviation = {{-0.4, -0.4}, {0.4, 0.4}}
} }
@ -825,7 +825,7 @@ function particleUtils.makeBloodFountains(attributes)
{ {
{ {
type = "create-particle", type = "create-particle",
repeat_count = 130, repeat_count = 100,
repeat_count_deviation = 20, repeat_count_deviation = 20,
particle_name = bloodParticle, particle_name = bloodParticle,
initial_height = 0.5, initial_height = 0.5,
@ -888,7 +888,7 @@ function particleUtils.makeBloodFountains(attributes)
{ {
type = "create-entity", type = "create-entity",
entity_name = attributes.name .. "-blood-fountain-big-rampant", entity_name = attributes.name .. "-blood-fountain-big-rampant",
repeat_count = 35, repeat_count = 30,
repeat_count_deviation = 5, repeat_count_deviation = 5,
offset_deviation = {{-1.6, -1.6}, {1.6, 1.6}} offset_deviation = {{-1.6, -1.6}, {1.6, 1.6}}
} }