mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-14 10:13:13 +02:00
13 lines
344 B
Lua
13 lines
344 B
Lua
require "map_gen.shared.generate"
|
|
require "map_gen.shared.builders"
|
|
|
|
local pic = require "map_gen.data.presets.manhattan"
|
|
|
|
local shape = picture_builder(pic.data, pic.width, pic.height)
|
|
shape = translate(shape, 10, -96)
|
|
shape = scale(shape,2,2)
|
|
shape = rotate(shape, degrees(-22.5))
|
|
|
|
shape = change_tile(shape, false, "deepwater")
|
|
|
|
return shape |