forked from cacklingfiend/lignumis
		
	Balance noise
This commit is contained in:
		
							parent
							
								
									598d6a241f
								
							
						
					
					
						commit
						cbba8dddf2
					
				
					 3 changed files with 24 additions and 24 deletions
				
			
		| 
						 | 
				
			
			@ -18,7 +18,7 @@ agricultural_tower.energy_source = {
 | 
			
		|||
    fuel_categories = { "chemical" },
 | 
			
		||||
    effectivity = 1,
 | 
			
		||||
    fuel_inventory_size = 1,
 | 
			
		||||
    emissions_per_minute = { noise = 100 }
 | 
			
		||||
    emissions_per_minute = { noise = 75 }
 | 
			
		||||
}
 | 
			
		||||
agricultural_tower.resistances = nil
 | 
			
		||||
agricultural_tower.input_inventory_size = 1
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -65,9 +65,9 @@ end
 | 
			
		|||
 | 
			
		||||
-- Walls absorb noise
 | 
			
		||||
 | 
			
		||||
emit_constant("wall", "wooden-wall", -10)
 | 
			
		||||
emit_constant("wall", "stone-wall", -20)
 | 
			
		||||
emit_constant("gate", "gate", -10)
 | 
			
		||||
emit_constant("wall", "wooden-wall", -15)
 | 
			
		||||
emit_constant("wall", "stone-wall", -25)
 | 
			
		||||
emit_constant("gate", "gate", -20)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- Buildings emit noise
 | 
			
		||||
| 
						 | 
				
			
			@ -78,8 +78,8 @@ emit("mining-drill", "burner-mining-drill", 50)
 | 
			
		|||
emit("mining-drill", "electric-mining-drill", 100)
 | 
			
		||||
emit("mining-drill", "big-mining-drill", 200)
 | 
			
		||||
--emit("mining-drill", "deep-miner", 2000)
 | 
			
		||||
--emit("agricultural-tower", "burner-agricultural-tower", 100)
 | 
			
		||||
emit("agricultural-tower", "agricultural-tower", 100)
 | 
			
		||||
--emit("agricultural-tower", "burner-agricultural-tower", 75)
 | 
			
		||||
emit("agricultural-tower", "agricultural-tower", 75)
 | 
			
		||||
--emit("assembling-machine", "burner-assembling-machine", 50)
 | 
			
		||||
--emit("assembling-machine", "steam-assembling-machine", 50)
 | 
			
		||||
emit("assembling-machine", "assembling-machine-1", 10)
 | 
			
		||||
| 
						 | 
				
			
			@ -100,18 +100,18 @@ emit("lab", "biolab", 20)
 | 
			
		|||
emit("locomotive", "locomotive", 200)
 | 
			
		||||
emit_constant("locomotive", "locomotive", 10)
 | 
			
		||||
 | 
			
		||||
--emit_constant("transport-belt", "wood-transport-belt", 3)
 | 
			
		||||
emit_constant("transport-belt", "transport-belt", 4)
 | 
			
		||||
emit_constant("transport-belt", "fast-transport-belt", 8)
 | 
			
		||||
emit_constant("transport-belt", "express-transport-belt", 12)
 | 
			
		||||
emit_constant("transport-belt", "turbo-transport-belt", 16)
 | 
			
		||||
--emit_constant("underground-belt", "wood-underground-belt", 30)
 | 
			
		||||
emit_constant("underground-belt", "underground-belt", 40)
 | 
			
		||||
emit_constant("underground-belt", "fast-underground-belt", 50)
 | 
			
		||||
emit_constant("underground-belt", "express-underground-belt", 60)
 | 
			
		||||
emit_constant("underground-belt", "turbo-underground-belt", 80)
 | 
			
		||||
--emit_constant("splitter", "wood-splitter", 60)
 | 
			
		||||
emit_constant("splitter", "splitter", 70)
 | 
			
		||||
emit_constant("splitter", "fast-splitter", 80)
 | 
			
		||||
emit_constant("splitter", "express-splitter", 90)
 | 
			
		||||
emit_constant("splitter", "turbo-splitter", 100)
 | 
			
		||||
--emit_constant("transport-belt", "wood-transport-belt", 2.4)
 | 
			
		||||
emit_constant("transport-belt", "transport-belt", 3)
 | 
			
		||||
emit_constant("transport-belt", "fast-transport-belt", 4)
 | 
			
		||||
emit_constant("transport-belt", "express-transport-belt", 6)
 | 
			
		||||
emit_constant("transport-belt", "turbo-transport-belt", 8)
 | 
			
		||||
--emit_constant("underground-belt", "wood-underground-belt", 15)
 | 
			
		||||
emit_constant("underground-belt", "underground-belt", 20)
 | 
			
		||||
emit_constant("underground-belt", "fast-underground-belt", 30)
 | 
			
		||||
emit_constant("underground-belt", "express-underground-belt", 40)
 | 
			
		||||
emit_constant("underground-belt", "turbo-underground-belt", 50)
 | 
			
		||||
--emit_constant("splitter", "wood-splitter", 30)
 | 
			
		||||
emit_constant("splitter", "splitter", 40)
 | 
			
		||||
emit_constant("splitter", "fast-splitter", 50)
 | 
			
		||||
emit_constant("splitter", "express-splitter", 60)
 | 
			
		||||
emit_constant("splitter", "turbo-splitter", 80)
 | 
			
		||||
| 
						 | 
				
			
			@ -10,13 +10,13 @@ Belt.EntityBuilder:new()
 | 
			
		|||
    :animationSpeedMultiplier(1.01)
 | 
			
		||||
    :apply({
 | 
			
		||||
        transportBelt = {
 | 
			
		||||
            emissions_per_second = { noise = 0.05 }
 | 
			
		||||
            emissions_per_second = { noise = 0.04 }
 | 
			
		||||
        },
 | 
			
		||||
        undergroundBelt = {
 | 
			
		||||
            emissions_per_second = { noise = 0.5 }
 | 
			
		||||
            emissions_per_second = { noise = 0.25 }
 | 
			
		||||
        },
 | 
			
		||||
        splitter = {
 | 
			
		||||
            emissions_per_second = { noise = 1 }
 | 
			
		||||
            emissions_per_second = { noise = 0.5 }
 | 
			
		||||
        }
 | 
			
		||||
    })
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue