You've already forked ComfyFactorio
mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2026-04-28 21:04:39 +02:00
13 lines
795 B
Lua
13 lines
795 B
Lua
|
|
return function (center, surface) -- mountain range
|
||
|
|
local ce = surface.create_entity --save typing
|
||
|
|
local fN = game.forces.neutral
|
||
|
|
|
||
|
|
ce { name = "big-rock", position = { center.x + (-7.5), center.y + (-0.5) }, force = fN }
|
||
|
|
ce { name = "big-rock", position = { center.x + (-3.5), center.y + (-0.5) }, force = fN }
|
||
|
|
ce { name = "big-rock", position = { center.x + (0.5), center.y + (-0.5) }, force = fN }
|
||
|
|
ce { name = "big-rock", position = { center.x + (4.5), center.y + (-0.5) }, force = fN }
|
||
|
|
ce { name = "big-rock", position = { center.x + (-5.5), center.y + (1.5) }, force = fN }
|
||
|
|
ce { name = "big-rock", position = { center.x + (-1.5), center.y + (1.5) }, force = fN }
|
||
|
|
ce { name = "big-rock", position = { center.x + (2.5), center.y + (1.5) }, force = fN }
|
||
|
|
end
|