2018-05-08 22:23:07 +02:00
|
|
|
local b = require "map_gen.shared.builders"
|
2018-11-06 14:08:33 +02:00
|
|
|
local degrees = require "utils.math".degrees
|
2018-01-20 00:10:20 +02:00
|
|
|
local pic = require "map_gen.data.presets.manhattan"
|
2018-05-08 22:23:07 +02:00
|
|
|
pic = b.decompress(pic)
|
2017-08-28 13:26:35 +02:00
|
|
|
|
2018-05-08 22:23:07 +02:00
|
|
|
local shape = b.picture(pic)
|
|
|
|
shape = b.translate(shape, 10, -96)
|
|
|
|
shape = b.scale(shape,2,2)
|
|
|
|
shape = b.rotate(shape, degrees(-22.5))
|
2017-08-29 11:28:45 +02:00
|
|
|
|
2018-05-08 22:23:07 +02:00
|
|
|
shape = b.change_tile(shape, false, "deepwater")
|
2017-08-28 13:26:35 +02:00
|
|
|
|
2018-11-06 14:08:33 +02:00
|
|
|
return shape
|