2020-04-04 19:07:08 +02:00
|
|
|
local Functions = require "maps.dungeons.functions"
|
|
|
|
|
2020-04-04 06:25:13 +02:00
|
|
|
local table_shuffle_table = table.shuffle_table
|
|
|
|
local table_insert = table.insert
|
|
|
|
local table_remove = table.remove
|
|
|
|
local math_random = math.random
|
|
|
|
local math_abs = math.abs
|
|
|
|
local math_sqrt = math.sqrt
|
|
|
|
local math_floor = math.floor
|
|
|
|
|
2020-04-06 21:41:56 +02:00
|
|
|
local function add_enemy_units(surface, room)
|
|
|
|
for _, tile in pairs(room.room_border_tiles) do if math_random(1, 24) == 1 then Functions.spawn_random_biter(surface, tile.position) end end
|
|
|
|
for _, tile in pairs(room.room_tiles) do if math_random(1, 24) == 1 then Functions.spawn_random_biter(surface, tile.position) end end
|
|
|
|
end
|
|
|
|
|
2020-04-04 06:25:13 +02:00
|
|
|
local function doom(surface, room)
|
|
|
|
for _, tile in pairs(room.path_tiles) do
|
|
|
|
surface.set_tiles({{name = "refined-concrete", position = tile.position}}, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
if #room.room_tiles > 1 then table_shuffle_table(room.room_tiles) end
|
|
|
|
for key, tile in pairs(room.room_tiles) do
|
|
|
|
surface.set_tiles({{name = "red-refined-concrete", position = tile.position}}, true)
|
2020-04-09 01:04:36 +02:00
|
|
|
if math_random(1, 16) == 1 then
|
|
|
|
surface.create_entity({name = "copper-ore", position = tile.position, amount = Functions.get_common_resource_amount()})
|
2020-04-04 06:25:13 +02:00
|
|
|
end
|
2020-04-04 19:07:08 +02:00
|
|
|
if math_random(1, 16) == 1 then
|
2020-04-04 20:24:05 +02:00
|
|
|
surface.create_entity({name = Functions.roll_worm_name(), position = tile.position})
|
2020-04-05 02:23:03 +02:00
|
|
|
end
|
2020-04-09 01:04:36 +02:00
|
|
|
if math_random(1, 320) == 1 then
|
2020-04-05 02:23:03 +02:00
|
|
|
Functions.rare_loot_crate(surface, tile.position)
|
|
|
|
else
|
2020-04-09 01:04:36 +02:00
|
|
|
if math_random(1, 640) == 1 then
|
2020-04-05 02:23:03 +02:00
|
|
|
Functions.epic_loot_crate(surface, tile.position)
|
|
|
|
end
|
|
|
|
end
|
2020-04-06 21:41:56 +02:00
|
|
|
if key % 12 == 1 and math_random(1, 2) == 1 then
|
|
|
|
Functions.set_spawner_tier(surface.create_entity({name = Functions.roll_spawner_name(), position = tile.position, force = "enemy"}))
|
2020-04-04 06:25:13 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if room.center then
|
|
|
|
if math_random(1, 5) == 1 then
|
|
|
|
local r = math_floor(math_sqrt(#room.room_tiles) * 0.15) + 1
|
|
|
|
for x = r * -1, r, 1 do
|
|
|
|
for y = r * -1, r, 1 do
|
|
|
|
local p = {room.center.x + x, room.center.y + y}
|
|
|
|
surface.set_tiles({{name = "deepwater-green", position = p}})
|
|
|
|
if math_random(1, 9) == 1 then
|
|
|
|
surface.create_entity({name = "fish", position = p})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if #room.room_border_tiles > 1 then table_shuffle_table(room.room_border_tiles) end
|
|
|
|
for key, tile in pairs(room.room_border_tiles) do
|
|
|
|
surface.set_tiles({{name = "black-refined-concrete", position = tile.position}}, true)
|
2020-04-07 10:02:32 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
for key, tile in pairs(room.room_border_tiles) do
|
2020-04-04 20:50:58 +02:00
|
|
|
if key % 8 == 1 then
|
2020-04-07 10:02:32 +02:00
|
|
|
Functions.place_border_rock(surface, tile.position)
|
2020-04-04 06:25:13 +02:00
|
|
|
end
|
|
|
|
end
|
2020-04-06 21:41:56 +02:00
|
|
|
|
|
|
|
add_enemy_units(surface, room)
|
2020-04-04 06:25:13 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return doom
|