mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
13 lines
311 B
Lua
13 lines
311 B
Lua
local b = require "map_gen.shared.builders"
|
|
|
|
local pic = require "map_gen.data.presets.broken_web"
|
|
pic = b.decompress(pic)
|
|
|
|
local shape = b.picture(pic)
|
|
shape = b.invert(shape)
|
|
|
|
local map = b.single_pattern(shape, pic.width, pic.height - 1)
|
|
map = b.translate(map, 10, -27)
|
|
map = b.scale(map, 12, 12)
|
|
|
|
return map |