mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
19 lines
395 B
Lua
19 lines
395 B
Lua
local b = require "map_gen.shared.builders"
|
|
local pic = require "map_gen.data.presets.turkey"
|
|
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)
|
|
|
|
local shape = b.picture(pic)
|
|
shape = b.scale(shape, 4, 4)
|
|
shape = b.translate(shape, -300, 500)
|
|
|
|
return shape
|