2018-05-08 22:23:07 +02:00
|
|
|
local b = require "map_gen.shared.builders"
|
|
|
|
|
2018-04-12 21:55:07 +02:00
|
|
|
local pic = require "map_gen.data.presets.plus" --or whatever you called it in data->presets
|
2019-01-16 20:44:55 +02:00
|
|
|
pic = b.decompress(pic)
|
2018-05-08 22:23:07 +02:00
|
|
|
local map = b.picture(pic)
|
2018-04-12 21:55:07 +02:00
|
|
|
|
2018-05-08 22:23:07 +02:00
|
|
|
map = b.single_pattern(map, pic.width-1, pic.height-1)
|
2018-04-12 21:55:07 +02:00
|
|
|
|
2018-05-08 22:23:07 +02:00
|
|
|
map = b.translate(map, 86, 0)
|
2018-04-12 21:55:07 +02:00
|
|
|
|
2018-05-08 22:23:07 +02:00
|
|
|
-- uncomment the line below to change the size of the map b.scale(x, y)
|
|
|
|
map = b.scale(map, 1.5, 1.5)
|
2018-04-12 21:55:07 +02:00
|
|
|
|
2019-01-16 20:44:55 +02:00
|
|
|
return map
|