mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-16 10:19:27 +02:00
15 lines
405 B
Lua
15 lines
405 B
Lua
|
local ob = require 'map_gen.presets.crash_site.outpost_builder'
|
||
|
|
||
|
return ob.make_1_way {
|
||
|
part_size = 3,
|
||
|
[1] = {tile = 'stone-path'},
|
||
|
[2] = {tile = 'stone-path'},
|
||
|
[3] = {tile = 'stone-path'},
|
||
|
[4] = {tile = 'stone-path'},
|
||
|
[5] = {tile = 'stone-path'},
|
||
|
[6] = {tile = 'stone-path'},
|
||
|
[7] = {tile = 'stone-path'},
|
||
|
[8] = {tile = 'stone-path'},
|
||
|
[9] = {tile = 'stone-path'}
|
||
|
}
|