1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00
RedMew/map_gen/maps/test.lua
2019-01-31 20:15:41 -05:00

14 lines
287 B
Lua

local b = require 'map_gen.shared.builders'
local spiral = b.rectangular_spiral(1)
local factor = 9
local f = factor
local shape = b.single_spiral_rotate_pattern(spiral, f, f)
f = f * factor
shape = b.single_spiral_rotate_pattern(shape, f, f)
shape = b.scale(shape, 64)
return shape