1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-18 03:21:47 +02:00

17 lines
459 B
Lua
Raw Normal View History

2018-05-08 21:23:07 +01:00
local b = require "map_gen.shared.builders"
local pic = require "map_gen.data.presets.UK"
2018-05-08 21:23:07 +01:00
local pic = b.decompress(pic)
local map = b.picture(pic)
2017-11-10 13:03:46 +01:00
-- this changes the size of the map
2018-05-08 21:23:07 +01:00
map = b.scale(map, 2, 2)
2017-11-10 13:03:46 +01:00
2017-11-12 15:55:55 +01:00
-- this moves the map, effectively changing the spawn point.
2018-05-08 21:23:07 +01:00
map = b.translate(map, 0, 10)
2017-11-10 13:03:46 +01:00
-- this sets the tile outside the bounds of the map to deepwater, remove this and it will be void.
2018-05-08 21:23:07 +01:00
map = b.change_tile(map, false, "deepwater")
2017-11-10 13:03:46 +01:00
2018-01-21 15:31:20 +00:00
return map