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