2018-05-08 22:23:07 +02:00
|
|
|
local b = require "map_gen.shared.builders"
|
2018-01-20 00:10:20 +02:00
|
|
|
local pic = require "map_gen.data.presets.turkey"
|
2019-01-16 22:33:32 +02:00
|
|
|
local RS = require 'map_gen.shared.redmew_surface'
|
|
|
|
local MGSP = require 'resources.map_gen_settings'
|
|
|
|
|
|
|
|
RS.set_map_gen_settings(
|
|
|
|
{
|
|
|
|
MGSP.cliff_none
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
pic = b.decompress(pic)
|
2017-11-23 01:33:03 +02:00
|
|
|
|
2018-05-08 22:23:07 +02:00
|
|
|
local shape = b.picture(pic)
|
2019-01-16 22:33:32 +02:00
|
|
|
shape = b.scale(shape, 4, 4)
|
|
|
|
shape = b.translate(shape, -300, 500)
|
2017-11-23 01:33:03 +02:00
|
|
|
|
|
|
|
return shape
|