mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
14 lines
400 B
Lua
14 lines
400 B
Lua
require "map_gencombined.grilledham_map_gen.map_gen"
|
|
require "map_gencombined.grilledham_map_gen.builders"
|
|
|
|
local pic = require "map_gencombined.grilledham_map_gen.data.maori"
|
|
|
|
local shape = picture_builder(pic.data, pic.width, pic.height)
|
|
shape = translate(shape, 10, -96)
|
|
shape = scale(shape,2,2)
|
|
--shape = rotate(shape, degrees(0))
|
|
|
|
-- shape = change_tile(shape, false, "deepwater")
|
|
|
|
return shape
|