2018-05-08 22:23:07 +02:00
|
|
|
local b = require "map_gen.shared.builders"
|
|
|
|
|
2018-04-17 10:44:38 +02:00
|
|
|
local pic = require "map_gen.data.presets.honeycomb"
|
2018-05-08 22:23:07 +02:00
|
|
|
local pic = b.decompress(pic)
|
|
|
|
local map = b.picture(pic)
|
2018-04-17 10:44:38 +02:00
|
|
|
|
|
|
|
-- this builds the map by duplicating the pic in every direction
|
2018-05-08 22:23:07 +02:00
|
|
|
map = b.single_pattern(map, pic.width-1, pic.height-1)
|
2018-04-17 10:44:38 +02:00
|
|
|
|
|
|
|
-- this changes the size of the map
|
2018-05-08 22:23:07 +02:00
|
|
|
--map = b.scale(map, 2, 2)
|
2018-04-17 10:44:38 +02:00
|
|
|
|
|
|
|
-- this moves the map, effectively changing the spawn point.
|
2018-05-08 22:23:07 +02:00
|
|
|
--map = b.translate(map, 0, -200)
|
2018-04-17 10:44:38 +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")
|
2018-04-17 10:44:38 +02:00
|
|
|
|
|
|
|
return map
|