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