From 468878b2899502c36b43333e1484cabc84a29685 Mon Sep 17 00:00:00 2001 From: Maik Wild Date: Thu, 28 Dec 2017 22:53:39 +0100 Subject: [PATCH] stone-rock ==> rock-big --- locale/gen_combined/borg_planet.lua | 4 ++-- locale/gen_combined/borg_planet_v2.lua | 4 ++-- locale/gen_combined/dagobah_swamp.lua | 2 +- locale/gen_combined/grilledham_map_gen/map_gen.lua | 14 +++++++------- locale/gen_combined/island_resort.lua | 8 ++++---- locale/gen_terrain/neko_bridged_rivers.lua | 4 ++-- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/locale/gen_combined/borg_planet.lua b/locale/gen_combined/borg_planet.lua index 222b9480..1c31c586 100644 --- a/locale/gen_combined/borg_planet.lua +++ b/locale/gen_combined/borg_planet.lua @@ -448,8 +448,8 @@ function run_combined_module(event) if noise_trees < -0.5 then if tile_to_insert == "sand-3" or tile_to_insert == "sand-1" then if math.random(1,15) == 1 then - if event.surface.can_place_entity {name="stone-rock", position={pos_x,pos_y}} then - event.surface.create_entity {name="stone-rock", position={pos_x,pos_y}} + if event.surface.can_place_entity {name="rock-big", position={pos_x,pos_y}} then + event.surface.create_entity {name="rock-big", position={pos_x,pos_y}} end end end diff --git a/locale/gen_combined/borg_planet_v2.lua b/locale/gen_combined/borg_planet_v2.lua index 3a2da007..a2ae4174 100644 --- a/locale/gen_combined/borg_planet_v2.lua +++ b/locale/gen_combined/borg_planet_v2.lua @@ -452,8 +452,8 @@ function run_borg( params ) if noise_trees < -0.5 then if tile_to_insert == "sand-3" or tile_to_insert == "sand-1" then if math.random(1,15) == 1 then - if surface.can_place_entity {name="stone-rock", position={pos_x,pos_y}} then - surface.create_entity {name="stone-rock", position={pos_x,pos_y}} + if surface.can_place_entity {name="rock-big", position={pos_x,pos_y}} then + surface.create_entity {name="rock-big", position={pos_x,pos_y}} end end end diff --git a/locale/gen_combined/dagobah_swamp.lua b/locale/gen_combined/dagobah_swamp.lua index 627a0c28..e88499d6 100644 --- a/locale/gen_combined/dagobah_swamp.lua +++ b/locale/gen_combined/dagobah_swamp.lua @@ -343,7 +343,7 @@ function run_swamp_entities(params) table.insert(entity_list, {name="tree-09", pos={pos_x,pos_y},chance = 1000}) table.insert(entity_list, {name="tree-07", pos={pos_x,pos_y},chance = 400}) table.insert(entity_list, {name="tree-06", pos={pos_x,pos_y},chance = 150}) - table.insert(entity_list, {name="stone-rock", pos={pos_x,pos_y},chance = 400}) + table.insert(entity_list, {name="rock-big", pos={pos_x,pos_y},chance = 400}) table.insert(entity_list, {name="green-coral", pos={pos_x,pos_y},chance = 10000}) table.insert(entity_list, {name="medium-ship-wreck", pos={pos_x,pos_y},chance = 25000, health="random"}) table.insert(entity_list, {name="small-ship-wreck", pos={pos_x,pos_y},chance = 25000, health="random"}) diff --git a/locale/gen_combined/grilledham_map_gen/map_gen.lua b/locale/gen_combined/grilledham_map_gen/map_gen.lua index 3b409032..3a5d4fa3 100644 --- a/locale/gen_combined/grilledham_map_gen/map_gen.lua +++ b/locale/gen_combined/grilledham_map_gen/map_gen.lua @@ -235,13 +235,13 @@ local entity_options = { {"tree-06", 300}, {"tree-07", 800}, {"tree-09", 2000}, - {"stone-rock", 400}, + {"rock-big", 400}, }, ["dirt-6"] = { {"tree-06", 150}, {"tree-07", 400}, {"tree-09", 1000}, - {"stone-rock", 300}, + {"rock-big", 300}, }, ["grass-1"] = { {"tree-01", 150}, @@ -249,7 +249,7 @@ local entity_options = { {"tree-06", 400}, {"tree-07", 400}, {"tree-09", 1000}, - {"stone-rock", 400}, + {"rock-big", 400}, {"green-coral", 10000}, }, ["grass-3"] = { @@ -260,7 +260,7 @@ local entity_options = { {"tree-07", 800}, {"tree-08", 400}, {"tree-09", 2000}, - {"stone-rock", 400}, + {"rock-big", 400}, }, ["grass-2"] = { {"tree-04", 800}, @@ -268,7 +268,7 @@ local entity_options = { {"tree-07", 400}, {"tree-09", 1000}, {"dry-tree", 1000}, - {"stone-rock", 200}, + {"rock-big", 200}, }, ["hazard-concrete-left"] = {}, ["hazard-concrete-right"] = {}, @@ -302,14 +302,14 @@ local entity_options = { {"dry-tree", 1000}, {"dry-hairy-tree", 1000}, {"dead-tree", 1000}, - {"stone-rock", 150}, + {"rock-big", 150}, }, ["sand-3"] = { {"dead-tree", 1000}, {"dry-tree", 1000}, {"dry-hairy-tree", 1000}, - {"stone-rock", 150}, + {"rock-big", 150}, }, ["stone-path"] = {}, diff --git a/locale/gen_combined/island_resort.lua b/locale/gen_combined/island_resort.lua index b406a7ee..ff094e4d 100644 --- a/locale/gen_combined/island_resort.lua +++ b/locale/gen_combined/island_resort.lua @@ -187,15 +187,15 @@ function run_island( params ) if tile_to_insert == "sand-1" or tile_to_insert == "sand-3" then if math.random(1,200) == 1 then - if surface.can_place_entity {name="stone-rock", position={pos_x,pos_y}} then - surface.create_entity {name="stone-rock", position={pos_x,pos_y}} + if surface.can_place_entity {name="rock-big", position={pos_x,pos_y}} then + surface.create_entity {name="rock-big", position={pos_x,pos_y}} end end end if tile_to_insert == "grass-1" or tile_to_insert == "grass-2" or tile_to_insert == "grass-3" then if math.random(1,2000) == 1 then - if surface.can_place_entity {name="stone-rock", position={pos_x,pos_y}} then - surface.create_entity {name="stone-rock", position={pos_x,pos_y}} + if surface.can_place_entity {name="rock-big", position={pos_x,pos_y}} then + surface.create_entity {name="rock-big", position={pos_x,pos_y}} end end end diff --git a/locale/gen_terrain/neko_bridged_rivers.lua b/locale/gen_terrain/neko_bridged_rivers.lua index b89b5524..377a80ef 100644 --- a/locale/gen_terrain/neko_bridged_rivers.lua +++ b/locale/gen_terrain/neko_bridged_rivers.lua @@ -150,8 +150,8 @@ function run_terrain_module(event) end - if math.floor(terrain_D) % 5 == 1 and math.random(1,70) == 1 and surface.can_place_entity {name="stone-rock", position={x,y}} then - surface.create_entity {name="stone-rock", position={x,y}} + if math.floor(terrain_D) % 5 == 1 and math.random(1,70) == 1 and surface.can_place_entity {name="rock-big", position={x,y}} then + surface.create_entity {name="rock-big", position={x,y}} end else