1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00
RedMew/map_gen/presets/maori.lua

16 lines
375 B
Lua
Raw Normal View History

2018-05-08 22:23:07 +02:00
local b = require "map_gen.shared.builders"
local pic = require "map_gen.data.presets.maori"
2018-05-08 22:23:07 +02:00
pic= b.decompress(pic)
2018-05-08 22:23:07 +02:00
local shape = b.picture(pic)
shape = b.invert(shape)
local crop = b.rectangle(pic.width, pic.height)
shape = b.all{shape, crop}
2018-05-08 22:23:07 +02:00
local map = b.single_pattern(shape, pic.width, pic.height)
2018-05-08 22:23:07 +02:00
map = b.translate(map, 10, -96)
map = b.scale(map,12,12)
2018-01-24 21:52:40 +02:00
return map