mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
17 lines
435 B
Lua
17 lines
435 B
Lua
local b = require 'map_gen.shared.builders'
|
|
|
|
local beach = require 'map_gen.presets.beach'
|
|
local degrees = require "utils.math".degrees
|
|
|
|
local start_pound = b.circle(6)
|
|
start_pound = b.translate(start_pound, 0, -16)
|
|
start_pound = b.change_tile(start_pound, true, 'water')
|
|
|
|
beach = b.translate(beach, 0, -64)
|
|
|
|
local map = b.any {start_pound, beach, b.translate(b.flip_y(beach), -51200, 0)}
|
|
|
|
map = b.rotate(map, degrees(45))
|
|
|
|
return map
|