1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-18 03:21:47 +02:00

14 lines
321 B
Lua
Raw Normal View History

2018-05-08 21:23:07 +01:00
local b = require "map_gen.shared.builders"
local pic = require "map_gen.data.presets.goat"
2018-05-08 21:23:07 +01:00
local pic = b.decompress(pic)
2018-05-08 21:23:07 +01:00
local shape = b.picture(pic)
shape = b.translate(shape, 10, -96)
shape = b.scale(shape,2,2)
--shape = b.rotate(shape, degrees(0))
2018-05-08 21:23:07 +01:00
-- shape = b.change_tile(shape, false, "deepwater")
return shape