1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00

Update manhattan.lua

-changed spawn point to center
-scaled map 2 to 1(easier handle monsters)
-normaly take 70hours complete map
This commit is contained in:
Claude 2024-02-17 14:26:33 +02:00 committed by GitHub
parent cc2e19efc0
commit d893a01be9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,11 +11,11 @@ local pic = require 'map_gen.data.presets.manhattan'
local world_map = b.picture(pic)
world_map = b.choose(b.rectangle(pic.width, pic.height - 4), world_map, b.empty_shape)
local x_offset, y_offset = 200, 1337
local x_offset, y_offset = 100, 200
world_map = b.translate(world_map, x_offset, y_offset)
world_map = b.rotate(world_map, degrees(-270))
local scale = 2
local scale = 1
world_map = b.scale(world_map, scale)