1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00
RedMew/map_gen/presets/manhattan.lua
2018-05-08 23:46:49 +01:00

13 lines
318 B
Lua

local b = require "map_gen.shared.builders"
local pic = require "map_gen.data.presets.manhattan"
pic = b.decompress(pic)
local shape = b.picture(pic)
shape = b.translate(shape, 10, -96)
shape = b.scale(shape,2,2)
shape = b.rotate(shape, degrees(-22.5))
shape = b.change_tile(shape, false, "deepwater")
return shape