1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00
RedMew/map_gen/terrain/tris_chunk_grid.lua
2019-01-31 20:15:41 -05:00

16 lines
460 B
Lua

local b = require 'map_gen.shared.builders'
local size = 8 * 32
local concrete = b.tile('concrete')
local hazard = b.change_tile(b.rectangle(size - 4, size - 4), true, 'hazard-concrete-left')
local stone = b.change_tile(b.rectangle(size - 6, size - 6), true, 'stone-path')
local empty = b.rectangle(size - 8, size - 8)
local shape = b.any {stone, hazard, concrete}
shape = b.subtract(shape, empty)
shape = b.single_pattern(shape, size, size)
return shape