diff --git a/maps/biter_battles/biter_battles.lua b/maps/biter_battles/biter_battles.lua index be5895bd..911ca972 100644 --- a/maps/biter_battles/biter_battles.lua +++ b/maps/biter_battles/biter_battles.lua @@ -1484,11 +1484,11 @@ local function on_chunk_generated(event) 'dead-tree-desert', 'dry-hairy-tree', 'dry-tree', - 'rock-big', - 'rock-huge' + 'big-rock', + 'huge-rock' } ) - --surface.regenerate_entity({"dead-dry-hairy-tree","dead-grey-trunk","dead-tree-desert","dry-hairy-tree","dry-tree","rock-big","rock-huge"}) + --surface.regenerate_entity({"dead-dry-hairy-tree","dead-grey-trunk","dead-tree-desert","dry-hairy-tree","dry-tree","big-rock","huge-rock"}) local entities = surface.find_entities({ { -10, -10 }, { 10, 10 } }) for _, e in pairs(entities) do if e.type == 'simple-entity' or e.type == 'resource' or e.type == 'tree' then diff --git a/maps/biter_battles_v2/terrain.lua b/maps/biter_battles_v2/terrain.lua index f18a2d87..5167eee8 100644 --- a/maps/biter_battles_v2/terrain.lua +++ b/maps/biter_battles_v2/terrain.lua @@ -14,7 +14,7 @@ local GetNoise = require 'utils.get_noise' local simplex_noise = require 'utils.simplex_noise'.d2 local spawn_circle_size = 39 local ores = { 'copper-ore', 'iron-ore', 'stone', 'coal' } -local rocks = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rocks = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local chunk_tile_vectors = {} for x = 0, 31, 1 do @@ -629,7 +629,7 @@ function Public.generate_additional_rocks(surface) return end local position = { x = -96 + math_random(0, 192), y = -40 - math_random(0, 96) } - local rocks = { 'rock-huge', 'rock-big', 'rock-big', 'rock-big', 'sand-rock-big' } + local rocks = { 'huge-rock', 'big-rock', 'big-rock', 'big-rock', 'big-sand-rock' } for _ = 1, math_random(6, 10) do local name = rocks[math_random(1, 5)] local p = surface.find_non_colliding_position(name, { position.x + (-10 + math_random(0, 20)), position.y + (-10 + math_random(0, 20)) }, 16, 1) diff --git a/maps/blue_beach.lua b/maps/blue_beach.lua index be35bedb..36aa89bb 100644 --- a/maps/blue_beach.lua +++ b/maps/blue_beach.lua @@ -85,7 +85,7 @@ local function south_side(surface, left_top) surface.create_entity({ name = 'tree-02', position = pos }) else if math_random(1, 512) == 1 then - surface.create_entity({ name = 'rock-huge', position = pos }) + surface.create_entity({ name = 'huge-rock', position = pos }) end end end diff --git a/maps/cave_choppy/forest_world.lua b/maps/cave_choppy/forest_world.lua index 5609462a..02b8ac06 100644 --- a/maps/cave_choppy/forest_world.lua +++ b/maps/cave_choppy/forest_world.lua @@ -18,9 +18,9 @@ local math_random = math.random local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['mineable-wreckage'] = true } @@ -40,7 +40,7 @@ local tile_replacements = { ['red-desert-3'] = 'grass-4' } -local rocks = { 'rock-big', 'rock-big', 'rock-huge' } +local rocks = { 'big-rock', 'big-rock', 'huge-rock' } local decos = { 'green-hairy-grass', 'green-hairy-grass', @@ -435,8 +435,8 @@ local function on_player_joined_game() ['tree-02-red'] = { 'copper-ore' }, ['tree-04'] = { 'coal' }, ['tree-08-brown'] = { 'stone' }, - ['rock-big'] = { 'uranium-ore' }, - ['rock-huge'] = { 'uranium-ore' } + ['big-rock'] = { 'uranium-ore' }, + ['huge-rock'] = { 'uranium-ore' } } if prototypes.item['angels-ore1'] then @@ -449,8 +449,8 @@ local function on_player_joined_game() end if prototypes.item['thorium-ore'] then - storage.entity_yield['rock-big'] = { 'uranium-ore', 'thorium-ore' } - storage.entity_yield['rock-huge'] = { 'uranium-ore', 'thorium-ore' } + storage.entity_yield['big-rock'] = { 'uranium-ore', 'thorium-ore' } + storage.entity_yield['huge-rock'] = { 'uranium-ore', 'thorium-ore' } end storage.map_choppy_init_done = true diff --git a/maps/cave_choppy/main.lua b/maps/cave_choppy/main.lua index d7dad99b..133a2143 100644 --- a/maps/cave_choppy/main.lua +++ b/maps/cave_choppy/main.lua @@ -282,7 +282,7 @@ local function create_cave_miner_stats_gui(player) separators[1] = t.add { type = 'label', caption = '|' } - captions[2] = t.add { type = 'label', caption = '[img=entity.rock-huge] :' } + captions[2] = t.add { type = 'label', caption = '[img=entity.huge-rock] :' } captions[2].tooltip = 'Amount of rocks mined.' stat_numbers[2] = t.add { type = 'label', caption = storage.stats_rocks_broken } @@ -450,14 +450,14 @@ local function treasure_chest(position, distance_to_center) evolution_min = 0.0, evolution_max = 0.4 }, - { { name = 'fast-inserter', count = math.random(8, 16) }, weight = 3, evolution_min = 0.1, evolution_max = 1 }, + { { name = 'fast-inserter', count = math.random(8, 16) }, weight = 3, evolution_min = 0.1, evolution_max = 1 }, { { name = 'bulk-inserter', count = math.random(4, 8) }, weight = 1, evolution_min = 0.4, evolution_max = 1 }, - { { name = 'stack-inserter', count = math.random(4, 8) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'stack-inserter', count = math.random(4, 8) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, { { name = 'small-electric-pole', count = math.random(16, 24) }, weight = 3, @@ -1139,15 +1139,15 @@ local function on_player_joined_game(event) storage.rock_density = 62 ---- table.insert value up to 100 storage.rock_raffle = { - 'sand-rock-big', - 'sand-rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-huge' + 'big-sand-rock', + 'big-sand-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'huge-rock' } storage.worm_free_zone_radius = math.sqrt(spawn_dome_size) + 40 @@ -1293,7 +1293,7 @@ local function biter_attack_event() for _, player in pairs(game.connected_players) do if player.character.driving == false then local position = { x = player.position.x, y = player.position.y } - local p = find_first_entity_spiral_scan(position, { 'rock-huge', 'rock-big', 'sand-rock-big' }, 32) + local p = find_first_entity_spiral_scan(position, { 'huge-rock', 'big-rock', 'big-sand-rock' }, 32) if p then if p.x ^ 2 + p.y ^ 2 > spawn_dome_size then table.insert(valid_positions, p) @@ -1384,9 +1384,9 @@ local function darkness_checks() end local healing_amount = { - ['rock-big'] = 4, - ['sand-rock-big'] = 4, - ['rock-huge'] = 16 + ['big-rock'] = 4, + ['big-sand-rock'] = 4, + ['huge-rock'] = 16 } local function heal_rocks() for key, rock in pairs(storage.damaged_rocks) do @@ -1490,15 +1490,15 @@ local function on_tick() for _, item in pairs(market_items.spawn) do storage.market.add_market_item(item) end - surface.regenerate_entity({ 'rock-big', 'rock-huge' }) + surface.regenerate_entity({ 'big-rock', 'huge-rock' }) end end local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['tree-02'] = true, ['tree-04'] = true } @@ -1522,7 +1522,7 @@ local function pre_player_mined_item(event) return end if math.random(1, 12) == 1 then - if event.entity.name == 'rock-huge' or event.entity.name == 'rock-big' or event.entity.name == 'sand-rock-big' then + if event.entity.name == 'huge-rock' or event.entity.name == 'big-rock' or event.entity.name == 'big-sand-rock' then for x = 1, math.random(6, 10), 1 do table.insert(storage.biter_spawn_schedule, { game.tick + 30 * x, event.entity.position }) end @@ -1533,7 +1533,7 @@ local function pre_player_mined_item(event) surface.spill_item_stack(player.position, { name = 'raw-fish', count = math.random(1, 2) }, true) end - if event.entity.name == 'rock-huge' or event.entity.name == 'rock-big' or event.entity.name == 'sand-rock-big' then + if event.entity.name == 'huge-rock' or event.entity.name == 'big-rock' or event.entity.name == 'big-sand-rock' then local rock_position = { x = event.entity.position.x, y = event.entity.position.y } event.entity.destroy() @@ -1658,7 +1658,7 @@ local function on_player_mined_entity(event) if player.surface.name ~= 'cave_miner' then return end - if event.entity.name == 'rock-huge' or event.entity.name == 'rock-big' or event.entity.name == 'sand-rock-big' then + if event.entity.name == 'huge-rock' or event.entity.name == 'big-rock' or event.entity.name == 'big-sand-rock' then event.buffer.clear() end if event.entity.name == 'fish' then @@ -1688,7 +1688,7 @@ local function on_entity_damaged(event) if not event.entity.valid then return end - if event.entity.name == 'rock-huge' or event.entity.name == 'rock-big' or event.entity.name == 'sand-rock-big' then + if event.entity.name == 'huge-rock' or event.entity.name == 'big-rock' or event.entity.name == 'big-sand-rock' then local rock_is_alive = true if event.force.name == 'enemy' then event.entity.health = event.entity.health + (event.final_damage_amount - 0.2) diff --git a/maps/cave_miner.lua b/maps/cave_miner.lua index 4f618cd0..b77906cb 100644 --- a/maps/cave_miner.lua +++ b/maps/cave_miner.lua @@ -32,9 +32,9 @@ local darkness_messages = { } local rocks = { - ['rock-big'] = true, - ['rock-huge'] = true, - ['sand-rock-big'] = true + ['big-rock'] = true, + ['huge-rock'] = true, + ['big-sand-rock'] = true } local rock_inhabitants = { @@ -854,7 +854,7 @@ Darkness is a hazard in the mines, stay near your lamps.. end storage.rock_density = 62 ---- insert value up to 100 - storage.rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } + storage.rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } storage.worm_free_zone_radius = math.sqrt(spawn_dome_size) + 40 @@ -984,7 +984,7 @@ local function biter_attack_event() if player.character then if player.character.driving == false then local position = { x = player.position.x, y = player.position.y } - local p = find_first_entity_spiral_scan(position, { 'rock-huge', 'rock-big', 'sand-rock-big' }, 32) + local p = find_first_entity_spiral_scan(position, { 'huge-rock', 'big-rock', 'big-sand-rock' }, 32) if p then if p.x ^ 2 + p.y ^ 2 > spawn_dome_size then table.insert(valid_positions, p) @@ -1111,15 +1111,15 @@ local function on_tick(event) for _, item in pairs(market_items.spawn) do market.add_market_item(item) end - surface.regenerate_entity({ 'rock-big', 'rock-huge' }) + surface.regenerate_entity({ 'big-rock', 'huge-rock' }) end end local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['tree-02'] = true, ['tree-04'] = true } @@ -1141,7 +1141,7 @@ local function on_pre_player_mined_item(event) local player = game.players[event.player_index] if math_random(1, 12) == 1 then - if event.entity.name == 'rock-huge' or event.entity.name == 'rock-big' or event.entity.name == 'sand-rock-big' then + if event.entity.name == 'huge-rock' or event.entity.name == 'big-rock' or event.entity.name == 'big-sand-rock' then for x = 1, math_random(6, 10), 1 do table.insert(storage.biter_spawn_schedule, { game.tick + 30 * x, event.entity.position }) end @@ -1152,7 +1152,7 @@ local function on_pre_player_mined_item(event) surface.spill_item_stack(player.position, { name = 'raw-fish', count = math.random(1, 2) }, true) end - if event.entity.name == 'rock-huge' or event.entity.name == 'rock-big' or event.entity.name == 'sand-rock-big' then + if event.entity.name == 'huge-rock' or event.entity.name == 'big-rock' or event.entity.name == 'big-sand-rock' then local rock_position = { x = event.entity.position.x, y = event.entity.position.y } local distance_to_center = rock_position.x ^ 2 + rock_position.y ^ 2 diff --git a/maps/cave_miner_v2/rocks_yield_ore.lua b/maps/cave_miner_v2/rocks_yield_ore.lua index 61ca765a..b49a7415 100644 --- a/maps/cave_miner_v2/rocks_yield_ore.lua +++ b/maps/cave_miner_v2/rocks_yield_ore.lua @@ -7,9 +7,9 @@ local math_floor = math.floor local math_sqrt = math.sqrt local rock_yield = { - ['rock-big'] = 1, - ['rock-huge'] = 2, - ['sand-rock-big'] = 1 + ['big-rock'] = 1, + ['huge-rock'] = 2, + ['big-sand-rock'] = 1 } local particles = { diff --git a/maps/cave_miner_v2/terrain.lua b/maps/cave_miner_v2/terrain.lua index d25db163..13269fb3 100644 --- a/maps/cave_miner_v2/terrain.lua +++ b/maps/cave_miner_v2/terrain.lua @@ -9,7 +9,7 @@ local math_abs = math.abs local math_random = math.random local math_floor = math.floor -local rock_raffle = {'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge'} +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local size_of_rock_raffle = #rock_raffle local loot_blacklist = { @@ -20,26 +20,26 @@ function Public.roll_source_surface() local map_gen_settings = { ['water'] = 0, ['starting_area'] = 1, - ['cliff_settings'] = {cliff_elevation_interval = 0, cliff_elevation_0 = 0}, + ['cliff_settings'] = { cliff_elevation_interval = 0, cliff_elevation_0 = 0 }, ['default_enable_all_autoplace_controls'] = false, ['autoplace_settings'] = { - ['entity'] = {treat_missing_as_default = false}, - ['tile'] = {treat_missing_as_default = false}, - ['decorative'] = {treat_missing_as_default = false} + ['entity'] = { treat_missing_as_default = false }, + ['tile'] = { treat_missing_as_default = false }, + ['decorative'] = { treat_missing_as_default = false } }, autoplace_controls = { - ['coal'] = {frequency = 0, size = 0, richness = 0}, - ['stone'] = {frequency = 0, size = 0, richness = 0}, - ['copper-ore'] = {frequency = 0, size = 0, richness = 0}, - ['iron-ore'] = {frequency = 0, size = 0, richness = 0}, - ['uranium-ore'] = {frequency = 0, size = 0, richness = 0}, - ['crude-oil'] = {frequency = 0, size = 0, richness = 0}, - ['trees'] = {frequency = 0, size = 0, richness = 0}, - ['enemy-base'] = {frequency = 0, size = 0, richness = 0} + ['coal'] = { frequency = 0, size = 0, richness = 0 }, + ['stone'] = { frequency = 0, size = 0, richness = 0 }, + ['copper-ore'] = { frequency = 0, size = 0, richness = 0 }, + ['iron-ore'] = { frequency = 0, size = 0, richness = 0 }, + ['uranium-ore'] = { frequency = 0, size = 0, richness = 0 }, + ['crude-oil'] = { frequency = 0, size = 0, richness = 0 }, + ['trees'] = { frequency = 0, size = 0, richness = 0 }, + ['enemy-base'] = { frequency = 0, size = 0, richness = 0 } } } local surface = game.create_surface('cave_miner_source', map_gen_settings) - surface.request_to_generate_chunks({x = 0, y = 0}, 2) + surface.request_to_generate_chunks({ x = 0, y = 0 }, 2) surface.force_generate_chunk_requests() end @@ -51,7 +51,7 @@ function Public.out_of_map(event) for x = 0, 31, 1 do for y = 0, 31, 1 do i = i + 1 - tiles[i] = {name = 'out-of-map', position = {left_top_x + x, left_top_y + y}} + tiles[i] = { name = 'out-of-map', position = { left_top_x + x, left_top_y + y } } end end event.surface.set_tiles(tiles, false) @@ -60,23 +60,23 @@ end local function place_rock(surface, position) local a = (-49 + math_random(0, 98)) * 0.01 local b = (-49 + math_random(0, 98)) * 0.01 - surface.create_entity({name = rock_raffle[math_random(1, size_of_rock_raffle)], position = {position.x + a, position.y + b}}) + surface.create_entity({ name = rock_raffle[math_random(1, size_of_rock_raffle)], position = { position.x + a, position.y + b } }) end local biomes = {} function biomes.oasis(surface, seed, position, square_distance, noise) if noise > 0.83 then - surface.set_tiles({{name = 'deepwater', position = position}}, true) + surface.set_tiles({ { name = 'deepwater', position = position } }, true) if math_random(1, 16) == 1 then - surface.create_entity({name = 'fish', position = position}) + surface.create_entity({ name = 'fish', position = position }) end return end local noise_decoratives = GetNoise('decoratives', position, seed + 50000) - surface.set_tiles({{name = 'grass-1', position = position}}, true) + surface.set_tiles({ { name = 'grass-1', position = position } }, true) if math_random(1, 16) == 1 and math_abs(noise_decoratives) > 0.17 then - surface.create_entity({name = 'tree-04', position = position}) + surface.create_entity({ name = 'tree-04', position = position }) end if math_random(1, 128) == 1 then Functions.place_crude_oil(surface, position, 1) @@ -88,16 +88,16 @@ function biomes.oasis(surface, seed, position, square_distance, noise) end function biomes.void(surface, seed, position) - surface.set_tiles({{name = 'out-of-map', position = position}}, false, false, false, false) + surface.set_tiles({ { name = 'out-of-map', position = position } }, false, false, false, false) end function biomes.pond_cave(surface, seed, position, square_distance, noise) local noise_2 = GetNoise('cm_ponds', position, seed) if math_abs(noise_2) > 0.60 then - surface.set_tiles({{name = 'water', position = position}}, true, false, false, false) + surface.set_tiles({ { name = 'water', position = position } }, true, false, false, false) if math_random(1, 16) == 1 then - surface.create_entity({name = 'fish', position = position}) + surface.create_entity({ name = 'fish', position = position }) end return end @@ -123,9 +123,9 @@ function biomes.spawn(surface, seed, position, square_distance) local noise = GetNoise('decoratives', position, seed) if math_abs(noise) > 0.60 and square_distance < 900 then - surface.set_tiles({{name = 'water', position = position}}, true, false, false, false) + surface.set_tiles({ { name = 'water', position = position } }, true, false, false, false) if math_random(1, 16) == 1 then - surface.create_entity({name = 'fish', position = position}) + surface.create_entity({ name = 'fish', position = position }) end return end @@ -142,16 +142,16 @@ end function biomes.ocean(surface, seed, position, square_distance, noise) if noise > 0.66 then - surface.set_tiles({{name = 'deepwater', position = position}}, true, false, false, false) + surface.set_tiles({ { name = 'deepwater', position = position } }, true, false, false, false) if math_random(1, 32) == 1 then - surface.create_entity({name = 'fish', position = position}) + surface.create_entity({ name = 'fish', position = position }) end return end if noise > 0.63 then - surface.set_tiles({{name = 'water', position = position}}, true, false, false, false) + surface.set_tiles({ { name = 'water', position = position } }, true, false, false, false) if math_random(1, 32) == 1 then - surface.create_entity({name = 'fish', position = position}) + surface.create_entity({ name = 'fish', position = position }) end return end @@ -169,7 +169,7 @@ function biomes.worm_desert(surface, seed, position, square_distance, noise) end local i = math_floor((GetNoise('decoratives', position, seed) * 8) % 3) + 1 - surface.set_tiles({{name = 'sand-' .. i, position = position}}, true, false, false, false) + surface.set_tiles({ { name = 'sand-' .. i, position = position } }, true, false, false, false) if math_random(1, 64) == 1 then local e = Functions.place_worm(surface, position, 1) @@ -180,8 +180,8 @@ function biomes.worm_desert(surface, seed, position, square_distance, noise) if math_random(1, 32) == 1 then local n = GetNoise('decoratives', position, seed + 10000) if n > 0.2 then - local trees = {'dead-grey-trunk', 'dead-grey-trunk', 'dry-tree'} - surface.create_entity({name = trees[math_random(1, 3)], position = position}) + local trees = { 'dead-grey-trunk', 'dead-grey-trunk', 'dry-tree' } + surface.create_entity({ name = trees[math_random(1, 3)], position = position }) return end end @@ -200,9 +200,9 @@ function biomes.cave(surface, seed, position, square_distance, noise) if math_abs(noise_cave_rivers1) < 0.025 then local noise_cave_rivers2 = GetNoise('cave_rivers_3', position, seed + 200000) if noise_cave_rivers2 > 0 then - surface.set_tiles({{name = 'water-shallow', position = position}}, true, false, false, false) + surface.set_tiles({ { name = 'water-shallow', position = position } }, true, false, false, false) if math_random(1, 16) == 1 then - surface.create_entity({name = 'fish', position = position}) + surface.create_entity({ name = 'fish', position = position }) end return end @@ -215,7 +215,7 @@ function biomes.cave(surface, seed, position, square_distance, noise) Market.spawn_random_cave_market(surface, position) end end - surface.set_tiles({{name = 'dirt-' .. math_floor(no_rocks_2 * 16) % 4 + 3, position = position}}, true, false, false, false) + surface.set_tiles({ { name = 'dirt-' .. math_floor(no_rocks_2 * 16) % 4 + 3, position = position } }, true, false, false, false) return end @@ -229,7 +229,7 @@ function biomes.cave(surface, seed, position, square_distance, noise) if math_random(1, 3) > 1 then local a = (-49 + math_random(0, 98)) * 0.01 local b = (-49 + math_random(0, 98)) * 0.01 - surface.create_entity({name = rock_raffle[math_random(1, size_of_rock_raffle)], position = {position.x + a, position.y + b}}) + surface.create_entity({ name = rock_raffle[math_random(1, size_of_rock_raffle)], position = { position.x + a, position.y + b } }) end if math_random(1, 2048) == 1 then Functions.loot_crate(surface, position, 'wooden-chest') @@ -250,7 +250,7 @@ function biomes.cave(surface, seed, position, square_distance, noise) return end if math_random(1, 64) == 1 then - local e = surface.create_entity({name = 'biter-spawner', position = position, force = 'enemy'}) + local e = surface.create_entity({ name = 'biter-spawner', position = position, force = 'enemy' }) e.active = false return end @@ -310,15 +310,15 @@ function Public.generate_cave(event) for x = 0, 31, 1 do for y = 0, 31, 1 do i = i + 1 - local position = {x = left_top_x + x, y = left_top_y + y} - tiles[i] = {name = Functions.get_base_ground_tile(position, seed), position = position} + local position = { x = left_top_x + x, y = left_top_y + y } + tiles[i] = { name = Functions.get_base_ground_tile(position, seed), position = position } end end surface.set_tiles(tiles, true) for x = 0.5, 31.5, 1 do for y = 0.5, 31.5, 1 do - local position = {x = left_top_x + x, y = left_top_y + y} + local position = { x = left_top_x + x, y = left_top_y + y } local biome, square_distance, noise = get_biome(surface, seed, position) biome(surface, seed, position, square_distance, noise) end diff --git a/maps/choppy.lua b/maps/choppy.lua index 7924ad76..db9cc874 100644 --- a/maps/choppy.lua +++ b/maps/choppy.lua @@ -19,9 +19,9 @@ local map_functions = require 'utils.tools.map_functions' local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['mineable-wreckage'] = true } @@ -41,7 +41,7 @@ local tile_replacements = { ['red-desert-3'] = 'grass-4' } -local rocks = { 'rock-big', 'rock-big', 'rock-huge' } +local rocks = { 'big-rock', 'big-rock', 'huge-rock' } local decos = { 'green-hairy-grass', 'green-hairy-grass', @@ -270,8 +270,8 @@ local function on_player_joined_game(event) ['tree-02-red'] = { 'copper-ore' }, ['tree-04'] = { 'coal' }, ['tree-08-brown'] = { 'stone' }, - ['rock-big'] = { 'uranium-ore' }, - ['rock-huge'] = { 'uranium-ore' } + ['big-rock'] = { 'uranium-ore' }, + ['huge-rock'] = { 'uranium-ore' } } if prototypes.item['angels-ore1'] then @@ -284,8 +284,8 @@ local function on_player_joined_game(event) end if prototypes.item['thorium-ore'] then - storage.entity_yield['rock-big'] = { 'uranium-ore', 'thorium-ore' } - storage.entity_yield['rock-huge'] = { 'uranium-ore', 'thorium-ore' } + storage.entity_yield['big-rock'] = { 'uranium-ore', 'thorium-ore' } + storage.entity_yield['huge-rock'] = { 'uranium-ore', 'thorium-ore' } end storage.map_init_done = true diff --git a/maps/choppy_dx.lua b/maps/choppy_dx.lua index 95b9635b..24525579 100644 --- a/maps/choppy_dx.lua +++ b/maps/choppy_dx.lua @@ -24,9 +24,9 @@ local math_random = math.random local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['mineable-wreckage'] = true } @@ -46,7 +46,7 @@ local tile_replacements = { ['red-desert-3'] = 'grass-4' } -local rocks = { 'rock-big', 'rock-big', 'rock-huge' } +local rocks = { 'big-rock', 'big-rock', 'huge-rock' } local decos = { 'green-hairy-grass', 'green-hairy-grass', @@ -387,8 +387,8 @@ local function on_player_joined_game(event) ['tree-02-red'] = { 'copper-ore' }, ['tree-04'] = { 'coal' }, ['tree-08-brown'] = { 'stone' }, - ['rock-big'] = { 'uranium-ore' }, - ['rock-huge'] = { 'uranium-ore' }, + ['big-rock'] = { 'uranium-ore' }, + ['huge-rock'] = { 'uranium-ore' }, ['tree-09-brown'] = { 'stone', 'coal' }, ['tree-08-red'] = { 'copper-ore', 'iron-ore' }, ['tree-03'] = { 'coal', 'iron-ore' }, @@ -405,8 +405,8 @@ local function on_player_joined_game(event) end if prototypes.item['thorium-ore'] then - storage.entity_yield['rock-big'] = { 'uranium-ore', 'thorium-ore' } - storage.entity_yield['rock-huge'] = { 'uranium-ore', 'thorium-ore' } + storage.entity_yield['big-rock'] = { 'uranium-ore', 'thorium-ore' } + storage.entity_yield['huge-rock'] = { 'uranium-ore', 'thorium-ore' } end local surface = player.surface diff --git a/maps/crab_defender/b.lua b/maps/crab_defender/b.lua index ed16bb5c..c90dc26e 100644 --- a/maps/crab_defender/b.lua +++ b/maps/crab_defender/b.lua @@ -45,15 +45,15 @@ local tile_map = { } local rock_raffle = { - 'sand-rock-big', - 'sand-rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-huge' + 'big-sand-rock', + 'big-sand-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'huge-rock' } local function decompress() @@ -98,7 +98,7 @@ local function get_pos(x, y) end end -local ores = {'coal', 'iron-ore', 'copper-ore', 'stone'} +local ores = { 'coal', 'iron-ore', 'copper-ore', 'stone' } local function plankton_territory(position, seed, ent) local noise = simplex_noise(position.x * 0.009, position.y * 0.009, seed) @@ -113,18 +113,18 @@ local function plankton_territory(position, seed, ent) end if noise_2 > 0.75 then local i = floor(noise * 6) % 4 + 1 - ent[#ent + 1] = {name = ores[i], position = position, amount = 1 + 2500 * abs(noise_2 * 3)} + ent[#ent + 1] = { name = ores[i], position = position, amount = 1 + 2500 * abs(noise_2 * 3) } return ('grass-' .. i) end if noise_2 < -0.76 then local i = floor(noise * 6) % 4 + 1 if noise_2 < -0.86 then - ent[#ent + 1] = {name = 'uranium-ore', position = position, amount = 1 + 1000 * abs(noise_2 * 2)} + ent[#ent + 1] = { name = 'uranium-ore', position = position, amount = 1 + 1000 * abs(noise_2 * 2) } return ('grass-' .. i) end if random(1, 3) ~= 1 then - ent[#ent + 1] = {name = rock_raffle[random(1, #rock_raffle)], position = position} + ent[#ent + 1] = { name = rock_raffle[random(1, #rock_raffle)], position = position } end return ('grass-' .. i) end @@ -132,13 +132,13 @@ local function plankton_territory(position, seed, ent) if noise < 0.12 and noise > -0.12 then local i = floor(noise * 32) % 4 + 1 if random(1, 5) == 1 then - ent[#ent + 1] = {name = rock_raffle[random(1, #rock_raffle)], position = position} + ent[#ent + 1] = { name = rock_raffle[random(1, #rock_raffle)], position = position } end return ('grass-' .. i) end if random(1, 128) == 1 then - ent[#ent + 1] = {name = 'fish', position = position} + ent[#ent + 1] = { name = 'fish', position = position } end return 'water' @@ -174,20 +174,20 @@ function Public.make_chunk(event) for x = x1, x2 do for y = y1, y2 do - local pos = {x = x, y = y} + local pos = { x = x, y = y } local new = get_pos(x, y) local ore = get_random_ore(pos) if new and type(new) == 'string' then if new == 'lab-dark-2' then - ent[#ent + 1] = {name = ore, position = pos, amount = 2500} + ent[#ent + 1] = { name = ore, position = pos, amount = 2500 } else - tiles[#tiles + 1] = {name = new, position = pos} + tiles[#tiles + 1] = { name = new, position = pos } end else local tile_to_set = plankton_territory(pos, seed, ent) if tile_to_set then - noise[#noise + 1] = {name = tile_to_set, position = pos} + noise[#noise + 1] = { name = tile_to_set, position = pos } end end end @@ -197,9 +197,9 @@ function Public.make_chunk(event) surface.set_tiles(noise, true) for i = 1, #ent do if ent[i].amount then - surface.create_entity({name = ent[i].name, position = ent[i].position, amount = ent[i].amount}) + surface.create_entity({ name = ent[i].name, position = ent[i].position, amount = ent[i].amount }) else - surface.create_entity({name = ent[i].name, position = ent[i].position}) + surface.create_entity({ name = ent[i].name, position = ent[i].position }) end end end diff --git a/maps/crab_defender/crumbly_walls.lua b/maps/crab_defender/crumbly_walls.lua index 98c0bf49..918f5953 100644 --- a/maps/crab_defender/crumbly_walls.lua +++ b/maps/crab_defender/crumbly_walls.lua @@ -2,7 +2,7 @@ local Event = require 'utils.event' local FDT = require 'maps.crab_defender.table' local math_random = math.random -local rock_raffle = {'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge'} +local rock_raffle = { 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local function on_entity_died(event) local crumbly_walls_unlocked = FDT.get('crumbly_walls_unlocked') @@ -19,7 +19,7 @@ local function on_entity_died(event) if math_random(1, 4) == 1 then return end - entity.surface.create_entity({name = rock_raffle[math_random(1, #rock_raffle)], position = entity.position, force = 'player'}) + entity.surface.create_entity({ name = rock_raffle[math_random(1, #rock_raffle)], position = entity.position, force = 'player' }) end Event.add(defines.events.on_entity_died, on_entity_died) diff --git a/maps/deep_jungle/terrain.lua b/maps/deep_jungle/terrain.lua index 0dd0ba29..e3b1b960 100644 --- a/maps/deep_jungle/terrain.lua +++ b/maps/deep_jungle/terrain.lua @@ -14,53 +14,53 @@ end local function secret_shop(pos, surface) local secret_market_items = { - { price = { { 'coin', random(300, 600) } }, offer = { type = 'give-item', item = 'combat-shotgun' } }, - { price = { { 'coin', random(200, 400) } }, offer = { type = 'give-item', item = 'rocket-launcher' } }, - { price = { { 'coin', random(5, 10) } }, offer = { type = 'give-item', item = 'piercing-rounds-magazine' } }, + { price = { { 'coin', random(300, 600) } }, offer = { type = 'give-item', item = 'combat-shotgun' } }, + { price = { { 'coin', random(200, 400) } }, offer = { type = 'give-item', item = 'rocket-launcher' } }, + { price = { { 'coin', random(5, 10) } }, offer = { type = 'give-item', item = 'piercing-rounds-magazine' } }, --{price = {{"coin", random(150,250)}}, offer = {type = 'give-item', item = 'uranium-rounds-magazine'}}, - { price = { { 'coin', random(15, 30) } }, offer = { type = 'give-item', item = 'piercing-shotgun-shell' } }, - { price = { { 'coin', random(10, 20) } }, offer = { type = 'give-item', item = 'rocket' } }, - { price = { { 'coin', random(20, 30) } }, offer = { type = 'give-item', item = 'explosive-rocket' } }, - { price = { { 'coin', random(30, 60) } }, offer = { type = 'give-item', item = 'cluster-grenade' } }, - { price = { { 'coin', random(8, 16) } }, offer = { type = 'give-item', item = 'land-mine' } }, - { price = { { 'coin', random(200, 300) } }, offer = { type = 'give-item', item = 'heavy-armor' } }, - { price = { { 'coin', random(400, 800) } }, offer = { type = 'give-item', item = 'modular-armor' } }, - { price = { { 'coin', random(1000, 2000) } }, offer = { type = 'give-item', item = 'power-armor' } }, - { price = { { 'coin', random(2500, 5000) } }, offer = { type = 'give-item', item = 'fusion-reactor-equipment' } }, - { price = { { 'coin', random(200, 400) } }, offer = { type = 'give-item', item = 'battery-equipment' } }, - { price = { { 'coin', random(150, 250) } }, offer = { type = 'give-item', item = 'belt-immunity-equipment' } }, - { price = { { 'coin', random(100, 200) } }, offer = { type = 'give-item', item = 'night-vision-equipment' } }, - { price = { { 'coin', random(400, 800) } }, offer = { type = 'give-item', item = 'exoskeleton-equipment' } }, - { price = { { 'coin', random(200, 300) } }, offer = { type = 'give-item', item = 'personal-roboport-equipment' } }, - { price = { { 'coin', random(25, 50) } }, offer = { type = 'give-item', item = 'construction-robot' } }, + { price = { { 'coin', random(15, 30) } }, offer = { type = 'give-item', item = 'piercing-shotgun-shell' } }, + { price = { { 'coin', random(10, 20) } }, offer = { type = 'give-item', item = 'rocket' } }, + { price = { { 'coin', random(20, 30) } }, offer = { type = 'give-item', item = 'explosive-rocket' } }, + { price = { { 'coin', random(30, 60) } }, offer = { type = 'give-item', item = 'cluster-grenade' } }, + { price = { { 'coin', random(8, 16) } }, offer = { type = 'give-item', item = 'land-mine' } }, + { price = { { 'coin', random(200, 300) } }, offer = { type = 'give-item', item = 'heavy-armor' } }, + { price = { { 'coin', random(400, 800) } }, offer = { type = 'give-item', item = 'modular-armor' } }, + { price = { { 'coin', random(1000, 2000) } }, offer = { type = 'give-item', item = 'power-armor' } }, + { price = { { 'coin', random(2500, 5000) } }, offer = { type = 'give-item', item = 'fusion-reactor-equipment' } }, + { price = { { 'coin', random(200, 400) } }, offer = { type = 'give-item', item = 'battery-equipment' } }, + { price = { { 'coin', random(150, 250) } }, offer = { type = 'give-item', item = 'belt-immunity-equipment' } }, + { price = { { 'coin', random(100, 200) } }, offer = { type = 'give-item', item = 'night-vision-equipment' } }, + { price = { { 'coin', random(400, 800) } }, offer = { type = 'give-item', item = 'exoskeleton-equipment' } }, + { price = { { 'coin', random(200, 300) } }, offer = { type = 'give-item', item = 'personal-roboport-equipment' } }, + { price = { { 'coin', random(25, 50) } }, offer = { type = 'give-item', item = 'construction-robot' } }, -- {price = {{"coin", random(10000,20000)}}, offer = {type = 'give-item', item = 'energy-shield-equipment'}}, -- {price = {{"coin", random(5000,15000)}}, offer = {type = 'give-item', item = 'personal-laser-defense-equipment'}}, - { price = { { 'coin', random(100, 300) } }, offer = { type = 'give-item', item = 'loader' } }, - { price = { { 'coin', random(200, 400) } }, offer = { type = 'give-item', item = 'fast-loader' } }, - { price = { { 'coin', random(300, 500) } }, offer = { type = 'give-item', item = 'express-loader' } }, - { price = { { 'coin', random(150, 300) } }, offer = { type = 'give-item', item = 'locomotive' } }, - { price = { { 'coin', random(100, 200) } }, offer = { type = 'give-item', item = 'cargo-wagon' } }, - { price = { { 'coin', random(5, 15) } }, offer = { type = 'give-item', item = 'grenade' } }, - { price = { { 'coin', random(80, 160) } }, offer = { type = 'give-item', item = 'cliff-explosives' } }, - { price = { { 'coin', random(10, 20) } }, offer = { type = 'give-item', item = 'explosives', count = 50 } }, - { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'rail', count = 4 } }, - { price = { { 'coin', random(20, 30) } }, offer = { type = 'give-item', item = 'train-stop' } }, - { price = { { 'coin', random(4, 12) } }, offer = { type = 'give-item', item = 'small-lamp' } }, - { price = { { 'coin', random(1, 4) } }, offer = { type = 'give-item', item = 'firearm-magazine' } }, - { price = { { 'coin', random(60, 150) } }, offer = { type = 'give-item', item = 'car', count = 1 } }, - { price = { { 'coin', random(75, 150) } }, offer = { type = 'give-item', item = 'gun-turret', count = 1 } }, - { price = { { 'coin', random(500, 750) } }, offer = { type = 'give-item', item = 'laser-turret', count = 1 } }, - { price = { { 'coin', random(1000, 2000) } }, offer = { type = 'give-item', item = 'artillery-turret', count = 1 } }, - { price = { { 'coin', random(100, 200) } }, offer = { type = 'give-item', item = 'artillery-shell', count = 1 } }, - { price = { { 'coin', random(50, 150) } }, offer = { type = 'give-item', item = 'artillery-targeting-remote', count = 1 } }, - { price = { { 'coin', random(5, 15) } }, offer = { type = 'give-item', item = 'shotgun-shell', count = 1 } }, + { price = { { 'coin', random(100, 300) } }, offer = { type = 'give-item', item = 'loader' } }, + { price = { { 'coin', random(200, 400) } }, offer = { type = 'give-item', item = 'fast-loader' } }, + { price = { { 'coin', random(300, 500) } }, offer = { type = 'give-item', item = 'express-loader' } }, + { price = { { 'coin', random(150, 300) } }, offer = { type = 'give-item', item = 'locomotive' } }, + { price = { { 'coin', random(100, 200) } }, offer = { type = 'give-item', item = 'cargo-wagon' } }, + { price = { { 'coin', random(5, 15) } }, offer = { type = 'give-item', item = 'grenade' } }, + { price = { { 'coin', random(80, 160) } }, offer = { type = 'give-item', item = 'cliff-explosives' } }, + { price = { { 'coin', random(10, 20) } }, offer = { type = 'give-item', item = 'explosives', count = 50 } }, + { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'rail', count = 4 } }, + { price = { { 'coin', random(20, 30) } }, offer = { type = 'give-item', item = 'train-stop' } }, + { price = { { 'coin', random(4, 12) } }, offer = { type = 'give-item', item = 'small-lamp' } }, + { price = { { 'coin', random(1, 4) } }, offer = { type = 'give-item', item = 'firearm-magazine' } }, + { price = { { 'coin', random(60, 150) } }, offer = { type = 'give-item', item = 'car', count = 1 } }, + { price = { { 'coin', random(75, 150) } }, offer = { type = 'give-item', item = 'gun-turret', count = 1 } }, + { price = { { 'coin', random(500, 750) } }, offer = { type = 'give-item', item = 'laser-turret', count = 1 } }, + { price = { { 'coin', random(1000, 2000) } }, offer = { type = 'give-item', item = 'artillery-turret', count = 1 } }, + { price = { { 'coin', random(100, 200) } }, offer = { type = 'give-item', item = 'artillery-shell', count = 1 } }, + { price = { { 'coin', random(50, 150) } }, offer = { type = 'give-item', item = 'artillery-targeting-remote', count = 1 } }, + { price = { { 'coin', random(5, 15) } }, offer = { type = 'give-item', item = 'shotgun-shell', count = 1 } }, { price = { { 'coin', random(8000, 16000) } }, offer = { type = 'give-item', item = 'power-armor-mk2', count = 1 } }, - { price = { { 'coin', random(80, 160) } }, offer = { type = 'give-item', item = 'solar-panel-equipment', count = 1 } }, - { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'wood', count = 50 } }, - { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'iron-ore', count = 50 } }, - { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'copper-ore', count = 50 } }, - { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'stone', count = 50 } }, - { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'coal', count = 50 } } + { price = { { 'coin', random(80, 160) } }, offer = { type = 'give-item', item = 'solar-panel-equipment', count = 1 } }, + { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'wood', count = 50 } }, + { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'iron-ore', count = 50 } }, + { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'copper-ore', count = 50 } }, + { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'stone', count = 50 } }, + { price = { { 'coin', random(4, 8) } }, offer = { type = 'give-item', item = 'coal', count = 50 } } --{price = {{"coin", random(4,8)}}, offer = {type = 'give-item', item = 'uranium-ore', count = 50}} } secret_market_items = shuffle(secret_market_items) @@ -189,7 +189,7 @@ local function get_noise(name, pos) end end -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local tree_raffle = { 'tree-04', 'tree-07', 'tree-09', 'tree-06', 'tree-04', 'tree-07', 'tree-09', 'tree-04' } local function process_tile(pos) diff --git a/maps/dungeons/biome_desert.lua b/maps/dungeons/biome_desert.lua index d9787222..e60a4ed9 100644 --- a/maps/dungeons/biome_desert.lua +++ b/maps/dungeons/biome_desert.lua @@ -6,9 +6,9 @@ local table_shuffle_table = table.shuffle_table local math_random = math.random local math_abs = math.abs -local decoratives = {'green-pita', 'green-pita-mini'} -local ores = {'copper-ore', 'copper-ore', 'coal'} -local trees = {'dead-dry-hairy-tree', 'dead-dry-hairy-tree', 'dead-dry-hairy-tree', 'dead-dry-hairy-tree', 'dead-tree-desert'} +local decoratives = { 'green-pita', 'green-pita-mini' } +local ores = { 'copper-ore', 'copper-ore', 'coal' } +local trees = { 'dead-dry-hairy-tree', 'dead-dry-hairy-tree', 'dead-dry-hairy-tree', 'dead-dry-hairy-tree', 'dead-tree-desert' } local size_of_trees = #trees local function draw_deco(surface, position, decorative_name, seed) @@ -20,7 +20,7 @@ local function draw_deco(surface, position, decorative_name, seed) end local noise = Get_noise('decoratives', position, seed) if math_abs(noise) > 0.37 then - surface.create_decoratives {check_collision = false, decoratives = {{name = decorative_name, position = position, amount = math.floor(math.abs(noise * 3)) + 1}}} + surface.create_decoratives { check_collision = false, decoratives = { { name = decorative_name, position = position, amount = math.floor(math.abs(noise * 3)) + 1 } } } end end @@ -54,7 +54,7 @@ end local function desert(surface, room) local dungeontable = DungeonsTable.get_dungeontable() for _, tile in pairs(room.path_tiles) do - surface.set_tiles({{name = 'sand-2', position = tile.position}}, true) + surface.set_tiles({ { name = 'sand-2', position = tile.position } }, true) end if not room.room_tiles[1] then @@ -64,39 +64,39 @@ local function desert(surface, room) table_shuffle_table(room.room_border_tiles) for key, tile in pairs(room.room_border_tiles) do - surface.set_tiles({{name = 'sand-1', position = tile.position}}, true) + surface.set_tiles({ { name = 'sand-1', position = tile.position } }, true) end local seed = game.surfaces[surface.index].map_gen_settings.seed + math_random(1, 1000000) table_shuffle_table(room.room_tiles) for key, tile in pairs(room.room_tiles) do - surface.set_tiles({{name = 'sand-3', position = tile.position}}, true) + surface.set_tiles({ { name = 'sand-3', position = tile.position } }, true) if math_random(1, 16) == 1 and Get_noise('n3', tile.position, seed) > 0.1 then - surface.create_entity({name = ores[math_random(1, #ores)], position = tile.position, amount = Functions.get_common_resource_amount(surface.index)}) + surface.create_entity({ name = ores[math_random(1, #ores)], position = tile.position, amount = Functions.get_common_resource_amount(surface.index) }) else if math_random(1, 320) == 1 then - surface.create_entity({name = 'crude-oil', position = tile.position, amount = Functions.get_crude_oil_amount(surface.index)}) + surface.create_entity({ name = 'crude-oil', position = tile.position, amount = Functions.get_crude_oil_amount(surface.index) }) end if math_random(1, 64) == 1 then - surface.create_entity({name = trees[math_random(1, size_of_trees)], position = tile.position}) + surface.create_entity({ name = trees[math_random(1, size_of_trees)], position = tile.position }) end end if key % 128 == 1 and math_random(1, 3) == 1 then Functions.set_spawner_tier( - surface.create_entity({name = Functions.roll_spawner_name(), position = tile.position, force = dungeontable.enemy_forces[surface.index]}), + surface.create_entity({ name = Functions.roll_spawner_name(), position = tile.position, force = dungeontable.enemy_forces[surface.index] }), surface.index ) end if math_random(1, 160) == 1 then - surface.create_entity({name = Functions.roll_worm_name(surface.index), position = tile.position, force = dungeontable.enemy_forces[surface.index]}) + surface.create_entity({ name = Functions.roll_worm_name(surface.index), position = tile.position, force = dungeontable.enemy_forces[surface.index] }) end local noise = Get_noise('decoratives', tile.position, seed) if math_random(1, 3) > 1 and math_abs(noise) > 0.52 then Functions.create_scrap(surface, tile.position) end if math_random(1, 128) == 1 then - surface.create_entity({name = 'rock-huge', position = tile.position}) + surface.create_entity({ name = 'huge-rock', position = tile.position }) end end @@ -106,10 +106,10 @@ local function desert(surface, room) if math_random(1, 64) == 1 then for x = -1, 1, 1 do for y = -1, 1, 1 do - local p = {room.center.x + x, room.center.y + y} - surface.set_tiles({{name = 'water', position = p}}) + local p = { room.center.x + x, room.center.y + y } + surface.set_tiles({ { name = 'water', position = p } }) if math_random(1, 4) == 1 then - surface.create_entity({name = 'fish', position = p}) + surface.create_entity({ name = 'fish', position = p }) end end end diff --git a/maps/dungeons/biome_dirtlands.lua b/maps/dungeons/biome_dirtlands.lua index f4b905ff..970a06f3 100644 --- a/maps/dungeons/biome_dirtlands.lua +++ b/maps/dungeons/biome_dirtlands.lua @@ -6,9 +6,9 @@ local table_shuffle_table = table.shuffle_table local math_random = math.random local math_abs = math.abs -local decoratives = {'brown-asterisk', 'brown-carpet-grass', 'brown-fluff', 'brown-fluff-dry', 'brown-hairy-grass', 'brown-asterisk', 'brown-fluff', 'brown-fluff-dry'} -local ores = {'iron-ore', 'iron-ore', 'iron-ore', 'iron-ore', 'copper-ore', 'copper-ore', 'copper-ore', 'coal', 'coal', 'stone', 'stone'} -local trees = {'dead-dry-hairy-tree', 'dead-grey-trunk', 'dead-tree-desert', 'dry-hairy-tree', 'dry-tree'} +local decoratives = { 'brown-asterisk', 'brown-carpet-grass', 'brown-fluff', 'brown-fluff-dry', 'brown-hairy-grass', 'brown-asterisk', 'brown-fluff', 'brown-fluff-dry' } +local ores = { 'iron-ore', 'iron-ore', 'iron-ore', 'iron-ore', 'copper-ore', 'copper-ore', 'copper-ore', 'coal', 'coal', 'stone', 'stone' } +local trees = { 'dead-dry-hairy-tree', 'dead-grey-trunk', 'dead-tree-desert', 'dry-hairy-tree', 'dry-tree' } local size_of_trees = #trees local function draw_deco(surface, position, decorative_name, seed) @@ -20,7 +20,7 @@ local function draw_deco(surface, position, decorative_name, seed) end local noise = Get_noise('decoratives', position, seed) if math_abs(noise) > 0.38 then - surface.create_decoratives {check_collision = false, decoratives = {{name = decorative_name, position = position, amount = math.floor(math.abs(noise * 3)) + 1}}} + surface.create_decoratives { check_collision = false, decoratives = { { name = decorative_name, position = position, amount = math.floor(math.abs(noise * 3)) + 1 } } } end end @@ -57,7 +57,7 @@ local function dirtlands(surface, room) local max_worm = max_spawn + 1 local path_tile = 'dirt-' .. math_random(1, 3) for _, tile in pairs(room.path_tiles) do - surface.set_tiles({{name = path_tile, position = tile.position}}, true) + surface.set_tiles({ { name = path_tile, position = tile.position } }, true) end if not room.room_border_tiles[1] then @@ -67,33 +67,33 @@ local function dirtlands(surface, room) table_shuffle_table(room.room_tiles) for key, tile in pairs(room.room_tiles) do - surface.set_tiles({{name = 'dirt-7', position = tile.position}}, true) + surface.set_tiles({ { name = 'dirt-7', position = tile.position } }, true) if math_random(1, 64) == 1 then - surface.create_entity({name = ores[math_random(1, #ores)], position = tile.position, amount = Functions.get_common_resource_amount(surface.index)}) + surface.create_entity({ name = ores[math_random(1, #ores)], position = tile.position, amount = Functions.get_common_resource_amount(surface.index) }) else if math_random(1, 2048) == 1 then - surface.create_entity({name = 'crude-oil', position = tile.position, amount = Functions.get_crude_oil_amount(surface.index)}) + surface.create_entity({ name = 'crude-oil', position = tile.position, amount = Functions.get_crude_oil_amount(surface.index) }) end if math_random(1, 128) == 1 then - surface.create_entity({name = trees[math_random(1, size_of_trees)], position = tile.position}) + surface.create_entity({ name = trees[math_random(1, size_of_trees)], position = tile.position }) end end if key % 128 == 1 and math_random(1, 2) == 1 and max_spawn > 0 then Functions.set_spawner_tier( - surface.create_entity({name = Functions.roll_spawner_name(), position = tile.position, force = dungeontable.enemy_forces[surface.index]}), + surface.create_entity({ name = Functions.roll_spawner_name(), position = tile.position, force = dungeontable.enemy_forces[surface.index] }), surface.index ) - max_spawn = max_spawn - 1 + max_spawn = max_spawn - 1 end if math_random(1, 320) == 1 and max_worm > 0 then - surface.create_entity({name = Functions.roll_worm_name(surface.index), position = tile.position, force = dungeontable.enemy_forces[surface.index]}) - max_worm = max_worm - 1 + surface.create_entity({ name = Functions.roll_worm_name(surface.index), position = tile.position, force = dungeontable.enemy_forces[surface.index] }) + max_worm = max_worm - 1 end if math_random(1, 512) == 1 then Functions.create_scrap(surface, tile.position) end if math_random(1, 256) == 1 then - surface.create_entity({name = 'rock-huge', position = tile.position}) + surface.create_entity({ name = 'huge-rock', position = tile.position }) end end @@ -103,10 +103,10 @@ local function dirtlands(surface, room) if math_random(1, 16) == 1 then for x = -1, 1, 1 do for y = -1, 1, 1 do - local p = {room.center.x + x, room.center.y + y} - surface.set_tiles({{name = 'water', position = p}}) + local p = { room.center.x + x, room.center.y + y } + surface.set_tiles({ { name = 'water', position = p } }) if math_random(1, 4) == 1 then - surface.create_entity({name = 'fish', position = p}) + surface.create_entity({ name = 'fish', position = p }) end end end @@ -115,7 +115,7 @@ local function dirtlands(surface, room) table_shuffle_table(room.room_border_tiles) for key, tile in pairs(room.room_border_tiles) do - surface.set_tiles({{name = 'dirt-4', position = tile.position}}, true) + surface.set_tiles({ { name = 'dirt-4', position = tile.position } }, true) end for key, tile in pairs(room.room_border_tiles) do diff --git a/maps/dungeons/biome_grasslands.lua b/maps/dungeons/biome_grasslands.lua index a073e46d..568edf28 100644 --- a/maps/dungeons/biome_grasslands.lua +++ b/maps/dungeons/biome_grasslands.lua @@ -7,21 +7,21 @@ local math_random = math.random local math_abs = math.abs local math_floor = math.floor -local decoratives = {'green-asterisk', 'green-bush-mini', 'green-carpet-grass', 'green-hairy-grass', 'green-small-grass'} -local ores = {'iron-ore', 'iron-ore', 'coal'} -local trees = {'tree-01', 'tree-02', 'tree-04', 'tree-05', 'tree-06', 'tree-07', 'tree-08'} +local decoratives = { 'green-asterisk', 'green-bush-mini', 'green-carpet-grass', 'green-hairy-grass', 'green-small-grass' } +local ores = { 'iron-ore', 'iron-ore', 'coal' } +local trees = { 'tree-01', 'tree-02', 'tree-04', 'tree-05', 'tree-06', 'tree-07', 'tree-08' } local size_of_trees = #trees local function draw_deco(surface, position, decorative_name, seed) if surface.get_tile(position).name == 'water' then return end - if surface.count_entities_filtered({type = 'resource', position = position}) > 0 then + if surface.count_entities_filtered({ type = 'resource', position = position }) > 0 then return end local noise = Get_noise('decoratives', position, seed) if math_abs(noise) > 0.28 then - surface.create_decoratives {check_collision = false, decoratives = {{name = decorative_name, position = position, amount = math.floor(math.abs(noise * 3)) + 1}}} + surface.create_decoratives { check_collision = false, decoratives = { { name = decorative_name, position = position, amount = math.floor(math.abs(noise * 3)) + 1 } } } end end @@ -55,7 +55,7 @@ end local function grasslands(surface, room) local dungeontable = DungeonsTable.get_dungeontable() for _, tile in pairs(room.path_tiles) do - surface.set_tiles({{name = 'grass-1', position = tile.position}}, true) + surface.set_tiles({ { name = 'grass-1', position = tile.position } }, true) end if not room.room_tiles[1] then @@ -68,25 +68,25 @@ local function grasslands(surface, room) table_shuffle_table(room.room_tiles) for key, tile in pairs(room.room_tiles) do - surface.set_tiles({{name = 'grass-2', position = tile.position}}, true) + surface.set_tiles({ { name = 'grass-2', position = tile.position } }, true) if math_random(1, 16) == 1 and Get_noise('n3', tile.position, seed) > 0.1 then - surface.create_entity({name = ores[math_random(1, #ores)], position = tile.position, amount = Functions.get_common_resource_amount(surface.index)}) + surface.create_entity({ name = ores[math_random(1, #ores)], position = tile.position, amount = Functions.get_common_resource_amount(surface.index) }) else if math_random(1, math_random(2, 20)) == 1 and math_abs(Get_noise('decoratives', tile.position, seed + 100000)) > 0.2 then - surface.create_entity({name = tree_name, position = tile.position}) + surface.create_entity({ name = tree_name, position = tile.position }) end end if key % 128 == 1 and math_random(1, 3) == 1 then Functions.set_spawner_tier( - surface.create_entity({name = Functions.roll_spawner_name(), position = tile.position, force = dungeontable.enemy_forces[surface.index]}), + surface.create_entity({ name = Functions.roll_spawner_name(), position = tile.position, force = dungeontable.enemy_forces[surface.index] }), surface.index ) end if math_random(1, 320) == 1 then - surface.create_entity({name = Functions.roll_worm_name(surface.index), position = tile.position, force = dungeontable.enemy_forces[surface.index]}) + surface.create_entity({ name = Functions.roll_worm_name(surface.index), position = tile.position, force = dungeontable.enemy_forces[surface.index] }) end if math_random(1, 1024) == 1 then - surface.create_entity({name = 'rock-huge', position = tile.position}) + surface.create_entity({ name = 'huge-rock', position = tile.position }) end end @@ -97,10 +97,10 @@ local function grasslands(surface, room) local r = math_random(1, r_max) 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 = 'water', position = p}}) + local p = { room.center.x + x, room.center.y + y } + surface.set_tiles({ { name = 'water', position = p } }) if math_random(1, 8) == 1 then - surface.create_entity({name = 'fish', position = p}) + surface.create_entity({ name = 'fish', position = p }) end end end @@ -108,7 +108,7 @@ local function grasslands(surface, room) table_shuffle_table(room.room_border_tiles) for key, tile in pairs(room.room_border_tiles) do - surface.set_tiles({{name = 'grass-3', position = tile.position}}, true) + surface.set_tiles({ { name = 'grass-3', position = tile.position } }, true) end for key, tile in pairs(room.room_border_tiles) do diff --git a/maps/dungeons/biome_red_desert.lua b/maps/dungeons/biome_red_desert.lua index 73343232..9d26ff22 100644 --- a/maps/dungeons/biome_red_desert.lua +++ b/maps/dungeons/biome_red_desert.lua @@ -6,8 +6,8 @@ local math_random = math.random local math_sqrt = math.sqrt local math_floor = math.floor -local trees = {'dead-dry-hairy-tree', 'dead-grey-trunk', 'dead-tree-desert', 'dry-hairy-tree', 'dry-tree'} -local ores = {'stone', 'stone', 'coal'} +local trees = { 'dead-dry-hairy-tree', 'dead-grey-trunk', 'dead-tree-desert', 'dry-hairy-tree', 'dry-tree' } +local ores = { 'stone', 'stone', 'coal' } local size_of_trees = #trees local function add_enemy_units(surface, room) @@ -26,32 +26,32 @@ end local function red_desert(surface, room) local dungeontable = DungeonsTable.get_dungeontable() for _, tile in pairs(room.path_tiles) do - surface.set_tiles({{name = 'red-desert-0', position = tile.position}}, true) + surface.set_tiles({ { name = 'red-desert-0', 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 = 'dry-dirt', position = tile.position}}, true) + surface.set_tiles({ { name = 'dry-dirt', position = tile.position } }, true) if math_random(1, 32) == 1 then - surface.create_entity({name = ores[math_random(1, #ores)], position = tile.position, amount = Functions.get_common_resource_amount(surface.index)}) + surface.create_entity({ name = ores[math_random(1, #ores)], position = tile.position, amount = Functions.get_common_resource_amount(surface.index) }) else - if math_random(1, 4) == 1 and surface.can_place_entity({name = trees[math_random(1, size_of_trees)], position = tile.position}) then - surface.create_entity({name = trees[math_random(1, size_of_trees)], position = tile.position}) + if math_random(1, 4) == 1 and surface.can_place_entity({ name = trees[math_random(1, size_of_trees)], position = tile.position }) then + surface.create_entity({ name = trees[math_random(1, size_of_trees)], position = tile.position }) end end if key % 16 == 0 and math_random(1, 32) == 1 then Functions.set_spawner_tier( - surface.create_entity({name = Functions.roll_spawner_name(), position = tile.position, force = dungeontable.enemy_forces[surface.index]}), + surface.create_entity({ name = Functions.roll_spawner_name(), position = tile.position, force = dungeontable.enemy_forces[surface.index] }), surface.index ) end if math_random(1, 256) == 1 then - surface.create_entity({name = Functions.roll_worm_name(surface.index), position = tile.position, force = dungeontable.enemy_forces[surface.index]}) + surface.create_entity({ name = Functions.roll_worm_name(surface.index), position = tile.position, force = dungeontable.enemy_forces[surface.index] }) end if math_random(1, 32) == 1 then - surface.create_entity({name = 'rock-huge', position = tile.position}) + surface.create_entity({ name = 'huge-rock', position = tile.position }) end end @@ -62,10 +62,10 @@ local function red_desert(surface, room) 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 = 'water', position = p}}) + local p = { room.center.x + x, room.center.y + y } + surface.set_tiles({ { name = 'water', position = p } }) if math_random(1, 8) == 1 then - surface.create_entity({name = 'fish', position = p}) + surface.create_entity({ name = 'fish', position = p }) end end end @@ -76,7 +76,7 @@ local function red_desert(surface, room) table_shuffle_table(room.room_border_tiles) end for key, tile in pairs(room.room_border_tiles) do - surface.set_tiles({{name = 'red-desert-1', position = tile.position}}, true) + surface.set_tiles({ { name = 'red-desert-1', position = tile.position } }, true) end for key, tile in pairs(room.room_border_tiles) do @@ -84,15 +84,15 @@ local function red_desert(surface, room) Functions.place_border_rock(surface, tile.position) else if math_random(1, 3) > 1 then - surface.create_entity({name = 'rock-huge', position = tile.position}) + surface.create_entity({ name = 'huge-rock', position = tile.position }) end end end if room.entrance_tile then local p = room.entrance_tile.position - local area = {{p.x - 0.5, p.y - 0.5}, {p.x + 0.5, p.y + 0.5}} - for _, entity in pairs(surface.find_entities_filtered({area = area})) do + local area = { { p.x - 0.5, p.y - 0.5 }, { p.x + 0.5, p.y + 0.5 } } + for _, entity in pairs(surface.find_entities_filtered({ area = area })) do entity.destroy() end end diff --git a/maps/dungeons/functions.lua b/maps/dungeons/functions.lua index f8096a78..f677e76a 100644 --- a/maps/dungeons/functions.lua +++ b/maps/dungeons/functions.lua @@ -224,37 +224,37 @@ end function Public.market(surface, position) local offers = { - { price = { { 'pistol', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(3, 4) } }, - { price = { { 'submachine-gun', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(15, 20) } }, - { price = { { 'shotgun', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(12, 18) } }, - { price = { { 'combat-shotgun', 1 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(7, 10) } }, - { price = { { 'rocket-launcher', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(7, 10) } }, - { price = { { 'flamethrower', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(12, 18) } }, - { price = { { 'light-armor', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(15, 20) } }, - { price = { { 'heavy-armor', 1 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(15, 20) } }, - { price = { { 'modular-armor', 1 } }, offer = { type = 'give-item', item = 'advanced-circuit', count = math_random(15, 20) } }, - { price = { { 'night-vision-equipment', 1 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(3, 4) } }, - { price = { { 'solar-panel-equipment', 1 } }, offer = { type = 'give-item', item = 'copper-plate', count = math_random(15, 25) } }, - { price = { { 'red-wire', 100 } }, offer = { type = 'give-item', item = 'copper-cable', count = math_random(75, 100) } }, - { price = { { 'green-wire', 100 } }, offer = { type = 'give-item', item = 'copper-cable', count = math_random(75, 100) } }, - { price = { { 'barrel', 10 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(6, 8) } }, - { price = { { 'arithmetic-combinator', 10 } }, offer = { type = 'give-item', item = 'electronic-circuit', count = math_random(15, 25) } }, - { price = { { 'decider-combinator', 10 } }, offer = { type = 'give-item', item = 'electronic-circuit', count = math_random(15, 25) } }, - { price = { { 'constant-combinator', 10 } }, offer = { type = 'give-item', item = 'electronic-circuit', count = math_random(9, 12) } }, - { price = { { 'power-switch', 10 } }, offer = { type = 'give-item', item = 'electronic-circuit', count = math_random(9, 12) } }, - { price = { { 'programmable-speaker', 10 } }, offer = { type = 'give-item', item = 'electronic-circuit', count = math_random(20, 30) } }, - { price = { { 'belt-immunity-equipment', 1 } }, offer = { type = 'give-item', item = 'advanced-circuit', count = math_random(2, 3) } }, + { price = { { 'pistol', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(3, 4) } }, + { price = { { 'submachine-gun', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(15, 20) } }, + { price = { { 'shotgun', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(12, 18) } }, + { price = { { 'combat-shotgun', 1 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(7, 10) } }, + { price = { { 'rocket-launcher', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(7, 10) } }, + { price = { { 'flamethrower', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(12, 18) } }, + { price = { { 'light-armor', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(15, 20) } }, + { price = { { 'heavy-armor', 1 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(15, 20) } }, + { price = { { 'modular-armor', 1 } }, offer = { type = 'give-item', item = 'advanced-circuit', count = math_random(15, 20) } }, + { price = { { 'night-vision-equipment', 1 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(3, 4) } }, + { price = { { 'solar-panel-equipment', 1 } }, offer = { type = 'give-item', item = 'copper-plate', count = math_random(15, 25) } }, + { price = { { 'red-wire', 100 } }, offer = { type = 'give-item', item = 'copper-cable', count = math_random(75, 100) } }, + { price = { { 'green-wire', 100 } }, offer = { type = 'give-item', item = 'copper-cable', count = math_random(75, 100) } }, + { price = { { 'barrel', 10 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(6, 8) } }, + { price = { { 'arithmetic-combinator', 10 } }, offer = { type = 'give-item', item = 'electronic-circuit', count = math_random(15, 25) } }, + { price = { { 'decider-combinator', 10 } }, offer = { type = 'give-item', item = 'electronic-circuit', count = math_random(15, 25) } }, + { price = { { 'constant-combinator', 10 } }, offer = { type = 'give-item', item = 'electronic-circuit', count = math_random(9, 12) } }, + { price = { { 'power-switch', 10 } }, offer = { type = 'give-item', item = 'electronic-circuit', count = math_random(9, 12) } }, + { price = { { 'programmable-speaker', 10 } }, offer = { type = 'give-item', item = 'electronic-circuit', count = math_random(20, 30) } }, + { price = { { 'belt-immunity-equipment', 1 } }, offer = { type = 'give-item', item = 'advanced-circuit', count = math_random(2, 3) } }, { price = { { 'discharge-defense-remote', 1 } }, offer = { type = 'give-item', item = 'electronic-circuit', count = 1 } }, - { price = { { 'rail-signal', 10 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(30, 40) } }, - { price = { { 'rail-chain-signal', 10 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(30, 40) } }, - { price = { { 'train-stop', 10 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(75, 100) } }, - { price = { { 'locomotive', 1 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(30, 40) } }, - { price = { { 'cargo-wagon', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(30, 40) } }, - { price = { { 'fluid-wagon', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(30, 40) } }, - { price = { { 'car', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(15, 20) } }, - { price = { { 'radar', 10 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(15, 20) } }, - { price = { { 'cannon-shell', 10 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(7, 10) } }, - { price = { { 'uranium-cannon-shell', 10 } }, offer = { type = 'give-item', item = 'uranium-238', count = math_random(7, 10) } } + { price = { { 'rail-signal', 10 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(30, 40) } }, + { price = { { 'rail-chain-signal', 10 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(30, 40) } }, + { price = { { 'train-stop', 10 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(75, 100) } }, + { price = { { 'locomotive', 1 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(30, 40) } }, + { price = { { 'cargo-wagon', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(30, 40) } }, + { price = { { 'fluid-wagon', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(30, 40) } }, + { price = { { 'car', 1 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(15, 20) } }, + { price = { { 'radar', 10 } }, offer = { type = 'give-item', item = 'iron-plate', count = math_random(15, 20) } }, + { price = { { 'cannon-shell', 10 } }, offer = { type = 'give-item', item = 'steel-plate', count = math_random(7, 10) } }, + { price = { { 'uranium-cannon-shell', 10 } }, offer = { type = 'give-item', item = 'uranium-238', count = math_random(7, 10) } } } table.shuffle_table(offers) local market = surface.create_entity({ name = 'market', position = position, force = 'neutral' }) @@ -370,7 +370,7 @@ function Public.place_border_rock(surface, position) if key then pos = { pos.x + vectors[key][1] * 0.45, pos.y + vectors[key][2] * 0.45 } end - surface.create_entity({ name = 'rock-big', position = pos }) + surface.create_entity({ name = 'big-rock', position = pos }) end function Public.create_scrap(surface, position) @@ -393,9 +393,9 @@ end function Public.on_marked_for_deconstruction(event) local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['crash-site-spaceship-wreck-small-1'] = true, ['crash-site-spaceship-wreck-small-2'] = true, ['crash-site-spaceship-wreck-small-3'] = true, @@ -462,9 +462,9 @@ function Public.rocky_loot(event) return end local allowed = { - ['rock-big'] = true, - ['rock-huge'] = true, - ['sand-rock-big'] = true + ['big-rock'] = true, + ['huge-rock'] = true, + ['big-sand-rock'] = true } if not allowed[event.entity.name] then return @@ -610,15 +610,15 @@ function Public.draw_spawn(surface) local position = { x = x, y = y } if position.x <= spawn_size and position.y <= spawn_size and position.x >= spawn_size * -1 and position.y >= spawn_size * -1 then if position.x == spawn_size then - entities[i] = { name = 'rock-big', position = { position.x + 0.95, position.y } } + entities[i] = { name = 'big-rock', position = { position.x + 0.95, position.y } } i = i + 1 end if position.y == spawn_size then - entities[i] = { name = 'rock-big', position = { position.x, position.y + 0.95 } } + entities[i] = { name = 'big-rock', position = { position.x, position.y + 0.95 } } i = i + 1 end if position.x == spawn_size * -1 or position.y == spawn_size * -1 then - entities[i] = { name = 'rock-big', position = position } + entities[i] = { name = 'big-rock', position = position } i = i + 1 end end diff --git a/maps/dungeons/main.lua b/maps/dungeons/main.lua index 3bf8c48b..3b378c0d 100644 --- a/maps/dungeons/main.lua +++ b/maps/dungeons/main.lua @@ -312,7 +312,7 @@ local function on_entity_damaged(event) if math_random(1, 256) == 1 then return end - if entity.name ~= 'rock-big' then + if entity.name ~= 'big-rock' then return end entity.health = entity.health + event.final_damage_amount @@ -326,7 +326,7 @@ local function on_player_mined_entity(event) if entity.type == 'simple-entity' then Functions.mining_events(entity) end - if entity.name ~= 'rock-big' then + if entity.name ~= 'big-rock' then return end expand(entity.surface, entity.position) @@ -340,7 +340,7 @@ local function on_entity_died(event) if entity.type == 'unit-spawner' then spawner_death(entity) end - if entity.name ~= 'rock-big' then + if entity.name ~= 'big-rock' then return end expand(entity.surface, entity.position) @@ -410,7 +410,7 @@ local function on_tick() local surface = game.surfaces["dungeons"] - local entities = surface.find_entities_filtered({name = "rock-big"}) + local entities = surface.find_entities_filtered({name = "big-rock"}) if not entities[1] then return end local entity = entities[math_random(1, #entities)] diff --git a/maps/dungeons/tiered_dungeon.lua b/maps/dungeons/tiered_dungeon.lua index bc403833..d699a37b 100644 --- a/maps/dungeons/tiered_dungeon.lua +++ b/maps/dungeons/tiered_dungeon.lua @@ -435,7 +435,7 @@ local function on_entity_damaged(event) end local size = dungeontable.surface_size[entity.surface.index] if size < math.abs(entity.position.y) or size < math.abs(entity.position.x) then - if entity.name == 'rock-big' then + if entity.name == 'big-rock' then entity.health = entity.health + event.final_damage_amount end return @@ -455,7 +455,7 @@ local function on_entity_damaged(event) if math_random(1, 256) == 1 then return end - if entity.name ~= 'rock-big' then + if entity.name ~= 'big-rock' then return end entity.health = entity.health + event.final_damage_amount @@ -467,7 +467,7 @@ local function on_player_mined_entity(event) if not entity.valid then return end - if entity.name == 'rock-big' then + if entity.name == 'big-rock' then local size = dungeontable.surface_size[entity.surface.index] if size < math.abs(entity.position.y) or size < math.abs(entity.position.x) then entity.surface.create_entity({ name = entity.name, position = entity.position }) @@ -483,7 +483,7 @@ local function on_player_mined_entity(event) Functions.mining_events(entity) Functions.rocky_loot(event) end - if entity.name ~= 'rock-big' then + if entity.name ~= 'big-rock' then return end expand(entity.surface, entity.position) @@ -499,7 +499,7 @@ local function on_entity_died(event) if entity.type == 'unit-spawner' then spawner_death(entity) end - if entity.name ~= 'rock-big' then + if entity.name ~= 'big-rock' then return end expand(entity.surface, entity.position) @@ -819,7 +819,7 @@ local function on_tick() local surface = game.surfaces["dungeons"] - local entities = surface.find_entities_filtered({name = "rock-big"}) + local entities = surface.find_entities_filtered({name = "big-rock"}) if not entities[1] then return end local entity = entities[math_random(1, #entities)] diff --git a/maps/expanse/functions.lua b/maps/expanse/functions.lua index 522d373b..a94e7d96 100644 --- a/maps/expanse/functions.lua +++ b/maps/expanse/functions.lua @@ -351,7 +351,7 @@ function Public.expand(expanse, left_top) end surface.create_entity({ name = 'crude-oil', position = { a - 4, a - 4 }, amount = 1500000 }) Task.set_timeout_in_ticks(30, delay_infini_tree_token, { surface = surface, position = { a - 4, a + 4 } }) - surface.create_entity({ name = 'rock-big', position = { a + 4, a - 4 } }) + surface.create_entity({ name = 'big-rock', position = { a + 4, a - 4 } }) surface.spill_item_stack({ a, a + 2 }, { name = 'coin', count = 1 }, false, nil, false) surface.spill_item_stack({ a + 0.5, a + 2.5 }, { name = 'coin', count = 1 }, false, nil, false) surface.spill_item_stack({ a - 0.5, a + 2.5 }, { name = 'coin', count = 1 }, false, nil, false) diff --git a/maps/expanse/main.lua b/maps/expanse/main.lua index 2de9ea25..5e6cd631 100644 --- a/maps/expanse/main.lua +++ b/maps/expanse/main.lua @@ -298,7 +298,7 @@ local function infini_rock(entity) end local a = math.floor(expanse.square_size * 0.5) if entity.position.x == a + 4 and entity.position.y == a - 4 then - entity.surface.create_entity({ name = 'rock-big', position = { a + 4, a - 4 } }) + entity.surface.create_entity({ name = 'big-rock', position = { a + 4, a - 4 } }) entity.surface.spill_item_stack(entity.position, { name = inf_ores[math.random(1, 4)], count = math.random(80, 160) }, true, nil, true) entity.surface.spill_item_stack(entity.position, { name = 'stone', count = math.random(5, 15) }, true, nil, true) uranium_mining(entity) diff --git a/maps/fish_defender/crumbly_walls.lua b/maps/fish_defender/crumbly_walls.lua index 83890d6d..8686015b 100644 --- a/maps/fish_defender/crumbly_walls.lua +++ b/maps/fish_defender/crumbly_walls.lua @@ -2,7 +2,7 @@ local Event = require 'utils.event' local FDT = require 'maps.fish_defender.table' local math_random = math.random -local rock_raffle = {'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge'} +local rock_raffle = { 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local function on_entity_died(event) local crumbly_walls_unlocked = FDT.get('crumbly_walls_unlocked') @@ -19,7 +19,7 @@ local function on_entity_died(event) if math_random(1, 4) == 1 then return end - entity.surface.create_entity({name = rock_raffle[math_random(1, #rock_raffle)], position = entity.position, force = 'player'}) + entity.surface.create_entity({ name = rock_raffle[math_random(1, #rock_raffle)], position = entity.position, force = 'player' }) end Event.add(defines.events.on_entity_died, on_entity_died) diff --git a/maps/fish_defender/terrain.lua b/maps/fish_defender/terrain.lua index 37f7b138..12f2f8e6 100644 --- a/maps/fish_defender/terrain.lua +++ b/maps/fish_defender/terrain.lua @@ -11,15 +11,15 @@ local math_sqrt = math.sqrt local Public = {} local rock_raffle = { - 'sand-rock-big', - 'sand-rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-huge' + 'big-sand-rock', + 'big-sand-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'huge-rock' } local function get_replacement_tile(surface, position) diff --git a/maps/fish_defender_v1/crumbly_walls.lua b/maps/fish_defender_v1/crumbly_walls.lua index 08a53f2a..e3a90109 100644 --- a/maps/fish_defender_v1/crumbly_walls.lua +++ b/maps/fish_defender_v1/crumbly_walls.lua @@ -1,7 +1,7 @@ local Event = require 'utils.event' local math_random = math.random -local rock_raffle = { 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local function on_entity_died(event) if not storage.crumbly_walls_unlocked then diff --git a/maps/fish_defender_v1/fish_defender.lua b/maps/fish_defender_v1/fish_defender.lua index f0d50961..6f52c27d 100644 --- a/maps/fish_defender_v1/fish_defender.lua +++ b/maps/fish_defender_v1/fish_defender.lua @@ -1277,15 +1277,15 @@ local worm_raffle_table = { } } local rock_raffle = { - 'sand-rock-big', - 'sand-rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-huge' + 'big-sand-rock', + 'big-sand-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'huge-rock' } local function spawn_obstacles(left_top, surface) diff --git a/maps/fish_defender_v2/b.lua b/maps/fish_defender_v2/b.lua index 2c267ef3..a2606a8a 100644 --- a/maps/fish_defender_v2/b.lua +++ b/maps/fish_defender_v2/b.lua @@ -45,15 +45,15 @@ local tile_map = { } local rock_raffle = { - 'sand-rock-big', - 'sand-rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-huge' + 'big-sand-rock', + 'big-sand-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'huge-rock' } local function decompress() @@ -98,7 +98,7 @@ local function get_pos(x, y) end end -local ores = {'coal', 'iron-ore', 'copper-ore', 'stone'} +local ores = { 'coal', 'iron-ore', 'copper-ore', 'stone' } local function plankton_territory(position, seed, ent) local noise = simplex_noise(position.x * 0.009, position.y * 0.009, seed) @@ -120,19 +120,19 @@ local function plankton_territory(position, seed, ent) if noise_2 > 0.75 then local i = floor(noise * 6) % 4 + 1 --surface.set_tiles({{name = "grass-" .. i, position = position}}, true) - ent[#ent + 1] = {name = ores[i], position = position, amount = 1 + 2500 * abs(noise_2 * 3)} + ent[#ent + 1] = { name = ores[i], position = position, amount = 1 + 2500 * abs(noise_2 * 3) } return ('grass-' .. i) end if noise_2 < -0.76 then local i = floor(noise * 6) % 4 + 1 --surface.set_tiles({{name = "grass-" .. i, position = position}}, true) if noise_2 < -0.86 then - ent[#ent + 1] = {name = 'uranium-ore', position = position, amount = 1 + 1000 * abs(noise_2 * 2)} + ent[#ent + 1] = { name = 'uranium-ore', position = position, amount = 1 + 1000 * abs(noise_2 * 2) } return ('grass-' .. i) end if random(1, 3) ~= 1 then - ent[#ent + 1] = {name = rock_raffle[random(1, #rock_raffle)], position = position} + ent[#ent + 1] = { name = rock_raffle[random(1, #rock_raffle)], position = position } end return ('grass-' .. i) end @@ -141,14 +141,14 @@ local function plankton_territory(position, seed, ent) local i = floor(noise * 32) % 4 + 1 --surface.set_tiles({{name = "grass-" .. i, position = position}}, true) if random(1, 5) == 1 then - ent[#ent + 1] = {name = rock_raffle[random(1, #rock_raffle)], position = position} + ent[#ent + 1] = { name = rock_raffle[random(1, #rock_raffle)], position = position } end return ('grass-' .. i) end --surface.set_tiles({{name = "water", position = position}}, true) if random(1, 128) == 1 then - ent[#ent + 1] = {name = 'fish', position = position} + ent[#ent + 1] = { name = 'fish', position = position } end return 'water' @@ -185,20 +185,20 @@ function Public.make_chunk(event) for x = x1, x2 do for y = y1, y2 do - local pos = {x = x, y = y} + local pos = { x = x, y = y } local new = get_pos(x, y) local ore = get_random_ore(pos) if new and type(new) == 'string' then if new == 'lab-dark-2' then - ent[#ent + 1] = {name = ore, position = pos, amount = 2500} + ent[#ent + 1] = { name = ore, position = pos, amount = 2500 } else - tiles[#tiles + 1] = {name = new, position = pos} + tiles[#tiles + 1] = { name = new, position = pos } end else local tile_to_set = plankton_territory(pos, seed, ent) if tile_to_set then - noise[#noise + 1] = {name = tile_to_set, position = pos} + noise[#noise + 1] = { name = tile_to_set, position = pos } end end end @@ -208,9 +208,9 @@ function Public.make_chunk(event) surface.set_tiles(noise, true) for i = 1, #ent do if ent[i].amount then - surface.create_entity({name = ent[i].name, position = ent[i].position, amount = ent[i].amount}) + surface.create_entity({ name = ent[i].name, position = ent[i].position, amount = ent[i].amount }) else - surface.create_entity({name = ent[i].name, position = ent[i].position}) + surface.create_entity({ name = ent[i].name, position = ent[i].position }) end end end diff --git a/maps/fish_defender_v2/crumbly_walls.lua b/maps/fish_defender_v2/crumbly_walls.lua index 8099a0b6..4b933501 100644 --- a/maps/fish_defender_v2/crumbly_walls.lua +++ b/maps/fish_defender_v2/crumbly_walls.lua @@ -2,7 +2,7 @@ local Event = require 'utils.event' local Public = require 'maps.fish_defender_v2.table' local random = math.random -local rock_raffle = {'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge'} +local rock_raffle = { 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local function on_entity_died(event) local crumbly_walls_unlocked = Public.get('crumbly_walls_unlocked') @@ -19,7 +19,7 @@ local function on_entity_died(event) if random(1, 4) == 1 then return end - entity.surface.create_entity({name = rock_raffle[random(1, #rock_raffle)], position = entity.position, force = 'player'}) + entity.surface.create_entity({ name = rock_raffle[random(1, #rock_raffle)], position = entity.position, force = 'player' }) end Event.add(defines.events.on_entity_died, on_entity_died) diff --git a/maps/fish_defender_v2/terrain.lua b/maps/fish_defender_v2/terrain.lua index e64d0b5b..7c410382 100644 --- a/maps/fish_defender_v2/terrain.lua +++ b/maps/fish_defender_v2/terrain.lua @@ -11,12 +11,12 @@ local sqrt = math.sqrt --rock spawning code for stone pile local rock_raffle = { - 'sand-rock-big', - 'sand-rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-huge' + 'big-sand-rock', + 'big-sand-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'huge-rock' } local size_of_rock_raffle = #rock_raffle diff --git a/maps/hedge_maze.lua b/maps/hedge_maze.lua index 85ceacc2..309a7357 100644 --- a/maps/hedge_maze.lua +++ b/maps/hedge_maze.lua @@ -28,7 +28,7 @@ local modifiers_diagonal = { { diagonal = { x = -1, y = -1 }, connection_1 = { x = -1, y = 0 }, connection_2 = { x = 0, y = -1 } } } -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local function shuffle(tbl) local size = #tbl @@ -60,7 +60,7 @@ local function create_shipwreck(surface, position) { { name = 'inserter', count = math_random(4, 8) }, weight = 3, evolution_min = 0.0, evolution_max = 0.4 }, { { name = 'long-handed-inserter', count = math_random(4, 8) }, weight = 3, evolution_min = 0.0, evolution_max = 0.4 }, { { name = 'fast-inserter', count = math_random(4, 8) }, weight = 3, evolution_min = 0.1, evolution_max = 1 }, - { { name = 'bulk-inserter', count = math_random(2, 4) }, weight = 1, evolution_min = 0.4, evolution_max = 1 }, + { { name = 'bulk-inserter', count = math_random(2, 4) }, weight = 1, evolution_min = 0.4, evolution_max = 1 }, { { name = 'stack-inserter', count = math_random(2, 4) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, { { name = 'small-electric-pole', count = math_random(8, 16) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, { { name = 'medium-electric-pole', count = math_random(4, 8) }, weight = 3, evolution_min = 0.2, evolution_max = 1 }, diff --git a/maps/island_troopers/terrain.lua b/maps/island_troopers/terrain.lua index e6edbca0..c4a8b2ed 100644 --- a/maps/island_troopers/terrain.lua +++ b/maps/island_troopers/terrain.lua @@ -5,7 +5,7 @@ local NoiseVectors = require 'utils.functions.noise_vector_path' local Enemies = require 'maps.island_troopers.enemies' local ShoppingChests = require 'modules.shopping_chests' -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local function island_noise(p, seed_1, seed_2, seed_3) local noise_1 = simplex_noise(p.x * seed_m1, p.y * seed_m1, seed_1) diff --git a/maps/journey/unique_modifiers.lua b/maps/journey/unique_modifiers.lua index 6aaef5ee..79840237 100644 --- a/maps/journey/unique_modifiers.lua +++ b/maps/journey/unique_modifiers.lua @@ -6,7 +6,7 @@ local math_random = math.random local math_abs = math.abs local math_floor = math.floor local math_sqrt = math.sqrt -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local size_of_rock_raffle = #rock_raffle local ore_raffle = {} for i = 1, 25, 1 do @@ -34,9 +34,9 @@ for i = 1, 5, 1 do end local size_of_ore_raffle_2 = #ore_raffle_2 local rock_yield = { - ['rock-big'] = 1, - ['rock-huge'] = 2, - ['sand-rock-big'] = 1 + ['big-rock'] = 1, + ['huge-rock'] = 2, + ['big-sand-rock'] = 1 } local solid_tiles = { ['concrete'] = true, diff --git a/maps/junkyard.lua b/maps/junkyard.lua index debaca9a..dee813d3 100644 --- a/maps/junkyard.lua +++ b/maps/junkyard.lua @@ -29,9 +29,9 @@ local scrap = require 'utils.tools.scrap' local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['crash-site-spaceship-wreck-small-1'] = true, ['crash-site-spaceship-wreck-small-2'] = true, ['crash-site-spaceship-wreck-small-3'] = true, @@ -150,7 +150,7 @@ local function create_shipwreck(surface, position) { { name = 'inserter', count = math_random(4, 8) }, weight = 3, evolution_min = 0.0, evolution_max = 0.4 }, { { name = 'long-handed-inserter', count = math_random(4, 8) }, weight = 3, evolution_min = 0.0, evolution_max = 0.4 }, { { name = 'fast-inserter', count = math_random(4, 8) }, weight = 3, evolution_min = 0.1, evolution_max = 1 }, - { { name = 'bulk-inserter', count = math_random(2, 4) }, weight = 1, evolution_min = 0.4, evolution_max = 1 }, + { { name = 'bulk-inserter', count = math_random(2, 4) }, weight = 1, evolution_min = 0.4, evolution_max = 1 }, { { name = 'stack-inserter', count = math_random(2, 4) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, { { name = 'small-electric-pole', count = math_random(8, 16) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, { { name = 'medium-electric-pole', count = math_random(4, 8) }, weight = 3, evolution_min = 0.2, evolution_max = 1 }, diff --git a/maps/junkyard_pvp/terrain.lua b/maps/junkyard_pvp/terrain.lua index 215eca74..1b48f4c0 100644 --- a/maps/junkyard_pvp/terrain.lua +++ b/maps/junkyard_pvp/terrain.lua @@ -5,7 +5,7 @@ local math_floor = math.floor local Treasure = require 'maps.junkyard_pvp.treasure' local Map_functions = require 'utils.tools.map_functions' local simplex_noise = require 'utils.simplex_noise'.d2 -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local spawner_raffle = { 'biter-spawner', 'biter-spawner', 'biter-spawner', 'spitter-spawner' } local noises = { ['no_rocks'] = { { modifier = 0.0033, weight = 1 }, { modifier = 0.01, weight = 0.22 }, { modifier = 0.05, weight = 0.05 }, { modifier = 0.1, weight = 0.04 } }, diff --git a/maps/labyrinth.lua b/maps/labyrinth.lua index 113d89c1..23cee9f6 100644 --- a/maps/labyrinth.lua +++ b/maps/labyrinth.lua @@ -96,7 +96,7 @@ local function is_chunk_allowed_to_grow(chunk_position, surface) left_top = { x = pos_x, y = pos_y }, right_bottom = { x = pos_x + 31, y = pos_y + 31 } } - if surface.count_entities_filtered { area = area, name = { 'sand-rock-big', 'rock-big', 'rock-huge' }, limit = 1 } == 0 then + if surface.count_entities_filtered { area = area, name = { 'big-sand-rock', 'big-rock', 'huge-rock' }, limit = 1 } == 0 then return true else return false @@ -167,7 +167,7 @@ local function init_map() game.map_settings.pollution.pollution_restored_per_tree_damage = 0 game.forces['player'].set_spawn_position({ 16, 0 }, surface) - surface.create_entity { name = 'rock-big', position = { 16, -16 } } + surface.create_entity { name = 'big-rock', position = { 16, -16 } } this.settings.seed = seed game.forces['player'].technologies['artillery'].enabled = false @@ -195,7 +195,7 @@ worm_raffle[7] = { 'medium-worm-turret', 'medium-worm-turret', 'medium-worm-turr worm_raffle[8] = { 'medium-worm-turret', 'medium-worm-turret', 'medium-worm-turret', 'medium-worm-turret', 'big-worm-turret', 'big-worm-turret' } worm_raffle[9] = { 'medium-worm-turret', 'medium-worm-turret', 'medium-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret' } worm_raffle[10] = { 'medium-worm-turret', 'medium-worm-turret', 'medium-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret' } -local rock_weights = { { 'sand-rock-big', 9 }, { 'rock-big', 32 }, { 'rock-huge', 1 } } +local rock_weights = { { 'big-sand-rock', 9 }, { 'big-rock', 32 }, { 'huge-rock', 1 } } local rock_raffle = {} for _, t in pairs(rock_weights) do for _ = 1, t[2], 1 do @@ -1063,13 +1063,13 @@ local function on_entity_died(event) return end - if name == 'sand-rock-big' or name == 'rock-big' or name == 'rock-huge' then + if name == 'big-sand-rock' or name == 'big-rock' or name == 'huge-rock' then local pos = { x = position.x, y = position.y } - if name == 'rock-huge' then + if name == 'huge-rock' then spawn_infinity_chest(pos, surface) - elseif name == 'rock-big' then + elseif name == 'big-rock' then treasure_chest(pos, surface) - elseif name == 'sand-rock-big' then + elseif name == 'big-sand-rock' then local n = ore_spawn_raffle[math.random(1, #ore_spawn_raffle)] --local amount_modifier = 1 + ((this.settings.labyrinth_size / labyrinth_difficulty_curve) * 10) local amount_modifier = math.ceil(1 + evolution * 5) @@ -1090,7 +1090,7 @@ local function on_entity_died(event) end local function on_player_mined_entity(event) - if event.entity.name == 'sand-rock-big' or event.entity.name == 'rock-big' or event.entity.name == 'rock-huge' then + if event.entity.name == 'big-sand-rock' or event.entity.name == 'big-rock' or event.entity.name == 'huge-rock' then event.entity.die() end end @@ -1356,7 +1356,7 @@ local function on_robot_built_entity(event) end local function on_entity_damaged(event) - if event.entity.name == 'rock-huge' or event.entity.name == 'rock-big' or event.entity.name == 'sand-rock-big' then + if event.entity.name == 'huge-rock' or event.entity.name == 'big-rock' or event.entity.name == 'big-sand-rock' then if event.force.name == 'enemy' then event.entity.health = event.entity.health + event.final_damage_amount end diff --git a/maps/labyrinth_unique_rooms.lua b/maps/labyrinth_unique_rooms.lua index 65257f0a..402a8314 100644 --- a/maps/labyrinth_unique_rooms.lua +++ b/maps/labyrinth_unique_rooms.lua @@ -4,6861 +4,6861 @@ local unique_rooms = { mini_labyrinth = { entities = { - {position = {x = 0.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.8203125, y = 5.9609375}, name = 'dead-tree-desert', direction = 0, force = 'neutral'}, - {position = {x = 5.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15, y = 6}, name = 'small-worm-turret', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.40625, y = 5.609375}, name = 'dead-tree-desert', direction = 0, force = 'neutral'}, - {position = {x = 27.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.40625, y = 8.4375}, name = 'dead-tree-desert', direction = 0, force = 'neutral'}, - {position = {x = 21.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30, y = 10}, name = 'small-worm-turret', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2, y = 11}, name = 'small-worm-turret', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5390625, y = 13.4453125}, name = 'dead-tree-desert', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.6640625, y = 15.46484375}, name = 'dead-tree-desert', direction = 0, force = 'neutral'}, - {position = {x = 6.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.2421875, y = 14.98828125}, name = 'rock-big', direction = 0, force = 'neutral'}, - {position = {x = 17.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.4921875, y = 21.33203125}, name = 'dead-tree-desert', direction = 0, force = 'neutral'}, - {position = {x = 23.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.640625, y = 23.4609375}, name = 'dead-tree-desert', direction = 0, force = 'neutral'}, - {position = {x = 6.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22, y = 26}, name = 'small-worm-turret', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.40625, y = 25.453125}, name = 'dead-tree-desert', direction = 0, force = 'neutral'}, - {position = {x = 23.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15, y = 27}, name = 'small-worm-turret', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'} + { position = { x = 0.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.8203125, y = 5.9609375 }, name = 'dead-tree-desert', direction = 0, force = 'neutral' }, + { position = { x = 5.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15, y = 6 }, name = 'small-worm-turret', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.40625, y = 5.609375 }, name = 'dead-tree-desert', direction = 0, force = 'neutral' }, + { position = { x = 27.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.40625, y = 8.4375 }, name = 'dead-tree-desert', direction = 0, force = 'neutral' }, + { position = { x = 21.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30, y = 10 }, name = 'small-worm-turret', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2, y = 11 }, name = 'small-worm-turret', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5390625, y = 13.4453125 }, name = 'dead-tree-desert', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.6640625, y = 15.46484375 }, name = 'dead-tree-desert', direction = 0, force = 'neutral' }, + { position = { x = 6.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.2421875, y = 14.98828125 }, name = 'big-rock', direction = 0, force = 'neutral' }, + { position = { x = 17.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.4921875, y = 21.33203125 }, name = 'dead-tree-desert', direction = 0, force = 'neutral' }, + { position = { x = 23.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.640625, y = 23.4609375 }, name = 'dead-tree-desert', direction = 0, force = 'neutral' }, + { position = { x = 6.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22, y = 26 }, name = 'small-worm-turret', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.40625, y = 25.453125 }, name = 'dead-tree-desert', direction = 0, force = 'neutral' }, + { position = { x = 23.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15, y = 27 }, name = 'small-worm-turret', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' } }, tiles = {} }, deadly_crossing = { entities = { - {position = {x = 17.2734375, y = 2.0703125}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 19.94140625, y = 1.08203125}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 18.68359375, y = 1.38671875}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 26, y = 3.5}, name = 'spitter-spawner', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 1}, name = 'medium-worm-turret', direction = 2, force = 'enemy'}, - {position = {x = 8.41015625, y = 3.92578125}, name = 'dry-tree', direction = 0, force = 'neutral'}, - {position = {x = 10.33984375, y = 4.6484375}, name = 'dry-tree', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 4}, name = 'medium-worm-turret', direction = 2, force = 'enemy'}, - {position = {x = 7.5, y = 5.5}, name = 'big-worm-turret', direction = 0, force = 'enemy'}, - {position = {x = 10.58203125, y = 5.71875}, name = 'dry-tree', direction = 0, force = 'neutral'}, - {position = {x = 1.3984375, y = 7.3203125}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 4.5, y = 7.5}, name = 'big-worm-turret', direction = 2, force = 'enemy'}, - {position = {x = 4.5, y = 7.5}, name = 'crude-oil', direction = 0, force = 'neutral'}, - {position = {x = 7.33984375, y = 7.3046875}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 24.6640625, y = 8.203125}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 24.703125, y = 6.87109375}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 29, y = 8.5}, name = 'spitter-spawner', direction = 0, force = 'enemy'}, - {position = {x = 1.578125, y = 9.65234375}, name = 'dry-tree', direction = 0, force = 'neutral'}, - {position = {x = 9, y = 10}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 10, y = 11}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 30.76171875, y = 11.78515625}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 16.484375, y = 15.48828125}, name = 'tree-04', direction = 0, force = 'neutral'}, - {position = {x = 24.6875, y = 18.828125}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 24.5, y = 21.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 14.109375, y = 23.6015625}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 23.01171875, y = 24.859375}, name = 'rock-huge', direction = 0, force = 'neutral'}, - {position = {x = 23.5, y = 23.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 23.5, y = 22.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 22.5, y = 23.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 28, y = 25.5}, name = 'biter-spawner', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 22.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 25.5, y = 23.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 24.5, y = 23.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 25.5, y = 22.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 26.5, y = 23.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 29.5, y = 23.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 13.4375, y = 26.03515625}, name = 'medium-spitter', direction = 0, force = 'enemy'}, - {position = {x = 18.4296875, y = 24.765625}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 20.85546875, y = 25.13671875}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 21.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 20.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 21.5, y = 24.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 23.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 22.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 22.5, y = 24.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 23.5, y = 24.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 25.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 24.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 25.5, y = 24.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 24.5, y = 24.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 27.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 26.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 27.5, y = 24.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 26.5, y = 24.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 29.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 29.5, y = 24.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 28.5, y = 24.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 28.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 31.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 24.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 22.1328125, y = 27.96484375}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 26.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 22.546875, y = 28.03515625}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 22.99609375, y = 28.171875}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 23.859375, y = 28.0703125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 27.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 22.5, y = 27.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 23.5, y = 26.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 22.5, y = 26.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 24.6171875, y = 27.9296875}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 27.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 24.5, y = 26.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 25.5, y = 26.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 26.5, y = 27.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 27.5, y = 26.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 26.5, y = 26.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 29.5, y = 27.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 29.5, y = 26.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 28.5, y = 26.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 26.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 12.67578125, y = 28.7890625}, name = 'dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 14.5625, y = 30.28515625}, name = 'dead-dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 22.89453125, y = 29.86328125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 23.99609375, y = 28.55078125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 23.9609375, y = 29.51953125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 23.3046875, y = 29.5546875}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 22.71875, y = 29.4140625}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 22.92578125, y = 28.86328125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 23.41015625, y = 28.27734375}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 28.5}, name = 'stone', direction = 0, force = 'neutral'}, - {position = {x = 24.4453125, y = 28.5859375}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 25.03125, y = 28.65625}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 25.7578125, y = 28.7578125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 25.1015625, y = 30.17578125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 24.58203125, y = 29.7265625}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 26.30859375, y = 28.86328125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 26.79296875, y = 29}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 27.20703125, y = 29.10546875}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 27.79296875, y = 29.34765625}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 28.5}, name = 'tree-09-stump', direction = 0, force = 'neutral'}, - {position = {x = 10, y = 31}, name = 'small-worm-turret', direction = 2, force = 'enemy'}, - {position = {x = 11.98828125, y = 31.0703125}, name = 'medium-spitter', direction = 0, force = 'enemy'}, - {position = {x = 23.03125, y = 30.3125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 23.48046875, y = 30.20703125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 23.546875, y = 30.62109375}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 25.82421875, y = 30.58984375}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 24.72265625, y = 30.76171875}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 25.34375, y = 30.62109375}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 26.6171875, y = 30.34765625}, name = 'small-biter', direction = 0, force = 'enemy'} + { position = { x = 17.2734375, y = 2.0703125 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 19.94140625, y = 1.08203125 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 18.68359375, y = 1.38671875 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 26, y = 3.5 }, name = 'spitter-spawner', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 1 }, name = 'medium-worm-turret', direction = 2, force = 'enemy' }, + { position = { x = 8.41015625, y = 3.92578125 }, name = 'dry-tree', direction = 0, force = 'neutral' }, + { position = { x = 10.33984375, y = 4.6484375 }, name = 'dry-tree', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 4 }, name = 'medium-worm-turret', direction = 2, force = 'enemy' }, + { position = { x = 7.5, y = 5.5 }, name = 'big-worm-turret', direction = 0, force = 'enemy' }, + { position = { x = 10.58203125, y = 5.71875 }, name = 'dry-tree', direction = 0, force = 'neutral' }, + { position = { x = 1.3984375, y = 7.3203125 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 4.5, y = 7.5 }, name = 'big-worm-turret', direction = 2, force = 'enemy' }, + { position = { x = 4.5, y = 7.5 }, name = 'crude-oil', direction = 0, force = 'neutral' }, + { position = { x = 7.33984375, y = 7.3046875 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 24.6640625, y = 8.203125 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 24.703125, y = 6.87109375 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 29, y = 8.5 }, name = 'spitter-spawner', direction = 0, force = 'enemy' }, + { position = { x = 1.578125, y = 9.65234375 }, name = 'dry-tree', direction = 0, force = 'neutral' }, + { position = { x = 9, y = 10 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 10, y = 11 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 30.76171875, y = 11.78515625 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 16.484375, y = 15.48828125 }, name = 'tree-04', direction = 0, force = 'neutral' }, + { position = { x = 24.6875, y = 18.828125 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 24.5, y = 21.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 14.109375, y = 23.6015625 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 23.01171875, y = 24.859375 }, name = 'huge-rock', direction = 0, force = 'neutral' }, + { position = { x = 23.5, y = 23.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 23.5, y = 22.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 22.5, y = 23.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 28, y = 25.5 }, name = 'biter-spawner', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 22.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 25.5, y = 23.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 24.5, y = 23.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 25.5, y = 22.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 26.5, y = 23.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 29.5, y = 23.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 13.4375, y = 26.03515625 }, name = 'medium-spitter', direction = 0, force = 'enemy' }, + { position = { x = 18.4296875, y = 24.765625 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 20.85546875, y = 25.13671875 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 21.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 20.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 21.5, y = 24.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 23.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 22.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 22.5, y = 24.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 23.5, y = 24.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 25.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 24.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 25.5, y = 24.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 24.5, y = 24.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 27.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 26.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 27.5, y = 24.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 26.5, y = 24.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 29.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 29.5, y = 24.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 28.5, y = 24.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 28.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 31.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 24.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 22.1328125, y = 27.96484375 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 26.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 22.546875, y = 28.03515625 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 22.99609375, y = 28.171875 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 23.859375, y = 28.0703125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 27.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 22.5, y = 27.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 23.5, y = 26.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 22.5, y = 26.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 24.6171875, y = 27.9296875 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 27.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 24.5, y = 26.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 25.5, y = 26.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 26.5, y = 27.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 27.5, y = 26.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 26.5, y = 26.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 29.5, y = 27.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 29.5, y = 26.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 28.5, y = 26.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 26.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 12.67578125, y = 28.7890625 }, name = 'dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 14.5625, y = 30.28515625 }, name = 'dead-dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 22.89453125, y = 29.86328125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 23.99609375, y = 28.55078125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 23.9609375, y = 29.51953125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 23.3046875, y = 29.5546875 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 22.71875, y = 29.4140625 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 22.92578125, y = 28.86328125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 23.41015625, y = 28.27734375 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 28.5 }, name = 'stone', direction = 0, force = 'neutral' }, + { position = { x = 24.4453125, y = 28.5859375 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 25.03125, y = 28.65625 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 25.7578125, y = 28.7578125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 25.1015625, y = 30.17578125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 24.58203125, y = 29.7265625 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 26.30859375, y = 28.86328125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 26.79296875, y = 29 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 27.20703125, y = 29.10546875 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 27.79296875, y = 29.34765625 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 28.5 }, name = 'tree-09-stump', direction = 0, force = 'neutral' }, + { position = { x = 10, y = 31 }, name = 'small-worm-turret', direction = 2, force = 'enemy' }, + { position = { x = 11.98828125, y = 31.0703125 }, name = 'medium-spitter', direction = 0, force = 'enemy' }, + { position = { x = 23.03125, y = 30.3125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 23.48046875, y = 30.20703125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 23.546875, y = 30.62109375 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 25.82421875, y = 30.58984375 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 24.72265625, y = 30.76171875 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 25.34375, y = 30.62109375 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 26.6171875, y = 30.34765625 }, name = 'small-biter', direction = 0, force = 'enemy' } }, tiles = { - {position = {x = 0, y = 0}, name = 'deepwater'}, - {position = {x = 0, y = 1}, name = 'deepwater'}, - {position = {x = 0, y = 2}, name = 'deepwater'}, - {position = {x = 0, y = 3}, name = 'deepwater'}, - {position = {x = 0, y = 4}, name = 'water'}, - {position = {x = 0, y = 5}, name = 'deepwater'}, - {position = {x = 0, y = 6}, name = 'dirt-5'}, - {position = {x = 0, y = 7}, name = 'dirt-5'}, - {position = {x = 0, y = 8}, name = 'deepwater'}, - {position = {x = 0, y = 9}, name = 'deepwater'}, - {position = {x = 0, y = 10}, name = 'water-green'}, - {position = {x = 0, y = 11}, name = 'water-green'}, - {position = {x = 0, y = 12}, name = 'deepwater'}, - {position = {x = 0, y = 13}, name = 'deepwater'}, - {position = {x = 0, y = 14}, name = 'refined-concrete'}, - {position = {x = 0, y = 15}, name = 'stone-path'}, - {position = {x = 0, y = 16}, name = 'refined-concrete'}, - {position = {x = 0, y = 17}, name = 'deepwater'}, - {position = {x = 0, y = 18}, name = 'deepwater'}, - {position = {x = 0, y = 19}, name = 'deepwater'}, - {position = {x = 0, y = 20}, name = 'deepwater'}, - {position = {x = 0, y = 21}, name = 'deepwater'}, - {position = {x = 0, y = 22}, name = 'deepwater'}, - {position = {x = 0, y = 23}, name = 'deepwater'}, - {position = {x = 0, y = 24}, name = 'deepwater'}, - {position = {x = 0, y = 25}, name = 'deepwater'}, - {position = {x = 0, y = 26}, name = 'deepwater'}, - {position = {x = 0, y = 27}, name = 'water'}, - {position = {x = 0, y = 28}, name = 'water'}, - {position = {x = 0, y = 29}, name = 'dirt-5'}, - {position = {x = 0, y = 30}, name = 'dirt-5'}, - {position = {x = 0, y = 31}, name = 'dirt-5'}, - {position = {x = 1, y = 0}, name = 'deepwater'}, - {position = {x = 1, y = 1}, name = 'deepwater'}, - {position = {x = 1, y = 2}, name = 'deepwater'}, - {position = {x = 1, y = 3}, name = 'water'}, - {position = {x = 1, y = 4}, name = 'water'}, - {position = {x = 1, y = 5}, name = 'dirt-7'}, - {position = {x = 1, y = 6}, name = 'dirt-7'}, - {position = {x = 1, y = 7}, name = 'dirt-7'}, - {position = {x = 1, y = 8}, name = 'dirt-7'}, - {position = {x = 1, y = 9}, name = 'dirt-7'}, - {position = {x = 1, y = 10}, name = 'water-green'}, - {position = {x = 1, y = 11}, name = 'water-green'}, - {position = {x = 1, y = 12}, name = 'water-green'}, - {position = {x = 1, y = 13}, name = 'deepwater'}, - {position = {x = 1, y = 14}, name = 'refined-concrete'}, - {position = {x = 1, y = 15}, name = 'stone-path'}, - {position = {x = 1, y = 16}, name = 'refined-concrete'}, - {position = {x = 1, y = 17}, name = 'deepwater'}, - {position = {x = 1, y = 18}, name = 'deepwater'}, - {position = {x = 1, y = 19}, name = 'deepwater'}, - {position = {x = 1, y = 20}, name = 'deepwater'}, - {position = {x = 1, y = 21}, name = 'deepwater'}, - {position = {x = 1, y = 22}, name = 'deepwater'}, - {position = {x = 1, y = 23}, name = 'deepwater'}, - {position = {x = 1, y = 24}, name = 'deepwater'}, - {position = {x = 1, y = 25}, name = 'deepwater'}, - {position = {x = 1, y = 26}, name = 'deepwater'}, - {position = {x = 1, y = 27}, name = 'water'}, - {position = {x = 1, y = 28}, name = 'water'}, - {position = {x = 1, y = 29}, name = 'water'}, - {position = {x = 1, y = 30}, name = 'dirt-5'}, - {position = {x = 1, y = 31}, name = 'dirt-5'}, - {position = {x = 2, y = 0}, name = 'deepwater'}, - {position = {x = 2, y = 1}, name = 'deepwater'}, - {position = {x = 2, y = 2}, name = 'deepwater'}, - {position = {x = 2, y = 3}, name = 'water'}, - {position = {x = 2, y = 4}, name = 'dirt-7'}, - {position = {x = 2, y = 5}, name = 'dirt-7'}, - {position = {x = 2, y = 6}, name = 'deepwater'}, - {position = {x = 2, y = 7}, name = 'dirt-7'}, - {position = {x = 2, y = 8}, name = 'deepwater'}, - {position = {x = 2, y = 9}, name = 'dirt-7'}, - {position = {x = 2, y = 10}, name = 'water-green'}, - {position = {x = 2, y = 11}, name = 'water-green'}, - {position = {x = 2, y = 12}, name = 'water-green'}, - {position = {x = 2, y = 13}, name = 'deepwater'}, - {position = {x = 2, y = 14}, name = 'refined-concrete'}, - {position = {x = 2, y = 15}, name = 'refined-concrete'}, - {position = {x = 2, y = 16}, name = 'refined-concrete'}, - {position = {x = 2, y = 17}, name = 'deepwater'}, - {position = {x = 2, y = 18}, name = 'deepwater'}, - {position = {x = 2, y = 19}, name = 'deepwater'}, - {position = {x = 2, y = 20}, name = 'deepwater'}, - {position = {x = 2, y = 21}, name = 'deepwater'}, - {position = {x = 2, y = 22}, name = 'deepwater'}, - {position = {x = 2, y = 23}, name = 'deepwater'}, - {position = {x = 2, y = 24}, name = 'deepwater'}, - {position = {x = 2, y = 25}, name = 'deepwater'}, - {position = {x = 2, y = 26}, name = 'deepwater'}, - {position = {x = 2, y = 27}, name = 'deepwater'}, - {position = {x = 2, y = 28}, name = 'water'}, - {position = {x = 2, y = 29}, name = 'water'}, - {position = {x = 2, y = 30}, name = 'water'}, - {position = {x = 2, y = 31}, name = 'dirt-5'}, - {position = {x = 3, y = 0}, name = 'deepwater'}, - {position = {x = 3, y = 1}, name = 'deepwater'}, - {position = {x = 3, y = 2}, name = 'deepwater'}, - {position = {x = 3, y = 3}, name = 'water'}, - {position = {x = 3, y = 4}, name = 'water'}, - {position = {x = 3, y = 5}, name = 'water'}, - {position = {x = 3, y = 6}, name = 'dirt-7'}, - {position = {x = 3, y = 7}, name = 'dirt-7'}, - {position = {x = 3, y = 8}, name = 'dirt-5'}, - {position = {x = 3, y = 9}, name = 'dirt-7'}, - {position = {x = 3, y = 10}, name = 'deepwater'}, - {position = {x = 3, y = 11}, name = 'water-green'}, - {position = {x = 3, y = 12}, name = 'water-green'}, - {position = {x = 3, y = 13}, name = 'deepwater'}, - {position = {x = 3, y = 14}, name = 'refined-concrete'}, - {position = {x = 3, y = 15}, name = 'refined-concrete'}, - {position = {x = 3, y = 16}, name = 'refined-concrete'}, - {position = {x = 3, y = 17}, name = 'deepwater'}, - {position = {x = 3, y = 18}, name = 'deepwater'}, - {position = {x = 3, y = 19}, name = 'deepwater'}, - {position = {x = 3, y = 20}, name = 'deepwater'}, - {position = {x = 3, y = 21}, name = 'deepwater'}, - {position = {x = 3, y = 22}, name = 'deepwater'}, - {position = {x = 3, y = 23}, name = 'deepwater'}, - {position = {x = 3, y = 24}, name = 'deepwater'}, - {position = {x = 3, y = 25}, name = 'deepwater'}, - {position = {x = 3, y = 26}, name = 'deepwater'}, - {position = {x = 3, y = 27}, name = 'deepwater'}, - {position = {x = 3, y = 28}, name = 'water'}, - {position = {x = 3, y = 29}, name = 'water'}, - {position = {x = 3, y = 30}, name = 'water'}, - {position = {x = 3, y = 31}, name = 'water'}, - {position = {x = 4, y = 0}, name = 'deepwater'}, - {position = {x = 4, y = 1}, name = 'deepwater'}, - {position = {x = 4, y = 2}, name = 'deepwater'}, - {position = {x = 4, y = 3}, name = 'water'}, - {position = {x = 4, y = 4}, name = 'water'}, - {position = {x = 4, y = 5}, name = 'water'}, - {position = {x = 4, y = 6}, name = 'dirt-7'}, - {position = {x = 4, y = 7}, name = 'dirt-7'}, - {position = {x = 4, y = 8}, name = 'dirt-7'}, - {position = {x = 4, y = 9}, name = 'dirt-7'}, - {position = {x = 4, y = 10}, name = 'deepwater'}, - {position = {x = 4, y = 11}, name = 'water-green'}, - {position = {x = 4, y = 12}, name = 'water-green'}, - {position = {x = 4, y = 13}, name = 'deepwater'}, - {position = {x = 4, y = 14}, name = 'refined-concrete'}, - {position = {x = 4, y = 15}, name = 'stone-path'}, - {position = {x = 4, y = 16}, name = 'refined-concrete'}, - {position = {x = 4, y = 17}, name = 'deepwater'}, - {position = {x = 4, y = 18}, name = 'deepwater'}, - {position = {x = 4, y = 19}, name = 'deepwater'}, - {position = {x = 4, y = 20}, name = 'deepwater'}, - {position = {x = 4, y = 21}, name = 'deepwater'}, - {position = {x = 4, y = 22}, name = 'deepwater'}, - {position = {x = 4, y = 23}, name = 'deepwater'}, - {position = {x = 4, y = 24}, name = 'deepwater'}, - {position = {x = 4, y = 25}, name = 'deepwater'}, - {position = {x = 4, y = 26}, name = 'deepwater'}, - {position = {x = 4, y = 27}, name = 'deepwater'}, - {position = {x = 4, y = 28}, name = 'deepwater'}, - {position = {x = 4, y = 29}, name = 'water'}, - {position = {x = 4, y = 30}, name = 'water'}, - {position = {x = 4, y = 31}, name = 'water'}, - {position = {x = 5, y = 0}, name = 'deepwater'}, - {position = {x = 5, y = 1}, name = 'deepwater'}, - {position = {x = 5, y = 2}, name = 'water'}, - {position = {x = 5, y = 3}, name = 'water'}, - {position = {x = 5, y = 4}, name = 'dirt-7'}, - {position = {x = 5, y = 5}, name = 'dirt-7'}, - {position = {x = 5, y = 6}, name = 'dirt-7'}, - {position = {x = 5, y = 7}, name = 'dirt-7'}, - {position = {x = 5, y = 8}, name = 'dirt-7'}, - {position = {x = 5, y = 9}, name = 'water-green'}, - {position = {x = 5, y = 10}, name = 'water-green'}, - {position = {x = 5, y = 11}, name = 'water-green'}, - {position = {x = 5, y = 12}, name = 'water-green'}, - {position = {x = 5, y = 13}, name = 'deepwater'}, - {position = {x = 5, y = 14}, name = 'refined-concrete'}, - {position = {x = 5, y = 15}, name = 'stone-path'}, - {position = {x = 5, y = 16}, name = 'refined-concrete'}, - {position = {x = 5, y = 17}, name = 'deepwater'}, - {position = {x = 5, y = 18}, name = 'deepwater'}, - {position = {x = 5, y = 19}, name = 'deepwater'}, - {position = {x = 5, y = 20}, name = 'deepwater'}, - {position = {x = 5, y = 21}, name = 'deepwater'}, - {position = {x = 5, y = 22}, name = 'deepwater'}, - {position = {x = 5, y = 23}, name = 'deepwater'}, - {position = {x = 5, y = 24}, name = 'deepwater'}, - {position = {x = 5, y = 25}, name = 'deepwater'}, - {position = {x = 5, y = 26}, name = 'deepwater'}, - {position = {x = 5, y = 27}, name = 'deepwater'}, - {position = {x = 5, y = 28}, name = 'water'}, - {position = {x = 5, y = 29}, name = 'water'}, - {position = {x = 5, y = 30}, name = 'water'}, - {position = {x = 5, y = 31}, name = 'water'}, - {position = {x = 6, y = 0}, name = 'deepwater'}, - {position = {x = 6, y = 1}, name = 'deepwater'}, - {position = {x = 6, y = 2}, name = 'water'}, - {position = {x = 6, y = 3}, name = 'water'}, - {position = {x = 6, y = 4}, name = 'dirt-7'}, - {position = {x = 6, y = 5}, name = 'dirt-7'}, - {position = {x = 6, y = 6}, name = 'dirt-7'}, - {position = {x = 6, y = 7}, name = 'dirt-7'}, - {position = {x = 6, y = 8}, name = 'dirt-7'}, - {position = {x = 6, y = 9}, name = 'water'}, - {position = {x = 6, y = 10}, name = 'water'}, - {position = {x = 6, y = 11}, name = 'water-green'}, - {position = {x = 6, y = 12}, name = 'deepwater'}, - {position = {x = 6, y = 13}, name = 'deepwater'}, - {position = {x = 6, y = 14}, name = 'refined-concrete'}, - {position = {x = 6, y = 15}, name = 'refined-concrete'}, - {position = {x = 6, y = 16}, name = 'refined-concrete'}, - {position = {x = 6, y = 17}, name = 'deepwater'}, - {position = {x = 6, y = 18}, name = 'deepwater'}, - {position = {x = 6, y = 19}, name = 'deepwater'}, - {position = {x = 6, y = 20}, name = 'deepwater'}, - {position = {x = 6, y = 21}, name = 'deepwater'}, - {position = {x = 6, y = 22}, name = 'deepwater'}, - {position = {x = 6, y = 23}, name = 'deepwater'}, - {position = {x = 6, y = 24}, name = 'deepwater'}, - {position = {x = 6, y = 25}, name = 'deepwater'}, - {position = {x = 6, y = 26}, name = 'deepwater'}, - {position = {x = 6, y = 27}, name = 'deepwater'}, - {position = {x = 6, y = 28}, name = 'water'}, - {position = {x = 6, y = 29}, name = 'water'}, - {position = {x = 6, y = 30}, name = 'water'}, - {position = {x = 6, y = 31}, name = 'dirt-5'}, - {position = {x = 7, y = 0}, name = 'deepwater'}, - {position = {x = 7, y = 1}, name = 'deepwater'}, - {position = {x = 7, y = 2}, name = 'water'}, - {position = {x = 7, y = 3}, name = 'water'}, - {position = {x = 7, y = 4}, name = 'dirt-7'}, - {position = {x = 7, y = 5}, name = 'dirt-7'}, - {position = {x = 7, y = 6}, name = 'dirt-7'}, - {position = {x = 7, y = 7}, name = 'dirt-7'}, - {position = {x = 7, y = 8}, name = 'dirt-7'}, - {position = {x = 7, y = 9}, name = 'water'}, - {position = {x = 7, y = 10}, name = 'water'}, - {position = {x = 7, y = 11}, name = 'water-green'}, - {position = {x = 7, y = 12}, name = 'deepwater'}, - {position = {x = 7, y = 13}, name = 'deepwater'}, - {position = {x = 7, y = 14}, name = 'refined-concrete'}, - {position = {x = 7, y = 15}, name = 'refined-concrete'}, - {position = {x = 7, y = 16}, name = 'refined-concrete'}, - {position = {x = 7, y = 17}, name = 'deepwater'}, - {position = {x = 7, y = 18}, name = 'deepwater'}, - {position = {x = 7, y = 19}, name = 'deepwater'}, - {position = {x = 7, y = 20}, name = 'deepwater'}, - {position = {x = 7, y = 21}, name = 'deepwater'}, - {position = {x = 7, y = 22}, name = 'deepwater'}, - {position = {x = 7, y = 23}, name = 'deepwater'}, - {position = {x = 7, y = 24}, name = 'deepwater'}, - {position = {x = 7, y = 25}, name = 'deepwater'}, - {position = {x = 7, y = 26}, name = 'deepwater'}, - {position = {x = 7, y = 27}, name = 'deepwater'}, - {position = {x = 7, y = 28}, name = 'deepwater'}, - {position = {x = 7, y = 29}, name = 'deepwater'}, - {position = {x = 7, y = 30}, name = 'deepwater'}, - {position = {x = 7, y = 31}, name = 'dirt-5'}, - {position = {x = 8, y = 0}, name = 'deepwater'}, - {position = {x = 8, y = 1}, name = 'deepwater'}, - {position = {x = 8, y = 2}, name = 'water'}, - {position = {x = 8, y = 3}, name = 'dirt-7'}, - {position = {x = 8, y = 4}, name = 'dirt-7'}, - {position = {x = 8, y = 5}, name = 'dirt-7'}, - {position = {x = 8, y = 6}, name = 'dirt-7'}, - {position = {x = 8, y = 7}, name = 'deepwater'}, - {position = {x = 8, y = 8}, name = 'deepwater'}, - {position = {x = 8, y = 9}, name = 'water-green'}, - {position = {x = 8, y = 10}, name = 'water-green'}, - {position = {x = 8, y = 11}, name = 'deepwater'}, - {position = {x = 8, y = 12}, name = 'deepwater'}, - {position = {x = 8, y = 13}, name = 'deepwater'}, - {position = {x = 8, y = 14}, name = 'refined-concrete'}, - {position = {x = 8, y = 15}, name = 'stone-path'}, - {position = {x = 8, y = 16}, name = 'refined-concrete'}, - {position = {x = 8, y = 17}, name = 'deepwater'}, - {position = {x = 8, y = 18}, name = 'deepwater'}, - {position = {x = 8, y = 19}, name = 'deepwater'}, - {position = {x = 8, y = 20}, name = 'deepwater'}, - {position = {x = 8, y = 21}, name = 'deepwater'}, - {position = {x = 8, y = 22}, name = 'deepwater'}, - {position = {x = 8, y = 23}, name = 'deepwater'}, - {position = {x = 8, y = 24}, name = 'deepwater'}, - {position = {x = 8, y = 25}, name = 'deepwater'}, - {position = {x = 8, y = 26}, name = 'deepwater'}, - {position = {x = 8, y = 27}, name = 'deepwater'}, - {position = {x = 8, y = 28}, name = 'deepwater'}, - {position = {x = 8, y = 29}, name = 'deepwater'}, - {position = {x = 8, y = 30}, name = 'dirt-5'}, - {position = {x = 8, y = 31}, name = 'dirt-5'}, - {position = {x = 9, y = 0}, name = 'deepwater'}, - {position = {x = 9, y = 1}, name = 'water'}, - {position = {x = 9, y = 2}, name = 'water'}, - {position = {x = 9, y = 3}, name = 'dirt-7'}, - {position = {x = 9, y = 4}, name = 'dirt-7'}, - {position = {x = 9, y = 5}, name = 'dirt-7'}, - {position = {x = 9, y = 6}, name = 'deepwater'}, - {position = {x = 9, y = 7}, name = 'water'}, - {position = {x = 9, y = 8}, name = 'water'}, - {position = {x = 9, y = 9}, name = 'water-green'}, - {position = {x = 9, y = 10}, name = 'water-green'}, - {position = {x = 9, y = 11}, name = 'deepwater'}, - {position = {x = 9, y = 12}, name = 'deepwater'}, - {position = {x = 9, y = 13}, name = 'deepwater'}, - {position = {x = 9, y = 14}, name = 'refined-concrete'}, - {position = {x = 9, y = 15}, name = 'stone-path'}, - {position = {x = 9, y = 16}, name = 'refined-concrete'}, - {position = {x = 9, y = 17}, name = 'deepwater'}, - {position = {x = 9, y = 18}, name = 'deepwater'}, - {position = {x = 9, y = 19}, name = 'deepwater'}, - {position = {x = 9, y = 20}, name = 'deepwater'}, - {position = {x = 9, y = 21}, name = 'deepwater'}, - {position = {x = 9, y = 22}, name = 'deepwater'}, - {position = {x = 9, y = 23}, name = 'deepwater'}, - {position = {x = 9, y = 24}, name = 'deepwater'}, - {position = {x = 9, y = 25}, name = 'deepwater'}, - {position = {x = 9, y = 26}, name = 'deepwater'}, - {position = {x = 9, y = 27}, name = 'deepwater'}, - {position = {x = 9, y = 28}, name = 'deepwater'}, - {position = {x = 9, y = 29}, name = 'deepwater'}, - {position = {x = 9, y = 30}, name = 'dirt-5'}, - {position = {x = 9, y = 31}, name = 'dirt-5'}, - {position = {x = 10, y = 0}, name = 'deepwater'}, - {position = {x = 10, y = 1}, name = 'water'}, - {position = {x = 10, y = 2}, name = 'dirt-7'}, - {position = {x = 10, y = 3}, name = 'dirt-7'}, - {position = {x = 10, y = 4}, name = 'dirt-7'}, - {position = {x = 10, y = 5}, name = 'dirt-7'}, - {position = {x = 10, y = 6}, name = 'deepwater'}, - {position = {x = 10, y = 7}, name = 'water'}, - {position = {x = 10, y = 8}, name = 'water'}, - {position = {x = 10, y = 9}, name = 'water'}, - {position = {x = 10, y = 10}, name = 'deepwater'}, - {position = {x = 10, y = 11}, name = 'deepwater'}, - {position = {x = 10, y = 12}, name = 'deepwater'}, - {position = {x = 10, y = 13}, name = 'deepwater'}, - {position = {x = 10, y = 14}, name = 'refined-concrete'}, - {position = {x = 10, y = 15}, name = 'refined-concrete'}, - {position = {x = 10, y = 16}, name = 'refined-concrete'}, - {position = {x = 10, y = 17}, name = 'deepwater'}, - {position = {x = 10, y = 18}, name = 'deepwater'}, - {position = {x = 10, y = 19}, name = 'deepwater'}, - {position = {x = 10, y = 20}, name = 'deepwater'}, - {position = {x = 10, y = 21}, name = 'deepwater'}, - {position = {x = 10, y = 22}, name = 'deepwater'}, - {position = {x = 10, y = 23}, name = 'deepwater'}, - {position = {x = 10, y = 24}, name = 'deepwater'}, - {position = {x = 10, y = 25}, name = 'deepwater'}, - {position = {x = 10, y = 26}, name = 'deepwater'}, - {position = {x = 10, y = 27}, name = 'deepwater'}, - {position = {x = 10, y = 28}, name = 'deepwater'}, - {position = {x = 10, y = 29}, name = 'dirt-5'}, - {position = {x = 10, y = 30}, name = 'dirt-5'}, - {position = {x = 10, y = 31}, name = 'dirt-5'}, - {position = {x = 11, y = 0}, name = 'deepwater'}, - {position = {x = 11, y = 1}, name = 'deepwater'}, - {position = {x = 11, y = 2}, name = 'water'}, - {position = {x = 11, y = 3}, name = 'water'}, - {position = {x = 11, y = 4}, name = 'water'}, - {position = {x = 11, y = 5}, name = 'water'}, - {position = {x = 11, y = 6}, name = 'water'}, - {position = {x = 11, y = 7}, name = 'water'}, - {position = {x = 11, y = 8}, name = 'water'}, - {position = {x = 11, y = 9}, name = 'deepwater'}, - {position = {x = 11, y = 10}, name = 'deepwater'}, - {position = {x = 11, y = 11}, name = 'deepwater'}, - {position = {x = 11, y = 12}, name = 'deepwater'}, - {position = {x = 11, y = 13}, name = 'deepwater'}, - {position = {x = 11, y = 14}, name = 'refined-concrete'}, - {position = {x = 11, y = 15}, name = 'refined-concrete'}, - {position = {x = 11, y = 16}, name = 'refined-concrete'}, - {position = {x = 11, y = 17}, name = 'deepwater'}, - {position = {x = 11, y = 18}, name = 'deepwater'}, - {position = {x = 11, y = 19}, name = 'deepwater'}, - {position = {x = 11, y = 20}, name = 'deepwater'}, - {position = {x = 11, y = 21}, name = 'deepwater'}, - {position = {x = 11, y = 22}, name = 'deepwater'}, - {position = {x = 11, y = 23}, name = 'deepwater'}, - {position = {x = 11, y = 24}, name = 'deepwater'}, - {position = {x = 11, y = 25}, name = 'deepwater'}, - {position = {x = 11, y = 26}, name = 'deepwater'}, - {position = {x = 11, y = 27}, name = 'deepwater'}, - {position = {x = 11, y = 28}, name = 'deepwater'}, - {position = {x = 11, y = 29}, name = 'dirt-5'}, - {position = {x = 11, y = 30}, name = 'dirt-5'}, - {position = {x = 11, y = 31}, name = 'dirt-5'}, - {position = {x = 12, y = 0}, name = 'deepwater'}, - {position = {x = 12, y = 1}, name = 'deepwater'}, - {position = {x = 12, y = 2}, name = 'water'}, - {position = {x = 12, y = 3}, name = 'water'}, - {position = {x = 12, y = 4}, name = 'water'}, - {position = {x = 12, y = 5}, name = 'water'}, - {position = {x = 12, y = 6}, name = 'water'}, - {position = {x = 12, y = 7}, name = 'water'}, - {position = {x = 12, y = 8}, name = 'water'}, - {position = {x = 12, y = 9}, name = 'deepwater'}, - {position = {x = 12, y = 10}, name = 'deepwater'}, - {position = {x = 12, y = 11}, name = 'deepwater'}, - {position = {x = 12, y = 12}, name = 'deepwater'}, - {position = {x = 12, y = 13}, name = 'deepwater'}, - {position = {x = 12, y = 14}, name = 'refined-concrete'}, - {position = {x = 12, y = 15}, name = 'refined-concrete'}, - {position = {x = 12, y = 16}, name = 'refined-concrete'}, - {position = {x = 12, y = 17}, name = 'deepwater'}, - {position = {x = 12, y = 18}, name = 'deepwater'}, - {position = {x = 12, y = 19}, name = 'deepwater'}, - {position = {x = 12, y = 20}, name = 'deepwater'}, - {position = {x = 12, y = 21}, name = 'deepwater'}, - {position = {x = 12, y = 22}, name = 'deepwater'}, - {position = {x = 12, y = 23}, name = 'deepwater'}, - {position = {x = 12, y = 24}, name = 'deepwater'}, - {position = {x = 12, y = 25}, name = 'dirt-5'}, - {position = {x = 12, y = 26}, name = 'dirt-5'}, - {position = {x = 12, y = 27}, name = 'dirt-5'}, - {position = {x = 12, y = 28}, name = 'dirt-5'}, - {position = {x = 12, y = 29}, name = 'dirt-5'}, - {position = {x = 12, y = 30}, name = 'dirt-5'}, - {position = {x = 12, y = 31}, name = 'dirt-5'}, - {position = {x = 13, y = 0}, name = 'deepwater'}, - {position = {x = 13, y = 1}, name = 'deepwater'}, - {position = {x = 13, y = 2}, name = 'deepwater'}, - {position = {x = 13, y = 3}, name = 'deepwater'}, - {position = {x = 13, y = 4}, name = 'deepwater'}, - {position = {x = 13, y = 5}, name = 'deepwater'}, - {position = {x = 13, y = 6}, name = 'water'}, - {position = {x = 13, y = 7}, name = 'water'}, - {position = {x = 13, y = 8}, name = 'water'}, - {position = {x = 13, y = 9}, name = 'deepwater'}, - {position = {x = 13, y = 10}, name = 'deepwater'}, - {position = {x = 13, y = 11}, name = 'deepwater'}, - {position = {x = 13, y = 12}, name = 'deepwater'}, - {position = {x = 13, y = 13}, name = 'deepwater'}, - {position = {x = 13, y = 14}, name = 'refined-concrete'}, - {position = {x = 13, y = 15}, name = 'refined-concrete'}, - {position = {x = 13, y = 16}, name = 'refined-concrete'}, - {position = {x = 13, y = 17}, name = 'deepwater'}, - {position = {x = 13, y = 18}, name = 'deepwater'}, - {position = {x = 13, y = 19}, name = 'deepwater'}, - {position = {x = 13, y = 20}, name = 'deepwater'}, - {position = {x = 13, y = 21}, name = 'deepwater'}, - {position = {x = 13, y = 22}, name = 'dirt-5'}, - {position = {x = 13, y = 23}, name = 'dirt-5'}, - {position = {x = 13, y = 24}, name = 'dirt-5'}, - {position = {x = 13, y = 25}, name = 'dirt-5'}, - {position = {x = 13, y = 26}, name = 'dirt-5'}, - {position = {x = 13, y = 27}, name = 'dirt-5'}, - {position = {x = 13, y = 28}, name = 'dirt-5'}, - {position = {x = 13, y = 29}, name = 'dirt-5'}, - {position = {x = 13, y = 30}, name = 'dirt-5'}, - {position = {x = 13, y = 31}, name = 'dirt-5'}, - {position = {x = 14, y = 0}, name = 'deepwater'}, - {position = {x = 14, y = 1}, name = 'deepwater'}, - {position = {x = 14, y = 2}, name = 'deepwater'}, - {position = {x = 14, y = 3}, name = 'deepwater'}, - {position = {x = 14, y = 4}, name = 'deepwater'}, - {position = {x = 14, y = 5}, name = 'deepwater'}, - {position = {x = 14, y = 6}, name = 'deepwater'}, - {position = {x = 14, y = 7}, name = 'deepwater'}, - {position = {x = 14, y = 8}, name = 'deepwater'}, - {position = {x = 14, y = 9}, name = 'deepwater'}, - {position = {x = 14, y = 10}, name = 'deepwater'}, - {position = {x = 14, y = 11}, name = 'deepwater'}, - {position = {x = 14, y = 12}, name = 'deepwater'}, - {position = {x = 14, y = 13}, name = 'refined-concrete'}, - {position = {x = 14, y = 14}, name = 'stone-path'}, - {position = {x = 14, y = 15}, name = 'stone-path'}, - {position = {x = 14, y = 16}, name = 'stone-path'}, - {position = {x = 14, y = 17}, name = 'refined-concrete'}, - {position = {x = 14, y = 18}, name = 'deepwater'}, - {position = {x = 14, y = 19}, name = 'deepwater'}, - {position = {x = 14, y = 20}, name = 'deepwater'}, - {position = {x = 14, y = 21}, name = 'deepwater'}, - {position = {x = 14, y = 22}, name = 'dirt-5'}, - {position = {x = 14, y = 23}, name = 'dirt-5'}, - {position = {x = 14, y = 24}, name = 'dirt-5'}, - {position = {x = 14, y = 25}, name = 'dirt-5'}, - {position = {x = 14, y = 26}, name = 'dirt-5'}, - {position = {x = 14, y = 27}, name = 'dirt-5'}, - {position = {x = 14, y = 28}, name = 'dirt-5'}, - {position = {x = 14, y = 29}, name = 'dirt-5'}, - {position = {x = 14, y = 30}, name = 'dirt-5'}, - {position = {x = 14, y = 31}, name = 'dirt-5'}, - {position = {x = 15, y = 0}, name = 'refined-concrete'}, - {position = {x = 15, y = 1}, name = 'refined-concrete'}, - {position = {x = 15, y = 2}, name = 'refined-concrete'}, - {position = {x = 15, y = 3}, name = 'refined-concrete'}, - {position = {x = 15, y = 4}, name = 'dirt-5'}, - {position = {x = 15, y = 5}, name = 'dirt-5'}, - {position = {x = 15, y = 6}, name = 'refined-concrete'}, - {position = {x = 15, y = 7}, name = 'refined-concrete'}, - {position = {x = 15, y = 8}, name = 'refined-concrete'}, - {position = {x = 15, y = 9}, name = 'refined-concrete'}, - {position = {x = 15, y = 10}, name = 'refined-concrete'}, - {position = {x = 15, y = 11}, name = 'refined-concrete'}, - {position = {x = 15, y = 12}, name = 'refined-concrete'}, - {position = {x = 15, y = 13}, name = 'stone-path'}, - {position = {x = 15, y = 14}, name = 'water-green'}, - {position = {x = 15, y = 15}, name = 'grass-1'}, - {position = {x = 15, y = 16}, name = 'water-green'}, - {position = {x = 15, y = 17}, name = 'stone-path'}, - {position = {x = 15, y = 18}, name = 'refined-concrete'}, - {position = {x = 15, y = 19}, name = 'refined-concrete'}, - {position = {x = 15, y = 20}, name = 'refined-concrete'}, - {position = {x = 15, y = 21}, name = 'refined-concrete'}, - {position = {x = 15, y = 22}, name = 'dirt-5'}, - {position = {x = 15, y = 23}, name = 'dirt-5'}, - {position = {x = 15, y = 24}, name = 'refined-concrete'}, - {position = {x = 15, y = 25}, name = 'refined-concrete'}, - {position = {x = 15, y = 26}, name = 'refined-concrete'}, - {position = {x = 15, y = 27}, name = 'dirt-5'}, - {position = {x = 15, y = 28}, name = 'dirt-5'}, - {position = {x = 15, y = 29}, name = 'refined-concrete'}, - {position = {x = 15, y = 30}, name = 'dirt-5'}, - {position = {x = 15, y = 31}, name = 'dirt-5'}, - {position = {x = 16, y = 0}, name = 'stone-path'}, - {position = {x = 16, y = 1}, name = 'dirt-5'}, - {position = {x = 16, y = 2}, name = 'dirt-5'}, - {position = {x = 16, y = 3}, name = 'refined-concrete'}, - {position = {x = 16, y = 4}, name = 'dirt-5'}, - {position = {x = 16, y = 5}, name = 'dirt-5'}, - {position = {x = 16, y = 6}, name = 'refined-concrete'}, - {position = {x = 16, y = 7}, name = 'refined-concrete'}, - {position = {x = 16, y = 8}, name = 'stone-path'}, - {position = {x = 16, y = 9}, name = 'stone-path'}, - {position = {x = 16, y = 10}, name = 'refined-concrete'}, - {position = {x = 16, y = 11}, name = 'refined-concrete'}, - {position = {x = 16, y = 12}, name = 'refined-concrete'}, - {position = {x = 16, y = 13}, name = 'stone-path'}, - {position = {x = 16, y = 14}, name = 'grass-1'}, - {position = {x = 16, y = 15}, name = 'grass-1'}, - {position = {x = 16, y = 16}, name = 'grass-1'}, - {position = {x = 16, y = 17}, name = 'stone-path'}, - {position = {x = 16, y = 18}, name = 'refined-concrete'}, - {position = {x = 16, y = 19}, name = 'refined-concrete'}, - {position = {x = 16, y = 20}, name = 'refined-concrete'}, - {position = {x = 16, y = 21}, name = 'refined-concrete'}, - {position = {x = 16, y = 22}, name = 'stone-path'}, - {position = {x = 16, y = 23}, name = 'stone-path'}, - {position = {x = 16, y = 24}, name = 'refined-concrete'}, - {position = {x = 16, y = 25}, name = 'refined-concrete'}, - {position = {x = 16, y = 26}, name = 'stone-path'}, - {position = {x = 16, y = 27}, name = 'dirt-5'}, - {position = {x = 16, y = 28}, name = 'dirt-5'}, - {position = {x = 16, y = 29}, name = 'refined-concrete'}, - {position = {x = 16, y = 30}, name = 'stone-path'}, - {position = {x = 16, y = 31}, name = 'stone-path'}, - {position = {x = 17, y = 0}, name = 'refined-concrete'}, - {position = {x = 17, y = 1}, name = 'dirt-5'}, - {position = {x = 17, y = 2}, name = 'dirt-5'}, - {position = {x = 17, y = 3}, name = 'refined-concrete'}, - {position = {x = 17, y = 4}, name = 'refined-concrete'}, - {position = {x = 17, y = 5}, name = 'refined-concrete'}, - {position = {x = 17, y = 6}, name = 'refined-concrete'}, - {position = {x = 17, y = 7}, name = 'refined-concrete'}, - {position = {x = 17, y = 8}, name = 'refined-concrete'}, - {position = {x = 17, y = 9}, name = 'refined-concrete'}, - {position = {x = 17, y = 10}, name = 'refined-concrete'}, - {position = {x = 17, y = 11}, name = 'refined-concrete'}, - {position = {x = 17, y = 12}, name = 'refined-concrete'}, - {position = {x = 17, y = 13}, name = 'stone-path'}, - {position = {x = 17, y = 14}, name = 'water-green'}, - {position = {x = 17, y = 15}, name = 'grass-1'}, - {position = {x = 17, y = 16}, name = 'water-green'}, - {position = {x = 17, y = 17}, name = 'stone-path'}, - {position = {x = 17, y = 18}, name = 'refined-concrete'}, - {position = {x = 17, y = 19}, name = 'refined-concrete'}, - {position = {x = 17, y = 20}, name = 'refined-concrete'}, - {position = {x = 17, y = 21}, name = 'refined-concrete'}, - {position = {x = 17, y = 22}, name = 'refined-concrete'}, - {position = {x = 17, y = 23}, name = 'refined-concrete'}, - {position = {x = 17, y = 24}, name = 'dirt-5'}, - {position = {x = 17, y = 25}, name = 'dirt-5'}, - {position = {x = 17, y = 26}, name = 'refined-concrete'}, - {position = {x = 17, y = 27}, name = 'refined-concrete'}, - {position = {x = 17, y = 28}, name = 'refined-concrete'}, - {position = {x = 17, y = 29}, name = 'refined-concrete'}, - {position = {x = 17, y = 30}, name = 'refined-concrete'}, - {position = {x = 17, y = 31}, name = 'refined-concrete'}, - {position = {x = 18, y = 0}, name = 'dirt-5'}, - {position = {x = 18, y = 1}, name = 'dirt-5'}, - {position = {x = 18, y = 2}, name = 'deepwater'}, - {position = {x = 18, y = 3}, name = 'deepwater'}, - {position = {x = 18, y = 4}, name = 'water'}, - {position = {x = 18, y = 5}, name = 'water'}, - {position = {x = 18, y = 6}, name = 'deepwater'}, - {position = {x = 18, y = 7}, name = 'deepwater'}, - {position = {x = 18, y = 8}, name = 'deepwater'}, - {position = {x = 18, y = 9}, name = 'deepwater'}, - {position = {x = 18, y = 10}, name = 'deepwater'}, - {position = {x = 18, y = 11}, name = 'deepwater'}, - {position = {x = 18, y = 12}, name = 'deepwater'}, - {position = {x = 18, y = 13}, name = 'refined-concrete'}, - {position = {x = 18, y = 14}, name = 'stone-path'}, - {position = {x = 18, y = 15}, name = 'stone-path'}, - {position = {x = 18, y = 16}, name = 'stone-path'}, - {position = {x = 18, y = 17}, name = 'refined-concrete'}, - {position = {x = 18, y = 18}, name = 'deepwater'}, - {position = {x = 18, y = 19}, name = 'deepwater'}, - {position = {x = 18, y = 20}, name = 'deepwater'}, - {position = {x = 18, y = 21}, name = 'deepwater'}, - {position = {x = 18, y = 22}, name = 'deepwater'}, - {position = {x = 18, y = 23}, name = 'deepwater'}, - {position = {x = 18, y = 24}, name = 'dirt-5'}, - {position = {x = 18, y = 25}, name = 'dirt-5'}, - {position = {x = 18, y = 26}, name = 'deepwater'}, - {position = {x = 18, y = 27}, name = 'deepwater'}, - {position = {x = 18, y = 28}, name = 'deepwater'}, - {position = {x = 18, y = 29}, name = 'deepwater'}, - {position = {x = 18, y = 30}, name = 'deepwater'}, - {position = {x = 18, y = 31}, name = 'deepwater'}, - {position = {x = 19, y = 0}, name = 'dirt-5'}, - {position = {x = 19, y = 1}, name = 'dirt-5'}, - {position = {x = 19, y = 2}, name = 'water'}, - {position = {x = 19, y = 3}, name = 'water'}, - {position = {x = 19, y = 4}, name = 'water'}, - {position = {x = 19, y = 5}, name = 'water'}, - {position = {x = 19, y = 6}, name = 'water'}, - {position = {x = 19, y = 7}, name = 'deepwater'}, - {position = {x = 19, y = 8}, name = 'deepwater'}, - {position = {x = 19, y = 9}, name = 'water'}, - {position = {x = 19, y = 10}, name = 'water'}, - {position = {x = 19, y = 11}, name = 'deepwater'}, - {position = {x = 19, y = 12}, name = 'deepwater'}, - {position = {x = 19, y = 13}, name = 'deepwater'}, - {position = {x = 19, y = 14}, name = 'refined-concrete'}, - {position = {x = 19, y = 15}, name = 'refined-concrete'}, - {position = {x = 19, y = 16}, name = 'refined-concrete'}, - {position = {x = 19, y = 17}, name = 'deepwater'}, - {position = {x = 19, y = 18}, name = 'deepwater'}, - {position = {x = 19, y = 19}, name = 'deepwater'}, - {position = {x = 19, y = 20}, name = 'deepwater'}, - {position = {x = 19, y = 21}, name = 'deepwater'}, - {position = {x = 19, y = 22}, name = 'deepwater'}, - {position = {x = 19, y = 23}, name = 'deepwater'}, - {position = {x = 19, y = 24}, name = 'dirt-5'}, - {position = {x = 19, y = 25}, name = 'dirt-5'}, - {position = {x = 19, y = 26}, name = 'deepwater'}, - {position = {x = 19, y = 27}, name = 'deepwater'}, - {position = {x = 19, y = 28}, name = 'deepwater'}, - {position = {x = 19, y = 29}, name = 'deepwater'}, - {position = {x = 19, y = 30}, name = 'deepwater'}, - {position = {x = 19, y = 31}, name = 'deepwater'}, - {position = {x = 20, y = 0}, name = 'dirt-5'}, - {position = {x = 20, y = 1}, name = 'dirt-5'}, - {position = {x = 20, y = 2}, name = 'water'}, - {position = {x = 20, y = 3}, name = 'water'}, - {position = {x = 20, y = 4}, name = 'water'}, - {position = {x = 20, y = 5}, name = 'water'}, - {position = {x = 20, y = 6}, name = 'water'}, - {position = {x = 20, y = 7}, name = 'deepwater'}, - {position = {x = 20, y = 8}, name = 'deepwater'}, - {position = {x = 20, y = 9}, name = 'water'}, - {position = {x = 20, y = 10}, name = 'water'}, - {position = {x = 20, y = 11}, name = 'deepwater'}, - {position = {x = 20, y = 12}, name = 'deepwater'}, - {position = {x = 20, y = 13}, name = 'deepwater'}, - {position = {x = 20, y = 14}, name = 'refined-concrete'}, - {position = {x = 20, y = 15}, name = 'refined-concrete'}, - {position = {x = 20, y = 16}, name = 'refined-concrete'}, - {position = {x = 20, y = 17}, name = 'deepwater'}, - {position = {x = 20, y = 18}, name = 'deepwater'}, - {position = {x = 20, y = 19}, name = 'deepwater'}, - {position = {x = 20, y = 20}, name = 'deepwater'}, - {position = {x = 20, y = 21}, name = 'deepwater'}, - {position = {x = 20, y = 22}, name = 'deepwater'}, - {position = {x = 20, y = 23}, name = 'deepwater'}, - {position = {x = 20, y = 24}, name = 'dirt-5'}, - {position = {x = 20, y = 25}, name = 'dirt-5'}, - {position = {x = 20, y = 26}, name = 'dirt-5'}, - {position = {x = 20, y = 27}, name = 'dirt-5'}, - {position = {x = 20, y = 28}, name = 'deepwater'}, - {position = {x = 20, y = 29}, name = 'deepwater'}, - {position = {x = 20, y = 30}, name = 'deepwater'}, - {position = {x = 20, y = 31}, name = 'deepwater'}, - {position = {x = 21, y = 0}, name = 'dirt-5'}, - {position = {x = 21, y = 1}, name = 'dirt-5'}, - {position = {x = 21, y = 2}, name = 'dirt-5'}, - {position = {x = 21, y = 3}, name = 'dirt-5'}, - {position = {x = 21, y = 4}, name = 'dirt-5'}, - {position = {x = 21, y = 5}, name = 'water'}, - {position = {x = 21, y = 6}, name = 'water'}, - {position = {x = 21, y = 7}, name = 'water'}, - {position = {x = 21, y = 8}, name = 'water'}, - {position = {x = 21, y = 9}, name = 'water'}, - {position = {x = 21, y = 10}, name = 'water'}, - {position = {x = 21, y = 11}, name = 'water'}, - {position = {x = 21, y = 12}, name = 'water'}, - {position = {x = 21, y = 13}, name = 'deepwater'}, - {position = {x = 21, y = 14}, name = 'refined-concrete'}, - {position = {x = 21, y = 15}, name = 'refined-concrete'}, - {position = {x = 21, y = 16}, name = 'refined-concrete'}, - {position = {x = 21, y = 17}, name = 'deepwater'}, - {position = {x = 21, y = 18}, name = 'deepwater'}, - {position = {x = 21, y = 19}, name = 'deepwater'}, - {position = {x = 21, y = 20}, name = 'deepwater'}, - {position = {x = 21, y = 21}, name = 'deepwater'}, - {position = {x = 21, y = 22}, name = 'deepwater'}, - {position = {x = 21, y = 23}, name = 'dirt-5'}, - {position = {x = 21, y = 24}, name = 'dirt-5'}, - {position = {x = 21, y = 25}, name = 'dirt-5'}, - {position = {x = 21, y = 26}, name = 'dirt-5'}, - {position = {x = 21, y = 27}, name = 'dirt-5'}, - {position = {x = 21, y = 28}, name = 'dirt-5'}, - {position = {x = 21, y = 29}, name = 'deepwater'}, - {position = {x = 21, y = 30}, name = 'deepwater'}, - {position = {x = 21, y = 31}, name = 'deepwater'}, - {position = {x = 22, y = 0}, name = 'dirt-5'}, - {position = {x = 22, y = 1}, name = 'dirt-5'}, - {position = {x = 22, y = 2}, name = 'dirt-5'}, - {position = {x = 22, y = 3}, name = 'dirt-5'}, - {position = {x = 22, y = 4}, name = 'dirt-5'}, - {position = {x = 22, y = 5}, name = 'dirt-5'}, - {position = {x = 22, y = 6}, name = 'water'}, - {position = {x = 22, y = 7}, name = 'water'}, - {position = {x = 22, y = 8}, name = 'dirt-5'}, - {position = {x = 22, y = 9}, name = 'dirt-5'}, - {position = {x = 22, y = 10}, name = 'water'}, - {position = {x = 22, y = 11}, name = 'water'}, - {position = {x = 22, y = 12}, name = 'water'}, - {position = {x = 22, y = 13}, name = 'deepwater'}, - {position = {x = 22, y = 14}, name = 'refined-concrete'}, - {position = {x = 22, y = 15}, name = 'stone-path'}, - {position = {x = 22, y = 16}, name = 'dirt-5'}, - {position = {x = 22, y = 17}, name = 'dirt-5'}, - {position = {x = 22, y = 18}, name = 'deepwater'}, - {position = {x = 22, y = 19}, name = 'deepwater'}, - {position = {x = 22, y = 20}, name = 'deepwater'}, - {position = {x = 22, y = 21}, name = 'dirt-5'}, - {position = {x = 22, y = 22}, name = 'dirt-5'}, - {position = {x = 22, y = 23}, name = 'dirt-5'}, - {position = {x = 22, y = 24}, name = 'dirt-5'}, - {position = {x = 22, y = 25}, name = 'dirt-5'}, - {position = {x = 22, y = 26}, name = 'dirt-5'}, - {position = {x = 22, y = 27}, name = 'dirt-5'}, - {position = {x = 22, y = 28}, name = 'dirt-5'}, - {position = {x = 22, y = 29}, name = 'dirt-5'}, - {position = {x = 22, y = 30}, name = 'dirt-5'}, - {position = {x = 22, y = 31}, name = 'water'}, - {position = {x = 23, y = 0}, name = 'dirt-5'}, - {position = {x = 23, y = 1}, name = 'dirt-5'}, - {position = {x = 23, y = 2}, name = 'dirt-5'}, - {position = {x = 23, y = 3}, name = 'dirt-5'}, - {position = {x = 23, y = 4}, name = 'dirt-5'}, - {position = {x = 23, y = 5}, name = 'dirt-5'}, - {position = {x = 23, y = 6}, name = 'dirt-5'}, - {position = {x = 23, y = 7}, name = 'water'}, - {position = {x = 23, y = 8}, name = 'dirt-5'}, - {position = {x = 23, y = 9}, name = 'dirt-5'}, - {position = {x = 23, y = 10}, name = 'water'}, - {position = {x = 23, y = 11}, name = 'water'}, - {position = {x = 23, y = 12}, name = 'water'}, - {position = {x = 23, y = 13}, name = 'deepwater'}, - {position = {x = 23, y = 14}, name = 'refined-concrete'}, - {position = {x = 23, y = 15}, name = 'stone-path'}, - {position = {x = 23, y = 16}, name = 'dirt-5'}, - {position = {x = 23, y = 17}, name = 'dirt-5'}, - {position = {x = 23, y = 18}, name = 'deepwater'}, - {position = {x = 23, y = 19}, name = 'deepwater'}, - {position = {x = 23, y = 20}, name = 'deepwater'}, - {position = {x = 23, y = 21}, name = 'dirt-5'}, - {position = {x = 23, y = 22}, name = 'dirt-5'}, - {position = {x = 23, y = 23}, name = 'dirt-5'}, - {position = {x = 23, y = 24}, name = 'dirt-5'}, - {position = {x = 23, y = 25}, name = 'dirt-5'}, - {position = {x = 23, y = 26}, name = 'dirt-5'}, - {position = {x = 23, y = 27}, name = 'dirt-5'}, - {position = {x = 23, y = 28}, name = 'dirt-5'}, - {position = {x = 23, y = 29}, name = 'dirt-5'}, - {position = {x = 23, y = 30}, name = 'dirt-5'}, - {position = {x = 23, y = 31}, name = 'dirt-5'}, - {position = {x = 24, y = 0}, name = 'dirt-5'}, - {position = {x = 24, y = 1}, name = 'dirt-5'}, - {position = {x = 24, y = 2}, name = 'dirt-5'}, - {position = {x = 24, y = 3}, name = 'dirt-5'}, - {position = {x = 24, y = 4}, name = 'dirt-5'}, - {position = {x = 24, y = 5}, name = 'dirt-5'}, - {position = {x = 24, y = 6}, name = 'dirt-5'}, - {position = {x = 24, y = 7}, name = 'dirt-5'}, - {position = {x = 24, y = 8}, name = 'dirt-5'}, - {position = {x = 24, y = 9}, name = 'dirt-5'}, - {position = {x = 24, y = 10}, name = 'dirt-5'}, - {position = {x = 24, y = 11}, name = 'water'}, - {position = {x = 24, y = 12}, name = 'water'}, - {position = {x = 24, y = 13}, name = 'deepwater'}, - {position = {x = 24, y = 14}, name = 'refined-concrete'}, - {position = {x = 24, y = 15}, name = 'refined-concrete'}, - {position = {x = 24, y = 16}, name = 'dirt-5'}, - {position = {x = 24, y = 17}, name = 'dirt-5'}, - {position = {x = 24, y = 18}, name = 'dirt-5'}, - {position = {x = 24, y = 19}, name = 'dirt-5'}, - {position = {x = 24, y = 20}, name = 'dirt-5'}, - {position = {x = 24, y = 21}, name = 'dirt-5'}, - {position = {x = 24, y = 22}, name = 'dirt-5'}, - {position = {x = 24, y = 23}, name = 'dirt-5'}, - {position = {x = 24, y = 24}, name = 'dirt-5'}, - {position = {x = 24, y = 25}, name = 'dirt-5'}, - {position = {x = 24, y = 26}, name = 'dirt-5'}, - {position = {x = 24, y = 27}, name = 'dirt-5'}, - {position = {x = 24, y = 28}, name = 'dirt-5'}, - {position = {x = 24, y = 29}, name = 'dirt-5'}, - {position = {x = 24, y = 30}, name = 'dirt-5'}, - {position = {x = 24, y = 31}, name = 'dirt-5'}, - {position = {x = 25, y = 0}, name = 'dirt-5'}, - {position = {x = 25, y = 1}, name = 'dirt-5'}, - {position = {x = 25, y = 2}, name = 'dirt-5'}, - {position = {x = 25, y = 3}, name = 'dirt-5'}, - {position = {x = 25, y = 4}, name = 'dirt-5'}, - {position = {x = 25, y = 5}, name = 'dirt-5'}, - {position = {x = 25, y = 6}, name = 'dirt-5'}, - {position = {x = 25, y = 7}, name = 'dirt-5'}, - {position = {x = 25, y = 8}, name = 'dirt-5'}, - {position = {x = 25, y = 9}, name = 'dirt-5'}, - {position = {x = 25, y = 10}, name = 'dirt-5'}, - {position = {x = 25, y = 11}, name = 'water'}, - {position = {x = 25, y = 12}, name = 'water'}, - {position = {x = 25, y = 13}, name = 'deepwater'}, - {position = {x = 25, y = 14}, name = 'refined-concrete'}, - {position = {x = 25, y = 15}, name = 'refined-concrete'}, - {position = {x = 25, y = 16}, name = 'refined-concrete'}, - {position = {x = 25, y = 17}, name = 'deepwater'}, - {position = {x = 25, y = 18}, name = 'dirt-5'}, - {position = {x = 25, y = 19}, name = 'dirt-5'}, - {position = {x = 25, y = 20}, name = 'dirt-5'}, - {position = {x = 25, y = 21}, name = 'dirt-5'}, - {position = {x = 25, y = 22}, name = 'dirt-5'}, - {position = {x = 25, y = 23}, name = 'dirt-5'}, - {position = {x = 25, y = 24}, name = 'dirt-5'}, - {position = {x = 25, y = 25}, name = 'dirt-5'}, - {position = {x = 25, y = 26}, name = 'dirt-5'}, - {position = {x = 25, y = 27}, name = 'dirt-5'}, - {position = {x = 25, y = 28}, name = 'dirt-5'}, - {position = {x = 25, y = 29}, name = 'dirt-5'}, - {position = {x = 25, y = 30}, name = 'dirt-5'}, - {position = {x = 25, y = 31}, name = 'dirt-5'}, - {position = {x = 26, y = 0}, name = 'dirt-5'}, - {position = {x = 26, y = 1}, name = 'dirt-5'}, - {position = {x = 26, y = 2}, name = 'dirt-5'}, - {position = {x = 26, y = 3}, name = 'dirt-5'}, - {position = {x = 26, y = 4}, name = 'dirt-5'}, - {position = {x = 26, y = 5}, name = 'dirt-5'}, - {position = {x = 26, y = 6}, name = 'dirt-5'}, - {position = {x = 26, y = 7}, name = 'dirt-5'}, - {position = {x = 26, y = 8}, name = 'dirt-5'}, - {position = {x = 26, y = 9}, name = 'dirt-5'}, - {position = {x = 26, y = 10}, name = 'dirt-5'}, - {position = {x = 26, y = 11}, name = 'water'}, - {position = {x = 26, y = 12}, name = 'water'}, - {position = {x = 26, y = 13}, name = 'deepwater'}, - {position = {x = 26, y = 14}, name = 'refined-concrete'}, - {position = {x = 26, y = 15}, name = 'stone-path'}, - {position = {x = 26, y = 16}, name = 'refined-concrete'}, - {position = {x = 26, y = 17}, name = 'deepwater'}, - {position = {x = 26, y = 18}, name = 'deepwater'}, - {position = {x = 26, y = 19}, name = 'deepwater'}, - {position = {x = 26, y = 20}, name = 'deepwater'}, - {position = {x = 26, y = 21}, name = 'dirt-5'}, - {position = {x = 26, y = 22}, name = 'dirt-5'}, - {position = {x = 26, y = 23}, name = 'dirt-5'}, - {position = {x = 26, y = 24}, name = 'dirt-5'}, - {position = {x = 26, y = 25}, name = 'dirt-5'}, - {position = {x = 26, y = 26}, name = 'dirt-5'}, - {position = {x = 26, y = 27}, name = 'dirt-5'}, - {position = {x = 26, y = 28}, name = 'dirt-5'}, - {position = {x = 26, y = 29}, name = 'dirt-5'}, - {position = {x = 26, y = 30}, name = 'dirt-5'}, - {position = {x = 26, y = 31}, name = 'dirt-5'}, - {position = {x = 27, y = 0}, name = 'dirt-5'}, - {position = {x = 27, y = 1}, name = 'dirt-5'}, - {position = {x = 27, y = 2}, name = 'dirt-5'}, - {position = {x = 27, y = 3}, name = 'dirt-5'}, - {position = {x = 27, y = 4}, name = 'dirt-5'}, - {position = {x = 27, y = 5}, name = 'dirt-5'}, - {position = {x = 27, y = 6}, name = 'dirt-5'}, - {position = {x = 27, y = 7}, name = 'dirt-5'}, - {position = {x = 27, y = 8}, name = 'dirt-5'}, - {position = {x = 27, y = 9}, name = 'dirt-5'}, - {position = {x = 27, y = 10}, name = 'dirt-5'}, - {position = {x = 27, y = 11}, name = 'dirt-5'}, - {position = {x = 27, y = 12}, name = 'water'}, - {position = {x = 27, y = 13}, name = 'deepwater'}, - {position = {x = 27, y = 14}, name = 'refined-concrete'}, - {position = {x = 27, y = 15}, name = 'stone-path'}, - {position = {x = 27, y = 16}, name = 'refined-concrete'}, - {position = {x = 27, y = 17}, name = 'deepwater'}, - {position = {x = 27, y = 18}, name = 'deepwater'}, - {position = {x = 27, y = 19}, name = 'deepwater'}, - {position = {x = 27, y = 20}, name = 'deepwater'}, - {position = {x = 27, y = 21}, name = 'deepwater'}, - {position = {x = 27, y = 22}, name = 'deepwater'}, - {position = {x = 27, y = 23}, name = 'dirt-5'}, - {position = {x = 27, y = 24}, name = 'dirt-5'}, - {position = {x = 27, y = 25}, name = 'dirt-5'}, - {position = {x = 27, y = 26}, name = 'dirt-5'}, - {position = {x = 27, y = 27}, name = 'dirt-5'}, - {position = {x = 27, y = 28}, name = 'dirt-5'}, - {position = {x = 27, y = 29}, name = 'dirt-5'}, - {position = {x = 27, y = 30}, name = 'water'}, - {position = {x = 27, y = 31}, name = 'water'}, - {position = {x = 28, y = 0}, name = 'dirt-5'}, - {position = {x = 28, y = 1}, name = 'dirt-5'}, - {position = {x = 28, y = 2}, name = 'dirt-5'}, - {position = {x = 28, y = 3}, name = 'dirt-5'}, - {position = {x = 28, y = 4}, name = 'dirt-5'}, - {position = {x = 28, y = 5}, name = 'dirt-5'}, - {position = {x = 28, y = 6}, name = 'dirt-5'}, - {position = {x = 28, y = 7}, name = 'dirt-5'}, - {position = {x = 28, y = 8}, name = 'dirt-5'}, - {position = {x = 28, y = 9}, name = 'dirt-5'}, - {position = {x = 28, y = 10}, name = 'dirt-5'}, - {position = {x = 28, y = 11}, name = 'dirt-5'}, - {position = {x = 28, y = 12}, name = 'water'}, - {position = {x = 28, y = 13}, name = 'deepwater'}, - {position = {x = 28, y = 14}, name = 'refined-concrete'}, - {position = {x = 28, y = 15}, name = 'refined-concrete'}, - {position = {x = 28, y = 16}, name = 'refined-concrete'}, - {position = {x = 28, y = 17}, name = 'deepwater'}, - {position = {x = 28, y = 18}, name = 'deepwater'}, - {position = {x = 28, y = 19}, name = 'deepwater'}, - {position = {x = 28, y = 20}, name = 'deepwater'}, - {position = {x = 28, y = 21}, name = 'deepwater'}, - {position = {x = 28, y = 22}, name = 'deepwater'}, - {position = {x = 28, y = 23}, name = 'dirt-5'}, - {position = {x = 28, y = 24}, name = 'dirt-5'}, - {position = {x = 28, y = 25}, name = 'dirt-5'}, - {position = {x = 28, y = 26}, name = 'dirt-5'}, - {position = {x = 28, y = 27}, name = 'dirt-5'}, - {position = {x = 28, y = 28}, name = 'dirt-5'}, - {position = {x = 28, y = 29}, name = 'water'}, - {position = {x = 28, y = 30}, name = 'water'}, - {position = {x = 28, y = 31}, name = 'water'}, - {position = {x = 29, y = 0}, name = 'dirt-5'}, - {position = {x = 29, y = 1}, name = 'dirt-5'}, - {position = {x = 29, y = 2}, name = 'dirt-5'}, - {position = {x = 29, y = 3}, name = 'dirt-5'}, - {position = {x = 29, y = 4}, name = 'dirt-5'}, - {position = {x = 29, y = 5}, name = 'dirt-5'}, - {position = {x = 29, y = 6}, name = 'dirt-5'}, - {position = {x = 29, y = 7}, name = 'dirt-5'}, - {position = {x = 29, y = 8}, name = 'dirt-5'}, - {position = {x = 29, y = 9}, name = 'dirt-5'}, - {position = {x = 29, y = 10}, name = 'dirt-5'}, - {position = {x = 29, y = 11}, name = 'dirt-5'}, - {position = {x = 29, y = 12}, name = 'water'}, - {position = {x = 29, y = 13}, name = 'dirt-5'}, - {position = {x = 29, y = 14}, name = 'dirt-5'}, - {position = {x = 29, y = 15}, name = 'refined-concrete'}, - {position = {x = 29, y = 16}, name = 'refined-concrete'}, - {position = {x = 29, y = 17}, name = 'deepwater'}, - {position = {x = 29, y = 18}, name = 'deepwater'}, - {position = {x = 29, y = 19}, name = 'deepwater'}, - {position = {x = 29, y = 20}, name = 'deepwater'}, - {position = {x = 29, y = 21}, name = 'deepwater'}, - {position = {x = 29, y = 22}, name = 'deepwater'}, - {position = {x = 29, y = 23}, name = 'dirt-5'}, - {position = {x = 29, y = 24}, name = 'dirt-5'}, - {position = {x = 29, y = 25}, name = 'dirt-5'}, - {position = {x = 29, y = 26}, name = 'dirt-5'}, - {position = {x = 29, y = 27}, name = 'dirt-5'}, - {position = {x = 29, y = 28}, name = 'dirt-5'}, - {position = {x = 29, y = 29}, name = 'water'}, - {position = {x = 29, y = 30}, name = 'water'}, - {position = {x = 29, y = 31}, name = 'water'}, - {position = {x = 30, y = 0}, name = 'dirt-5'}, - {position = {x = 30, y = 1}, name = 'dirt-5'}, - {position = {x = 30, y = 2}, name = 'dirt-5'}, - {position = {x = 30, y = 3}, name = 'dirt-5'}, - {position = {x = 30, y = 4}, name = 'dirt-5'}, - {position = {x = 30, y = 5}, name = 'dirt-5'}, - {position = {x = 30, y = 6}, name = 'dirt-5'}, - {position = {x = 30, y = 7}, name = 'dirt-5'}, - {position = {x = 30, y = 8}, name = 'dirt-5'}, - {position = {x = 30, y = 9}, name = 'dirt-5'}, - {position = {x = 30, y = 10}, name = 'dirt-5'}, - {position = {x = 30, y = 11}, name = 'dirt-5'}, - {position = {x = 30, y = 12}, name = 'dirt-5'}, - {position = {x = 30, y = 13}, name = 'dirt-5'}, - {position = {x = 30, y = 14}, name = 'dirt-5'}, - {position = {x = 30, y = 15}, name = 'stone-path'}, - {position = {x = 30, y = 16}, name = 'refined-concrete'}, - {position = {x = 30, y = 17}, name = 'deepwater'}, - {position = {x = 30, y = 18}, name = 'deepwater'}, - {position = {x = 30, y = 19}, name = 'deepwater'}, - {position = {x = 30, y = 20}, name = 'deepwater'}, - {position = {x = 30, y = 21}, name = 'deepwater'}, - {position = {x = 30, y = 22}, name = 'deepwater'}, - {position = {x = 30, y = 23}, name = 'dirt-5'}, - {position = {x = 30, y = 24}, name = 'dirt-5'}, - {position = {x = 30, y = 25}, name = 'dirt-5'}, - {position = {x = 30, y = 26}, name = 'dirt-5'}, - {position = {x = 30, y = 27}, name = 'dirt-5'}, - {position = {x = 30, y = 28}, name = 'dirt-5'}, - {position = {x = 30, y = 29}, name = 'water'}, - {position = {x = 30, y = 30}, name = 'water'}, - {position = {x = 30, y = 31}, name = 'water'}, - {position = {x = 31, y = 0}, name = 'dirt-5'}, - {position = {x = 31, y = 1}, name = 'dirt-5'}, - {position = {x = 31, y = 2}, name = 'dirt-5'}, - {position = {x = 31, y = 3}, name = 'dirt-5'}, - {position = {x = 31, y = 4}, name = 'dirt-5'}, - {position = {x = 31, y = 5}, name = 'dirt-5'}, - {position = {x = 31, y = 6}, name = 'dirt-5'}, - {position = {x = 31, y = 7}, name = 'dirt-5'}, - {position = {x = 31, y = 8}, name = 'dirt-5'}, - {position = {x = 31, y = 9}, name = 'dirt-5'}, - {position = {x = 31, y = 10}, name = 'dirt-5'}, - {position = {x = 31, y = 11}, name = 'dirt-5'}, - {position = {x = 31, y = 12}, name = 'dirt-5'}, - {position = {x = 31, y = 13}, name = 'dirt-5'}, - {position = {x = 31, y = 14}, name = 'refined-concrete'}, - {position = {x = 31, y = 15}, name = 'stone-path'}, - {position = {x = 31, y = 16}, name = 'refined-concrete'}, - {position = {x = 31, y = 17}, name = 'deepwater'}, - {position = {x = 31, y = 18}, name = 'deepwater'}, - {position = {x = 31, y = 19}, name = 'deepwater'}, - {position = {x = 31, y = 20}, name = 'deepwater'}, - {position = {x = 31, y = 21}, name = 'deepwater'}, - {position = {x = 31, y = 22}, name = 'deepwater'}, - {position = {x = 31, y = 23}, name = 'dirt-5'}, - {position = {x = 31, y = 24}, name = 'dirt-5'}, - {position = {x = 31, y = 25}, name = 'dirt-5'}, - {position = {x = 31, y = 26}, name = 'dirt-5'}, - {position = {x = 31, y = 27}, name = 'dirt-5'}, - {position = {x = 31, y = 28}, name = 'dirt-5'}, - {position = {x = 31, y = 29}, name = 'water'}, - {position = {x = 31, y = 30}, name = 'water'}, - {position = {x = 31, y = 31}, name = 'water'} + { position = { x = 0, y = 0 }, name = 'deepwater' }, + { position = { x = 0, y = 1 }, name = 'deepwater' }, + { position = { x = 0, y = 2 }, name = 'deepwater' }, + { position = { x = 0, y = 3 }, name = 'deepwater' }, + { position = { x = 0, y = 4 }, name = 'water' }, + { position = { x = 0, y = 5 }, name = 'deepwater' }, + { position = { x = 0, y = 6 }, name = 'dirt-5' }, + { position = { x = 0, y = 7 }, name = 'dirt-5' }, + { position = { x = 0, y = 8 }, name = 'deepwater' }, + { position = { x = 0, y = 9 }, name = 'deepwater' }, + { position = { x = 0, y = 10 }, name = 'water-green' }, + { position = { x = 0, y = 11 }, name = 'water-green' }, + { position = { x = 0, y = 12 }, name = 'deepwater' }, + { position = { x = 0, y = 13 }, name = 'deepwater' }, + { position = { x = 0, y = 14 }, name = 'refined-concrete' }, + { position = { x = 0, y = 15 }, name = 'stone-path' }, + { position = { x = 0, y = 16 }, name = 'refined-concrete' }, + { position = { x = 0, y = 17 }, name = 'deepwater' }, + { position = { x = 0, y = 18 }, name = 'deepwater' }, + { position = { x = 0, y = 19 }, name = 'deepwater' }, + { position = { x = 0, y = 20 }, name = 'deepwater' }, + { position = { x = 0, y = 21 }, name = 'deepwater' }, + { position = { x = 0, y = 22 }, name = 'deepwater' }, + { position = { x = 0, y = 23 }, name = 'deepwater' }, + { position = { x = 0, y = 24 }, name = 'deepwater' }, + { position = { x = 0, y = 25 }, name = 'deepwater' }, + { position = { x = 0, y = 26 }, name = 'deepwater' }, + { position = { x = 0, y = 27 }, name = 'water' }, + { position = { x = 0, y = 28 }, name = 'water' }, + { position = { x = 0, y = 29 }, name = 'dirt-5' }, + { position = { x = 0, y = 30 }, name = 'dirt-5' }, + { position = { x = 0, y = 31 }, name = 'dirt-5' }, + { position = { x = 1, y = 0 }, name = 'deepwater' }, + { position = { x = 1, y = 1 }, name = 'deepwater' }, + { position = { x = 1, y = 2 }, name = 'deepwater' }, + { position = { x = 1, y = 3 }, name = 'water' }, + { position = { x = 1, y = 4 }, name = 'water' }, + { position = { x = 1, y = 5 }, name = 'dirt-7' }, + { position = { x = 1, y = 6 }, name = 'dirt-7' }, + { position = { x = 1, y = 7 }, name = 'dirt-7' }, + { position = { x = 1, y = 8 }, name = 'dirt-7' }, + { position = { x = 1, y = 9 }, name = 'dirt-7' }, + { position = { x = 1, y = 10 }, name = 'water-green' }, + { position = { x = 1, y = 11 }, name = 'water-green' }, + { position = { x = 1, y = 12 }, name = 'water-green' }, + { position = { x = 1, y = 13 }, name = 'deepwater' }, + { position = { x = 1, y = 14 }, name = 'refined-concrete' }, + { position = { x = 1, y = 15 }, name = 'stone-path' }, + { position = { x = 1, y = 16 }, name = 'refined-concrete' }, + { position = { x = 1, y = 17 }, name = 'deepwater' }, + { position = { x = 1, y = 18 }, name = 'deepwater' }, + { position = { x = 1, y = 19 }, name = 'deepwater' }, + { position = { x = 1, y = 20 }, name = 'deepwater' }, + { position = { x = 1, y = 21 }, name = 'deepwater' }, + { position = { x = 1, y = 22 }, name = 'deepwater' }, + { position = { x = 1, y = 23 }, name = 'deepwater' }, + { position = { x = 1, y = 24 }, name = 'deepwater' }, + { position = { x = 1, y = 25 }, name = 'deepwater' }, + { position = { x = 1, y = 26 }, name = 'deepwater' }, + { position = { x = 1, y = 27 }, name = 'water' }, + { position = { x = 1, y = 28 }, name = 'water' }, + { position = { x = 1, y = 29 }, name = 'water' }, + { position = { x = 1, y = 30 }, name = 'dirt-5' }, + { position = { x = 1, y = 31 }, name = 'dirt-5' }, + { position = { x = 2, y = 0 }, name = 'deepwater' }, + { position = { x = 2, y = 1 }, name = 'deepwater' }, + { position = { x = 2, y = 2 }, name = 'deepwater' }, + { position = { x = 2, y = 3 }, name = 'water' }, + { position = { x = 2, y = 4 }, name = 'dirt-7' }, + { position = { x = 2, y = 5 }, name = 'dirt-7' }, + { position = { x = 2, y = 6 }, name = 'deepwater' }, + { position = { x = 2, y = 7 }, name = 'dirt-7' }, + { position = { x = 2, y = 8 }, name = 'deepwater' }, + { position = { x = 2, y = 9 }, name = 'dirt-7' }, + { position = { x = 2, y = 10 }, name = 'water-green' }, + { position = { x = 2, y = 11 }, name = 'water-green' }, + { position = { x = 2, y = 12 }, name = 'water-green' }, + { position = { x = 2, y = 13 }, name = 'deepwater' }, + { position = { x = 2, y = 14 }, name = 'refined-concrete' }, + { position = { x = 2, y = 15 }, name = 'refined-concrete' }, + { position = { x = 2, y = 16 }, name = 'refined-concrete' }, + { position = { x = 2, y = 17 }, name = 'deepwater' }, + { position = { x = 2, y = 18 }, name = 'deepwater' }, + { position = { x = 2, y = 19 }, name = 'deepwater' }, + { position = { x = 2, y = 20 }, name = 'deepwater' }, + { position = { x = 2, y = 21 }, name = 'deepwater' }, + { position = { x = 2, y = 22 }, name = 'deepwater' }, + { position = { x = 2, y = 23 }, name = 'deepwater' }, + { position = { x = 2, y = 24 }, name = 'deepwater' }, + { position = { x = 2, y = 25 }, name = 'deepwater' }, + { position = { x = 2, y = 26 }, name = 'deepwater' }, + { position = { x = 2, y = 27 }, name = 'deepwater' }, + { position = { x = 2, y = 28 }, name = 'water' }, + { position = { x = 2, y = 29 }, name = 'water' }, + { position = { x = 2, y = 30 }, name = 'water' }, + { position = { x = 2, y = 31 }, name = 'dirt-5' }, + { position = { x = 3, y = 0 }, name = 'deepwater' }, + { position = { x = 3, y = 1 }, name = 'deepwater' }, + { position = { x = 3, y = 2 }, name = 'deepwater' }, + { position = { x = 3, y = 3 }, name = 'water' }, + { position = { x = 3, y = 4 }, name = 'water' }, + { position = { x = 3, y = 5 }, name = 'water' }, + { position = { x = 3, y = 6 }, name = 'dirt-7' }, + { position = { x = 3, y = 7 }, name = 'dirt-7' }, + { position = { x = 3, y = 8 }, name = 'dirt-5' }, + { position = { x = 3, y = 9 }, name = 'dirt-7' }, + { position = { x = 3, y = 10 }, name = 'deepwater' }, + { position = { x = 3, y = 11 }, name = 'water-green' }, + { position = { x = 3, y = 12 }, name = 'water-green' }, + { position = { x = 3, y = 13 }, name = 'deepwater' }, + { position = { x = 3, y = 14 }, name = 'refined-concrete' }, + { position = { x = 3, y = 15 }, name = 'refined-concrete' }, + { position = { x = 3, y = 16 }, name = 'refined-concrete' }, + { position = { x = 3, y = 17 }, name = 'deepwater' }, + { position = { x = 3, y = 18 }, name = 'deepwater' }, + { position = { x = 3, y = 19 }, name = 'deepwater' }, + { position = { x = 3, y = 20 }, name = 'deepwater' }, + { position = { x = 3, y = 21 }, name = 'deepwater' }, + { position = { x = 3, y = 22 }, name = 'deepwater' }, + { position = { x = 3, y = 23 }, name = 'deepwater' }, + { position = { x = 3, y = 24 }, name = 'deepwater' }, + { position = { x = 3, y = 25 }, name = 'deepwater' }, + { position = { x = 3, y = 26 }, name = 'deepwater' }, + { position = { x = 3, y = 27 }, name = 'deepwater' }, + { position = { x = 3, y = 28 }, name = 'water' }, + { position = { x = 3, y = 29 }, name = 'water' }, + { position = { x = 3, y = 30 }, name = 'water' }, + { position = { x = 3, y = 31 }, name = 'water' }, + { position = { x = 4, y = 0 }, name = 'deepwater' }, + { position = { x = 4, y = 1 }, name = 'deepwater' }, + { position = { x = 4, y = 2 }, name = 'deepwater' }, + { position = { x = 4, y = 3 }, name = 'water' }, + { position = { x = 4, y = 4 }, name = 'water' }, + { position = { x = 4, y = 5 }, name = 'water' }, + { position = { x = 4, y = 6 }, name = 'dirt-7' }, + { position = { x = 4, y = 7 }, name = 'dirt-7' }, + { position = { x = 4, y = 8 }, name = 'dirt-7' }, + { position = { x = 4, y = 9 }, name = 'dirt-7' }, + { position = { x = 4, y = 10 }, name = 'deepwater' }, + { position = { x = 4, y = 11 }, name = 'water-green' }, + { position = { x = 4, y = 12 }, name = 'water-green' }, + { position = { x = 4, y = 13 }, name = 'deepwater' }, + { position = { x = 4, y = 14 }, name = 'refined-concrete' }, + { position = { x = 4, y = 15 }, name = 'stone-path' }, + { position = { x = 4, y = 16 }, name = 'refined-concrete' }, + { position = { x = 4, y = 17 }, name = 'deepwater' }, + { position = { x = 4, y = 18 }, name = 'deepwater' }, + { position = { x = 4, y = 19 }, name = 'deepwater' }, + { position = { x = 4, y = 20 }, name = 'deepwater' }, + { position = { x = 4, y = 21 }, name = 'deepwater' }, + { position = { x = 4, y = 22 }, name = 'deepwater' }, + { position = { x = 4, y = 23 }, name = 'deepwater' }, + { position = { x = 4, y = 24 }, name = 'deepwater' }, + { position = { x = 4, y = 25 }, name = 'deepwater' }, + { position = { x = 4, y = 26 }, name = 'deepwater' }, + { position = { x = 4, y = 27 }, name = 'deepwater' }, + { position = { x = 4, y = 28 }, name = 'deepwater' }, + { position = { x = 4, y = 29 }, name = 'water' }, + { position = { x = 4, y = 30 }, name = 'water' }, + { position = { x = 4, y = 31 }, name = 'water' }, + { position = { x = 5, y = 0 }, name = 'deepwater' }, + { position = { x = 5, y = 1 }, name = 'deepwater' }, + { position = { x = 5, y = 2 }, name = 'water' }, + { position = { x = 5, y = 3 }, name = 'water' }, + { position = { x = 5, y = 4 }, name = 'dirt-7' }, + { position = { x = 5, y = 5 }, name = 'dirt-7' }, + { position = { x = 5, y = 6 }, name = 'dirt-7' }, + { position = { x = 5, y = 7 }, name = 'dirt-7' }, + { position = { x = 5, y = 8 }, name = 'dirt-7' }, + { position = { x = 5, y = 9 }, name = 'water-green' }, + { position = { x = 5, y = 10 }, name = 'water-green' }, + { position = { x = 5, y = 11 }, name = 'water-green' }, + { position = { x = 5, y = 12 }, name = 'water-green' }, + { position = { x = 5, y = 13 }, name = 'deepwater' }, + { position = { x = 5, y = 14 }, name = 'refined-concrete' }, + { position = { x = 5, y = 15 }, name = 'stone-path' }, + { position = { x = 5, y = 16 }, name = 'refined-concrete' }, + { position = { x = 5, y = 17 }, name = 'deepwater' }, + { position = { x = 5, y = 18 }, name = 'deepwater' }, + { position = { x = 5, y = 19 }, name = 'deepwater' }, + { position = { x = 5, y = 20 }, name = 'deepwater' }, + { position = { x = 5, y = 21 }, name = 'deepwater' }, + { position = { x = 5, y = 22 }, name = 'deepwater' }, + { position = { x = 5, y = 23 }, name = 'deepwater' }, + { position = { x = 5, y = 24 }, name = 'deepwater' }, + { position = { x = 5, y = 25 }, name = 'deepwater' }, + { position = { x = 5, y = 26 }, name = 'deepwater' }, + { position = { x = 5, y = 27 }, name = 'deepwater' }, + { position = { x = 5, y = 28 }, name = 'water' }, + { position = { x = 5, y = 29 }, name = 'water' }, + { position = { x = 5, y = 30 }, name = 'water' }, + { position = { x = 5, y = 31 }, name = 'water' }, + { position = { x = 6, y = 0 }, name = 'deepwater' }, + { position = { x = 6, y = 1 }, name = 'deepwater' }, + { position = { x = 6, y = 2 }, name = 'water' }, + { position = { x = 6, y = 3 }, name = 'water' }, + { position = { x = 6, y = 4 }, name = 'dirt-7' }, + { position = { x = 6, y = 5 }, name = 'dirt-7' }, + { position = { x = 6, y = 6 }, name = 'dirt-7' }, + { position = { x = 6, y = 7 }, name = 'dirt-7' }, + { position = { x = 6, y = 8 }, name = 'dirt-7' }, + { position = { x = 6, y = 9 }, name = 'water' }, + { position = { x = 6, y = 10 }, name = 'water' }, + { position = { x = 6, y = 11 }, name = 'water-green' }, + { position = { x = 6, y = 12 }, name = 'deepwater' }, + { position = { x = 6, y = 13 }, name = 'deepwater' }, + { position = { x = 6, y = 14 }, name = 'refined-concrete' }, + { position = { x = 6, y = 15 }, name = 'refined-concrete' }, + { position = { x = 6, y = 16 }, name = 'refined-concrete' }, + { position = { x = 6, y = 17 }, name = 'deepwater' }, + { position = { x = 6, y = 18 }, name = 'deepwater' }, + { position = { x = 6, y = 19 }, name = 'deepwater' }, + { position = { x = 6, y = 20 }, name = 'deepwater' }, + { position = { x = 6, y = 21 }, name = 'deepwater' }, + { position = { x = 6, y = 22 }, name = 'deepwater' }, + { position = { x = 6, y = 23 }, name = 'deepwater' }, + { position = { x = 6, y = 24 }, name = 'deepwater' }, + { position = { x = 6, y = 25 }, name = 'deepwater' }, + { position = { x = 6, y = 26 }, name = 'deepwater' }, + { position = { x = 6, y = 27 }, name = 'deepwater' }, + { position = { x = 6, y = 28 }, name = 'water' }, + { position = { x = 6, y = 29 }, name = 'water' }, + { position = { x = 6, y = 30 }, name = 'water' }, + { position = { x = 6, y = 31 }, name = 'dirt-5' }, + { position = { x = 7, y = 0 }, name = 'deepwater' }, + { position = { x = 7, y = 1 }, name = 'deepwater' }, + { position = { x = 7, y = 2 }, name = 'water' }, + { position = { x = 7, y = 3 }, name = 'water' }, + { position = { x = 7, y = 4 }, name = 'dirt-7' }, + { position = { x = 7, y = 5 }, name = 'dirt-7' }, + { position = { x = 7, y = 6 }, name = 'dirt-7' }, + { position = { x = 7, y = 7 }, name = 'dirt-7' }, + { position = { x = 7, y = 8 }, name = 'dirt-7' }, + { position = { x = 7, y = 9 }, name = 'water' }, + { position = { x = 7, y = 10 }, name = 'water' }, + { position = { x = 7, y = 11 }, name = 'water-green' }, + { position = { x = 7, y = 12 }, name = 'deepwater' }, + { position = { x = 7, y = 13 }, name = 'deepwater' }, + { position = { x = 7, y = 14 }, name = 'refined-concrete' }, + { position = { x = 7, y = 15 }, name = 'refined-concrete' }, + { position = { x = 7, y = 16 }, name = 'refined-concrete' }, + { position = { x = 7, y = 17 }, name = 'deepwater' }, + { position = { x = 7, y = 18 }, name = 'deepwater' }, + { position = { x = 7, y = 19 }, name = 'deepwater' }, + { position = { x = 7, y = 20 }, name = 'deepwater' }, + { position = { x = 7, y = 21 }, name = 'deepwater' }, + { position = { x = 7, y = 22 }, name = 'deepwater' }, + { position = { x = 7, y = 23 }, name = 'deepwater' }, + { position = { x = 7, y = 24 }, name = 'deepwater' }, + { position = { x = 7, y = 25 }, name = 'deepwater' }, + { position = { x = 7, y = 26 }, name = 'deepwater' }, + { position = { x = 7, y = 27 }, name = 'deepwater' }, + { position = { x = 7, y = 28 }, name = 'deepwater' }, + { position = { x = 7, y = 29 }, name = 'deepwater' }, + { position = { x = 7, y = 30 }, name = 'deepwater' }, + { position = { x = 7, y = 31 }, name = 'dirt-5' }, + { position = { x = 8, y = 0 }, name = 'deepwater' }, + { position = { x = 8, y = 1 }, name = 'deepwater' }, + { position = { x = 8, y = 2 }, name = 'water' }, + { position = { x = 8, y = 3 }, name = 'dirt-7' }, + { position = { x = 8, y = 4 }, name = 'dirt-7' }, + { position = { x = 8, y = 5 }, name = 'dirt-7' }, + { position = { x = 8, y = 6 }, name = 'dirt-7' }, + { position = { x = 8, y = 7 }, name = 'deepwater' }, + { position = { x = 8, y = 8 }, name = 'deepwater' }, + { position = { x = 8, y = 9 }, name = 'water-green' }, + { position = { x = 8, y = 10 }, name = 'water-green' }, + { position = { x = 8, y = 11 }, name = 'deepwater' }, + { position = { x = 8, y = 12 }, name = 'deepwater' }, + { position = { x = 8, y = 13 }, name = 'deepwater' }, + { position = { x = 8, y = 14 }, name = 'refined-concrete' }, + { position = { x = 8, y = 15 }, name = 'stone-path' }, + { position = { x = 8, y = 16 }, name = 'refined-concrete' }, + { position = { x = 8, y = 17 }, name = 'deepwater' }, + { position = { x = 8, y = 18 }, name = 'deepwater' }, + { position = { x = 8, y = 19 }, name = 'deepwater' }, + { position = { x = 8, y = 20 }, name = 'deepwater' }, + { position = { x = 8, y = 21 }, name = 'deepwater' }, + { position = { x = 8, y = 22 }, name = 'deepwater' }, + { position = { x = 8, y = 23 }, name = 'deepwater' }, + { position = { x = 8, y = 24 }, name = 'deepwater' }, + { position = { x = 8, y = 25 }, name = 'deepwater' }, + { position = { x = 8, y = 26 }, name = 'deepwater' }, + { position = { x = 8, y = 27 }, name = 'deepwater' }, + { position = { x = 8, y = 28 }, name = 'deepwater' }, + { position = { x = 8, y = 29 }, name = 'deepwater' }, + { position = { x = 8, y = 30 }, name = 'dirt-5' }, + { position = { x = 8, y = 31 }, name = 'dirt-5' }, + { position = { x = 9, y = 0 }, name = 'deepwater' }, + { position = { x = 9, y = 1 }, name = 'water' }, + { position = { x = 9, y = 2 }, name = 'water' }, + { position = { x = 9, y = 3 }, name = 'dirt-7' }, + { position = { x = 9, y = 4 }, name = 'dirt-7' }, + { position = { x = 9, y = 5 }, name = 'dirt-7' }, + { position = { x = 9, y = 6 }, name = 'deepwater' }, + { position = { x = 9, y = 7 }, name = 'water' }, + { position = { x = 9, y = 8 }, name = 'water' }, + { position = { x = 9, y = 9 }, name = 'water-green' }, + { position = { x = 9, y = 10 }, name = 'water-green' }, + { position = { x = 9, y = 11 }, name = 'deepwater' }, + { position = { x = 9, y = 12 }, name = 'deepwater' }, + { position = { x = 9, y = 13 }, name = 'deepwater' }, + { position = { x = 9, y = 14 }, name = 'refined-concrete' }, + { position = { x = 9, y = 15 }, name = 'stone-path' }, + { position = { x = 9, y = 16 }, name = 'refined-concrete' }, + { position = { x = 9, y = 17 }, name = 'deepwater' }, + { position = { x = 9, y = 18 }, name = 'deepwater' }, + { position = { x = 9, y = 19 }, name = 'deepwater' }, + { position = { x = 9, y = 20 }, name = 'deepwater' }, + { position = { x = 9, y = 21 }, name = 'deepwater' }, + { position = { x = 9, y = 22 }, name = 'deepwater' }, + { position = { x = 9, y = 23 }, name = 'deepwater' }, + { position = { x = 9, y = 24 }, name = 'deepwater' }, + { position = { x = 9, y = 25 }, name = 'deepwater' }, + { position = { x = 9, y = 26 }, name = 'deepwater' }, + { position = { x = 9, y = 27 }, name = 'deepwater' }, + { position = { x = 9, y = 28 }, name = 'deepwater' }, + { position = { x = 9, y = 29 }, name = 'deepwater' }, + { position = { x = 9, y = 30 }, name = 'dirt-5' }, + { position = { x = 9, y = 31 }, name = 'dirt-5' }, + { position = { x = 10, y = 0 }, name = 'deepwater' }, + { position = { x = 10, y = 1 }, name = 'water' }, + { position = { x = 10, y = 2 }, name = 'dirt-7' }, + { position = { x = 10, y = 3 }, name = 'dirt-7' }, + { position = { x = 10, y = 4 }, name = 'dirt-7' }, + { position = { x = 10, y = 5 }, name = 'dirt-7' }, + { position = { x = 10, y = 6 }, name = 'deepwater' }, + { position = { x = 10, y = 7 }, name = 'water' }, + { position = { x = 10, y = 8 }, name = 'water' }, + { position = { x = 10, y = 9 }, name = 'water' }, + { position = { x = 10, y = 10 }, name = 'deepwater' }, + { position = { x = 10, y = 11 }, name = 'deepwater' }, + { position = { x = 10, y = 12 }, name = 'deepwater' }, + { position = { x = 10, y = 13 }, name = 'deepwater' }, + { position = { x = 10, y = 14 }, name = 'refined-concrete' }, + { position = { x = 10, y = 15 }, name = 'refined-concrete' }, + { position = { x = 10, y = 16 }, name = 'refined-concrete' }, + { position = { x = 10, y = 17 }, name = 'deepwater' }, + { position = { x = 10, y = 18 }, name = 'deepwater' }, + { position = { x = 10, y = 19 }, name = 'deepwater' }, + { position = { x = 10, y = 20 }, name = 'deepwater' }, + { position = { x = 10, y = 21 }, name = 'deepwater' }, + { position = { x = 10, y = 22 }, name = 'deepwater' }, + { position = { x = 10, y = 23 }, name = 'deepwater' }, + { position = { x = 10, y = 24 }, name = 'deepwater' }, + { position = { x = 10, y = 25 }, name = 'deepwater' }, + { position = { x = 10, y = 26 }, name = 'deepwater' }, + { position = { x = 10, y = 27 }, name = 'deepwater' }, + { position = { x = 10, y = 28 }, name = 'deepwater' }, + { position = { x = 10, y = 29 }, name = 'dirt-5' }, + { position = { x = 10, y = 30 }, name = 'dirt-5' }, + { position = { x = 10, y = 31 }, name = 'dirt-5' }, + { position = { x = 11, y = 0 }, name = 'deepwater' }, + { position = { x = 11, y = 1 }, name = 'deepwater' }, + { position = { x = 11, y = 2 }, name = 'water' }, + { position = { x = 11, y = 3 }, name = 'water' }, + { position = { x = 11, y = 4 }, name = 'water' }, + { position = { x = 11, y = 5 }, name = 'water' }, + { position = { x = 11, y = 6 }, name = 'water' }, + { position = { x = 11, y = 7 }, name = 'water' }, + { position = { x = 11, y = 8 }, name = 'water' }, + { position = { x = 11, y = 9 }, name = 'deepwater' }, + { position = { x = 11, y = 10 }, name = 'deepwater' }, + { position = { x = 11, y = 11 }, name = 'deepwater' }, + { position = { x = 11, y = 12 }, name = 'deepwater' }, + { position = { x = 11, y = 13 }, name = 'deepwater' }, + { position = { x = 11, y = 14 }, name = 'refined-concrete' }, + { position = { x = 11, y = 15 }, name = 'refined-concrete' }, + { position = { x = 11, y = 16 }, name = 'refined-concrete' }, + { position = { x = 11, y = 17 }, name = 'deepwater' }, + { position = { x = 11, y = 18 }, name = 'deepwater' }, + { position = { x = 11, y = 19 }, name = 'deepwater' }, + { position = { x = 11, y = 20 }, name = 'deepwater' }, + { position = { x = 11, y = 21 }, name = 'deepwater' }, + { position = { x = 11, y = 22 }, name = 'deepwater' }, + { position = { x = 11, y = 23 }, name = 'deepwater' }, + { position = { x = 11, y = 24 }, name = 'deepwater' }, + { position = { x = 11, y = 25 }, name = 'deepwater' }, + { position = { x = 11, y = 26 }, name = 'deepwater' }, + { position = { x = 11, y = 27 }, name = 'deepwater' }, + { position = { x = 11, y = 28 }, name = 'deepwater' }, + { position = { x = 11, y = 29 }, name = 'dirt-5' }, + { position = { x = 11, y = 30 }, name = 'dirt-5' }, + { position = { x = 11, y = 31 }, name = 'dirt-5' }, + { position = { x = 12, y = 0 }, name = 'deepwater' }, + { position = { x = 12, y = 1 }, name = 'deepwater' }, + { position = { x = 12, y = 2 }, name = 'water' }, + { position = { x = 12, y = 3 }, name = 'water' }, + { position = { x = 12, y = 4 }, name = 'water' }, + { position = { x = 12, y = 5 }, name = 'water' }, + { position = { x = 12, y = 6 }, name = 'water' }, + { position = { x = 12, y = 7 }, name = 'water' }, + { position = { x = 12, y = 8 }, name = 'water' }, + { position = { x = 12, y = 9 }, name = 'deepwater' }, + { position = { x = 12, y = 10 }, name = 'deepwater' }, + { position = { x = 12, y = 11 }, name = 'deepwater' }, + { position = { x = 12, y = 12 }, name = 'deepwater' }, + { position = { x = 12, y = 13 }, name = 'deepwater' }, + { position = { x = 12, y = 14 }, name = 'refined-concrete' }, + { position = { x = 12, y = 15 }, name = 'refined-concrete' }, + { position = { x = 12, y = 16 }, name = 'refined-concrete' }, + { position = { x = 12, y = 17 }, name = 'deepwater' }, + { position = { x = 12, y = 18 }, name = 'deepwater' }, + { position = { x = 12, y = 19 }, name = 'deepwater' }, + { position = { x = 12, y = 20 }, name = 'deepwater' }, + { position = { x = 12, y = 21 }, name = 'deepwater' }, + { position = { x = 12, y = 22 }, name = 'deepwater' }, + { position = { x = 12, y = 23 }, name = 'deepwater' }, + { position = { x = 12, y = 24 }, name = 'deepwater' }, + { position = { x = 12, y = 25 }, name = 'dirt-5' }, + { position = { x = 12, y = 26 }, name = 'dirt-5' }, + { position = { x = 12, y = 27 }, name = 'dirt-5' }, + { position = { x = 12, y = 28 }, name = 'dirt-5' }, + { position = { x = 12, y = 29 }, name = 'dirt-5' }, + { position = { x = 12, y = 30 }, name = 'dirt-5' }, + { position = { x = 12, y = 31 }, name = 'dirt-5' }, + { position = { x = 13, y = 0 }, name = 'deepwater' }, + { position = { x = 13, y = 1 }, name = 'deepwater' }, + { position = { x = 13, y = 2 }, name = 'deepwater' }, + { position = { x = 13, y = 3 }, name = 'deepwater' }, + { position = { x = 13, y = 4 }, name = 'deepwater' }, + { position = { x = 13, y = 5 }, name = 'deepwater' }, + { position = { x = 13, y = 6 }, name = 'water' }, + { position = { x = 13, y = 7 }, name = 'water' }, + { position = { x = 13, y = 8 }, name = 'water' }, + { position = { x = 13, y = 9 }, name = 'deepwater' }, + { position = { x = 13, y = 10 }, name = 'deepwater' }, + { position = { x = 13, y = 11 }, name = 'deepwater' }, + { position = { x = 13, y = 12 }, name = 'deepwater' }, + { position = { x = 13, y = 13 }, name = 'deepwater' }, + { position = { x = 13, y = 14 }, name = 'refined-concrete' }, + { position = { x = 13, y = 15 }, name = 'refined-concrete' }, + { position = { x = 13, y = 16 }, name = 'refined-concrete' }, + { position = { x = 13, y = 17 }, name = 'deepwater' }, + { position = { x = 13, y = 18 }, name = 'deepwater' }, + { position = { x = 13, y = 19 }, name = 'deepwater' }, + { position = { x = 13, y = 20 }, name = 'deepwater' }, + { position = { x = 13, y = 21 }, name = 'deepwater' }, + { position = { x = 13, y = 22 }, name = 'dirt-5' }, + { position = { x = 13, y = 23 }, name = 'dirt-5' }, + { position = { x = 13, y = 24 }, name = 'dirt-5' }, + { position = { x = 13, y = 25 }, name = 'dirt-5' }, + { position = { x = 13, y = 26 }, name = 'dirt-5' }, + { position = { x = 13, y = 27 }, name = 'dirt-5' }, + { position = { x = 13, y = 28 }, name = 'dirt-5' }, + { position = { x = 13, y = 29 }, name = 'dirt-5' }, + { position = { x = 13, y = 30 }, name = 'dirt-5' }, + { position = { x = 13, y = 31 }, name = 'dirt-5' }, + { position = { x = 14, y = 0 }, name = 'deepwater' }, + { position = { x = 14, y = 1 }, name = 'deepwater' }, + { position = { x = 14, y = 2 }, name = 'deepwater' }, + { position = { x = 14, y = 3 }, name = 'deepwater' }, + { position = { x = 14, y = 4 }, name = 'deepwater' }, + { position = { x = 14, y = 5 }, name = 'deepwater' }, + { position = { x = 14, y = 6 }, name = 'deepwater' }, + { position = { x = 14, y = 7 }, name = 'deepwater' }, + { position = { x = 14, y = 8 }, name = 'deepwater' }, + { position = { x = 14, y = 9 }, name = 'deepwater' }, + { position = { x = 14, y = 10 }, name = 'deepwater' }, + { position = { x = 14, y = 11 }, name = 'deepwater' }, + { position = { x = 14, y = 12 }, name = 'deepwater' }, + { position = { x = 14, y = 13 }, name = 'refined-concrete' }, + { position = { x = 14, y = 14 }, name = 'stone-path' }, + { position = { x = 14, y = 15 }, name = 'stone-path' }, + { position = { x = 14, y = 16 }, name = 'stone-path' }, + { position = { x = 14, y = 17 }, name = 'refined-concrete' }, + { position = { x = 14, y = 18 }, name = 'deepwater' }, + { position = { x = 14, y = 19 }, name = 'deepwater' }, + { position = { x = 14, y = 20 }, name = 'deepwater' }, + { position = { x = 14, y = 21 }, name = 'deepwater' }, + { position = { x = 14, y = 22 }, name = 'dirt-5' }, + { position = { x = 14, y = 23 }, name = 'dirt-5' }, + { position = { x = 14, y = 24 }, name = 'dirt-5' }, + { position = { x = 14, y = 25 }, name = 'dirt-5' }, + { position = { x = 14, y = 26 }, name = 'dirt-5' }, + { position = { x = 14, y = 27 }, name = 'dirt-5' }, + { position = { x = 14, y = 28 }, name = 'dirt-5' }, + { position = { x = 14, y = 29 }, name = 'dirt-5' }, + { position = { x = 14, y = 30 }, name = 'dirt-5' }, + { position = { x = 14, y = 31 }, name = 'dirt-5' }, + { position = { x = 15, y = 0 }, name = 'refined-concrete' }, + { position = { x = 15, y = 1 }, name = 'refined-concrete' }, + { position = { x = 15, y = 2 }, name = 'refined-concrete' }, + { position = { x = 15, y = 3 }, name = 'refined-concrete' }, + { position = { x = 15, y = 4 }, name = 'dirt-5' }, + { position = { x = 15, y = 5 }, name = 'dirt-5' }, + { position = { x = 15, y = 6 }, name = 'refined-concrete' }, + { position = { x = 15, y = 7 }, name = 'refined-concrete' }, + { position = { x = 15, y = 8 }, name = 'refined-concrete' }, + { position = { x = 15, y = 9 }, name = 'refined-concrete' }, + { position = { x = 15, y = 10 }, name = 'refined-concrete' }, + { position = { x = 15, y = 11 }, name = 'refined-concrete' }, + { position = { x = 15, y = 12 }, name = 'refined-concrete' }, + { position = { x = 15, y = 13 }, name = 'stone-path' }, + { position = { x = 15, y = 14 }, name = 'water-green' }, + { position = { x = 15, y = 15 }, name = 'grass-1' }, + { position = { x = 15, y = 16 }, name = 'water-green' }, + { position = { x = 15, y = 17 }, name = 'stone-path' }, + { position = { x = 15, y = 18 }, name = 'refined-concrete' }, + { position = { x = 15, y = 19 }, name = 'refined-concrete' }, + { position = { x = 15, y = 20 }, name = 'refined-concrete' }, + { position = { x = 15, y = 21 }, name = 'refined-concrete' }, + { position = { x = 15, y = 22 }, name = 'dirt-5' }, + { position = { x = 15, y = 23 }, name = 'dirt-5' }, + { position = { x = 15, y = 24 }, name = 'refined-concrete' }, + { position = { x = 15, y = 25 }, name = 'refined-concrete' }, + { position = { x = 15, y = 26 }, name = 'refined-concrete' }, + { position = { x = 15, y = 27 }, name = 'dirt-5' }, + { position = { x = 15, y = 28 }, name = 'dirt-5' }, + { position = { x = 15, y = 29 }, name = 'refined-concrete' }, + { position = { x = 15, y = 30 }, name = 'dirt-5' }, + { position = { x = 15, y = 31 }, name = 'dirt-5' }, + { position = { x = 16, y = 0 }, name = 'stone-path' }, + { position = { x = 16, y = 1 }, name = 'dirt-5' }, + { position = { x = 16, y = 2 }, name = 'dirt-5' }, + { position = { x = 16, y = 3 }, name = 'refined-concrete' }, + { position = { x = 16, y = 4 }, name = 'dirt-5' }, + { position = { x = 16, y = 5 }, name = 'dirt-5' }, + { position = { x = 16, y = 6 }, name = 'refined-concrete' }, + { position = { x = 16, y = 7 }, name = 'refined-concrete' }, + { position = { x = 16, y = 8 }, name = 'stone-path' }, + { position = { x = 16, y = 9 }, name = 'stone-path' }, + { position = { x = 16, y = 10 }, name = 'refined-concrete' }, + { position = { x = 16, y = 11 }, name = 'refined-concrete' }, + { position = { x = 16, y = 12 }, name = 'refined-concrete' }, + { position = { x = 16, y = 13 }, name = 'stone-path' }, + { position = { x = 16, y = 14 }, name = 'grass-1' }, + { position = { x = 16, y = 15 }, name = 'grass-1' }, + { position = { x = 16, y = 16 }, name = 'grass-1' }, + { position = { x = 16, y = 17 }, name = 'stone-path' }, + { position = { x = 16, y = 18 }, name = 'refined-concrete' }, + { position = { x = 16, y = 19 }, name = 'refined-concrete' }, + { position = { x = 16, y = 20 }, name = 'refined-concrete' }, + { position = { x = 16, y = 21 }, name = 'refined-concrete' }, + { position = { x = 16, y = 22 }, name = 'stone-path' }, + { position = { x = 16, y = 23 }, name = 'stone-path' }, + { position = { x = 16, y = 24 }, name = 'refined-concrete' }, + { position = { x = 16, y = 25 }, name = 'refined-concrete' }, + { position = { x = 16, y = 26 }, name = 'stone-path' }, + { position = { x = 16, y = 27 }, name = 'dirt-5' }, + { position = { x = 16, y = 28 }, name = 'dirt-5' }, + { position = { x = 16, y = 29 }, name = 'refined-concrete' }, + { position = { x = 16, y = 30 }, name = 'stone-path' }, + { position = { x = 16, y = 31 }, name = 'stone-path' }, + { position = { x = 17, y = 0 }, name = 'refined-concrete' }, + { position = { x = 17, y = 1 }, name = 'dirt-5' }, + { position = { x = 17, y = 2 }, name = 'dirt-5' }, + { position = { x = 17, y = 3 }, name = 'refined-concrete' }, + { position = { x = 17, y = 4 }, name = 'refined-concrete' }, + { position = { x = 17, y = 5 }, name = 'refined-concrete' }, + { position = { x = 17, y = 6 }, name = 'refined-concrete' }, + { position = { x = 17, y = 7 }, name = 'refined-concrete' }, + { position = { x = 17, y = 8 }, name = 'refined-concrete' }, + { position = { x = 17, y = 9 }, name = 'refined-concrete' }, + { position = { x = 17, y = 10 }, name = 'refined-concrete' }, + { position = { x = 17, y = 11 }, name = 'refined-concrete' }, + { position = { x = 17, y = 12 }, name = 'refined-concrete' }, + { position = { x = 17, y = 13 }, name = 'stone-path' }, + { position = { x = 17, y = 14 }, name = 'water-green' }, + { position = { x = 17, y = 15 }, name = 'grass-1' }, + { position = { x = 17, y = 16 }, name = 'water-green' }, + { position = { x = 17, y = 17 }, name = 'stone-path' }, + { position = { x = 17, y = 18 }, name = 'refined-concrete' }, + { position = { x = 17, y = 19 }, name = 'refined-concrete' }, + { position = { x = 17, y = 20 }, name = 'refined-concrete' }, + { position = { x = 17, y = 21 }, name = 'refined-concrete' }, + { position = { x = 17, y = 22 }, name = 'refined-concrete' }, + { position = { x = 17, y = 23 }, name = 'refined-concrete' }, + { position = { x = 17, y = 24 }, name = 'dirt-5' }, + { position = { x = 17, y = 25 }, name = 'dirt-5' }, + { position = { x = 17, y = 26 }, name = 'refined-concrete' }, + { position = { x = 17, y = 27 }, name = 'refined-concrete' }, + { position = { x = 17, y = 28 }, name = 'refined-concrete' }, + { position = { x = 17, y = 29 }, name = 'refined-concrete' }, + { position = { x = 17, y = 30 }, name = 'refined-concrete' }, + { position = { x = 17, y = 31 }, name = 'refined-concrete' }, + { position = { x = 18, y = 0 }, name = 'dirt-5' }, + { position = { x = 18, y = 1 }, name = 'dirt-5' }, + { position = { x = 18, y = 2 }, name = 'deepwater' }, + { position = { x = 18, y = 3 }, name = 'deepwater' }, + { position = { x = 18, y = 4 }, name = 'water' }, + { position = { x = 18, y = 5 }, name = 'water' }, + { position = { x = 18, y = 6 }, name = 'deepwater' }, + { position = { x = 18, y = 7 }, name = 'deepwater' }, + { position = { x = 18, y = 8 }, name = 'deepwater' }, + { position = { x = 18, y = 9 }, name = 'deepwater' }, + { position = { x = 18, y = 10 }, name = 'deepwater' }, + { position = { x = 18, y = 11 }, name = 'deepwater' }, + { position = { x = 18, y = 12 }, name = 'deepwater' }, + { position = { x = 18, y = 13 }, name = 'refined-concrete' }, + { position = { x = 18, y = 14 }, name = 'stone-path' }, + { position = { x = 18, y = 15 }, name = 'stone-path' }, + { position = { x = 18, y = 16 }, name = 'stone-path' }, + { position = { x = 18, y = 17 }, name = 'refined-concrete' }, + { position = { x = 18, y = 18 }, name = 'deepwater' }, + { position = { x = 18, y = 19 }, name = 'deepwater' }, + { position = { x = 18, y = 20 }, name = 'deepwater' }, + { position = { x = 18, y = 21 }, name = 'deepwater' }, + { position = { x = 18, y = 22 }, name = 'deepwater' }, + { position = { x = 18, y = 23 }, name = 'deepwater' }, + { position = { x = 18, y = 24 }, name = 'dirt-5' }, + { position = { x = 18, y = 25 }, name = 'dirt-5' }, + { position = { x = 18, y = 26 }, name = 'deepwater' }, + { position = { x = 18, y = 27 }, name = 'deepwater' }, + { position = { x = 18, y = 28 }, name = 'deepwater' }, + { position = { x = 18, y = 29 }, name = 'deepwater' }, + { position = { x = 18, y = 30 }, name = 'deepwater' }, + { position = { x = 18, y = 31 }, name = 'deepwater' }, + { position = { x = 19, y = 0 }, name = 'dirt-5' }, + { position = { x = 19, y = 1 }, name = 'dirt-5' }, + { position = { x = 19, y = 2 }, name = 'water' }, + { position = { x = 19, y = 3 }, name = 'water' }, + { position = { x = 19, y = 4 }, name = 'water' }, + { position = { x = 19, y = 5 }, name = 'water' }, + { position = { x = 19, y = 6 }, name = 'water' }, + { position = { x = 19, y = 7 }, name = 'deepwater' }, + { position = { x = 19, y = 8 }, name = 'deepwater' }, + { position = { x = 19, y = 9 }, name = 'water' }, + { position = { x = 19, y = 10 }, name = 'water' }, + { position = { x = 19, y = 11 }, name = 'deepwater' }, + { position = { x = 19, y = 12 }, name = 'deepwater' }, + { position = { x = 19, y = 13 }, name = 'deepwater' }, + { position = { x = 19, y = 14 }, name = 'refined-concrete' }, + { position = { x = 19, y = 15 }, name = 'refined-concrete' }, + { position = { x = 19, y = 16 }, name = 'refined-concrete' }, + { position = { x = 19, y = 17 }, name = 'deepwater' }, + { position = { x = 19, y = 18 }, name = 'deepwater' }, + { position = { x = 19, y = 19 }, name = 'deepwater' }, + { position = { x = 19, y = 20 }, name = 'deepwater' }, + { position = { x = 19, y = 21 }, name = 'deepwater' }, + { position = { x = 19, y = 22 }, name = 'deepwater' }, + { position = { x = 19, y = 23 }, name = 'deepwater' }, + { position = { x = 19, y = 24 }, name = 'dirt-5' }, + { position = { x = 19, y = 25 }, name = 'dirt-5' }, + { position = { x = 19, y = 26 }, name = 'deepwater' }, + { position = { x = 19, y = 27 }, name = 'deepwater' }, + { position = { x = 19, y = 28 }, name = 'deepwater' }, + { position = { x = 19, y = 29 }, name = 'deepwater' }, + { position = { x = 19, y = 30 }, name = 'deepwater' }, + { position = { x = 19, y = 31 }, name = 'deepwater' }, + { position = { x = 20, y = 0 }, name = 'dirt-5' }, + { position = { x = 20, y = 1 }, name = 'dirt-5' }, + { position = { x = 20, y = 2 }, name = 'water' }, + { position = { x = 20, y = 3 }, name = 'water' }, + { position = { x = 20, y = 4 }, name = 'water' }, + { position = { x = 20, y = 5 }, name = 'water' }, + { position = { x = 20, y = 6 }, name = 'water' }, + { position = { x = 20, y = 7 }, name = 'deepwater' }, + { position = { x = 20, y = 8 }, name = 'deepwater' }, + { position = { x = 20, y = 9 }, name = 'water' }, + { position = { x = 20, y = 10 }, name = 'water' }, + { position = { x = 20, y = 11 }, name = 'deepwater' }, + { position = { x = 20, y = 12 }, name = 'deepwater' }, + { position = { x = 20, y = 13 }, name = 'deepwater' }, + { position = { x = 20, y = 14 }, name = 'refined-concrete' }, + { position = { x = 20, y = 15 }, name = 'refined-concrete' }, + { position = { x = 20, y = 16 }, name = 'refined-concrete' }, + { position = { x = 20, y = 17 }, name = 'deepwater' }, + { position = { x = 20, y = 18 }, name = 'deepwater' }, + { position = { x = 20, y = 19 }, name = 'deepwater' }, + { position = { x = 20, y = 20 }, name = 'deepwater' }, + { position = { x = 20, y = 21 }, name = 'deepwater' }, + { position = { x = 20, y = 22 }, name = 'deepwater' }, + { position = { x = 20, y = 23 }, name = 'deepwater' }, + { position = { x = 20, y = 24 }, name = 'dirt-5' }, + { position = { x = 20, y = 25 }, name = 'dirt-5' }, + { position = { x = 20, y = 26 }, name = 'dirt-5' }, + { position = { x = 20, y = 27 }, name = 'dirt-5' }, + { position = { x = 20, y = 28 }, name = 'deepwater' }, + { position = { x = 20, y = 29 }, name = 'deepwater' }, + { position = { x = 20, y = 30 }, name = 'deepwater' }, + { position = { x = 20, y = 31 }, name = 'deepwater' }, + { position = { x = 21, y = 0 }, name = 'dirt-5' }, + { position = { x = 21, y = 1 }, name = 'dirt-5' }, + { position = { x = 21, y = 2 }, name = 'dirt-5' }, + { position = { x = 21, y = 3 }, name = 'dirt-5' }, + { position = { x = 21, y = 4 }, name = 'dirt-5' }, + { position = { x = 21, y = 5 }, name = 'water' }, + { position = { x = 21, y = 6 }, name = 'water' }, + { position = { x = 21, y = 7 }, name = 'water' }, + { position = { x = 21, y = 8 }, name = 'water' }, + { position = { x = 21, y = 9 }, name = 'water' }, + { position = { x = 21, y = 10 }, name = 'water' }, + { position = { x = 21, y = 11 }, name = 'water' }, + { position = { x = 21, y = 12 }, name = 'water' }, + { position = { x = 21, y = 13 }, name = 'deepwater' }, + { position = { x = 21, y = 14 }, name = 'refined-concrete' }, + { position = { x = 21, y = 15 }, name = 'refined-concrete' }, + { position = { x = 21, y = 16 }, name = 'refined-concrete' }, + { position = { x = 21, y = 17 }, name = 'deepwater' }, + { position = { x = 21, y = 18 }, name = 'deepwater' }, + { position = { x = 21, y = 19 }, name = 'deepwater' }, + { position = { x = 21, y = 20 }, name = 'deepwater' }, + { position = { x = 21, y = 21 }, name = 'deepwater' }, + { position = { x = 21, y = 22 }, name = 'deepwater' }, + { position = { x = 21, y = 23 }, name = 'dirt-5' }, + { position = { x = 21, y = 24 }, name = 'dirt-5' }, + { position = { x = 21, y = 25 }, name = 'dirt-5' }, + { position = { x = 21, y = 26 }, name = 'dirt-5' }, + { position = { x = 21, y = 27 }, name = 'dirt-5' }, + { position = { x = 21, y = 28 }, name = 'dirt-5' }, + { position = { x = 21, y = 29 }, name = 'deepwater' }, + { position = { x = 21, y = 30 }, name = 'deepwater' }, + { position = { x = 21, y = 31 }, name = 'deepwater' }, + { position = { x = 22, y = 0 }, name = 'dirt-5' }, + { position = { x = 22, y = 1 }, name = 'dirt-5' }, + { position = { x = 22, y = 2 }, name = 'dirt-5' }, + { position = { x = 22, y = 3 }, name = 'dirt-5' }, + { position = { x = 22, y = 4 }, name = 'dirt-5' }, + { position = { x = 22, y = 5 }, name = 'dirt-5' }, + { position = { x = 22, y = 6 }, name = 'water' }, + { position = { x = 22, y = 7 }, name = 'water' }, + { position = { x = 22, y = 8 }, name = 'dirt-5' }, + { position = { x = 22, y = 9 }, name = 'dirt-5' }, + { position = { x = 22, y = 10 }, name = 'water' }, + { position = { x = 22, y = 11 }, name = 'water' }, + { position = { x = 22, y = 12 }, name = 'water' }, + { position = { x = 22, y = 13 }, name = 'deepwater' }, + { position = { x = 22, y = 14 }, name = 'refined-concrete' }, + { position = { x = 22, y = 15 }, name = 'stone-path' }, + { position = { x = 22, y = 16 }, name = 'dirt-5' }, + { position = { x = 22, y = 17 }, name = 'dirt-5' }, + { position = { x = 22, y = 18 }, name = 'deepwater' }, + { position = { x = 22, y = 19 }, name = 'deepwater' }, + { position = { x = 22, y = 20 }, name = 'deepwater' }, + { position = { x = 22, y = 21 }, name = 'dirt-5' }, + { position = { x = 22, y = 22 }, name = 'dirt-5' }, + { position = { x = 22, y = 23 }, name = 'dirt-5' }, + { position = { x = 22, y = 24 }, name = 'dirt-5' }, + { position = { x = 22, y = 25 }, name = 'dirt-5' }, + { position = { x = 22, y = 26 }, name = 'dirt-5' }, + { position = { x = 22, y = 27 }, name = 'dirt-5' }, + { position = { x = 22, y = 28 }, name = 'dirt-5' }, + { position = { x = 22, y = 29 }, name = 'dirt-5' }, + { position = { x = 22, y = 30 }, name = 'dirt-5' }, + { position = { x = 22, y = 31 }, name = 'water' }, + { position = { x = 23, y = 0 }, name = 'dirt-5' }, + { position = { x = 23, y = 1 }, name = 'dirt-5' }, + { position = { x = 23, y = 2 }, name = 'dirt-5' }, + { position = { x = 23, y = 3 }, name = 'dirt-5' }, + { position = { x = 23, y = 4 }, name = 'dirt-5' }, + { position = { x = 23, y = 5 }, name = 'dirt-5' }, + { position = { x = 23, y = 6 }, name = 'dirt-5' }, + { position = { x = 23, y = 7 }, name = 'water' }, + { position = { x = 23, y = 8 }, name = 'dirt-5' }, + { position = { x = 23, y = 9 }, name = 'dirt-5' }, + { position = { x = 23, y = 10 }, name = 'water' }, + { position = { x = 23, y = 11 }, name = 'water' }, + { position = { x = 23, y = 12 }, name = 'water' }, + { position = { x = 23, y = 13 }, name = 'deepwater' }, + { position = { x = 23, y = 14 }, name = 'refined-concrete' }, + { position = { x = 23, y = 15 }, name = 'stone-path' }, + { position = { x = 23, y = 16 }, name = 'dirt-5' }, + { position = { x = 23, y = 17 }, name = 'dirt-5' }, + { position = { x = 23, y = 18 }, name = 'deepwater' }, + { position = { x = 23, y = 19 }, name = 'deepwater' }, + { position = { x = 23, y = 20 }, name = 'deepwater' }, + { position = { x = 23, y = 21 }, name = 'dirt-5' }, + { position = { x = 23, y = 22 }, name = 'dirt-5' }, + { position = { x = 23, y = 23 }, name = 'dirt-5' }, + { position = { x = 23, y = 24 }, name = 'dirt-5' }, + { position = { x = 23, y = 25 }, name = 'dirt-5' }, + { position = { x = 23, y = 26 }, name = 'dirt-5' }, + { position = { x = 23, y = 27 }, name = 'dirt-5' }, + { position = { x = 23, y = 28 }, name = 'dirt-5' }, + { position = { x = 23, y = 29 }, name = 'dirt-5' }, + { position = { x = 23, y = 30 }, name = 'dirt-5' }, + { position = { x = 23, y = 31 }, name = 'dirt-5' }, + { position = { x = 24, y = 0 }, name = 'dirt-5' }, + { position = { x = 24, y = 1 }, name = 'dirt-5' }, + { position = { x = 24, y = 2 }, name = 'dirt-5' }, + { position = { x = 24, y = 3 }, name = 'dirt-5' }, + { position = { x = 24, y = 4 }, name = 'dirt-5' }, + { position = { x = 24, y = 5 }, name = 'dirt-5' }, + { position = { x = 24, y = 6 }, name = 'dirt-5' }, + { position = { x = 24, y = 7 }, name = 'dirt-5' }, + { position = { x = 24, y = 8 }, name = 'dirt-5' }, + { position = { x = 24, y = 9 }, name = 'dirt-5' }, + { position = { x = 24, y = 10 }, name = 'dirt-5' }, + { position = { x = 24, y = 11 }, name = 'water' }, + { position = { x = 24, y = 12 }, name = 'water' }, + { position = { x = 24, y = 13 }, name = 'deepwater' }, + { position = { x = 24, y = 14 }, name = 'refined-concrete' }, + { position = { x = 24, y = 15 }, name = 'refined-concrete' }, + { position = { x = 24, y = 16 }, name = 'dirt-5' }, + { position = { x = 24, y = 17 }, name = 'dirt-5' }, + { position = { x = 24, y = 18 }, name = 'dirt-5' }, + { position = { x = 24, y = 19 }, name = 'dirt-5' }, + { position = { x = 24, y = 20 }, name = 'dirt-5' }, + { position = { x = 24, y = 21 }, name = 'dirt-5' }, + { position = { x = 24, y = 22 }, name = 'dirt-5' }, + { position = { x = 24, y = 23 }, name = 'dirt-5' }, + { position = { x = 24, y = 24 }, name = 'dirt-5' }, + { position = { x = 24, y = 25 }, name = 'dirt-5' }, + { position = { x = 24, y = 26 }, name = 'dirt-5' }, + { position = { x = 24, y = 27 }, name = 'dirt-5' }, + { position = { x = 24, y = 28 }, name = 'dirt-5' }, + { position = { x = 24, y = 29 }, name = 'dirt-5' }, + { position = { x = 24, y = 30 }, name = 'dirt-5' }, + { position = { x = 24, y = 31 }, name = 'dirt-5' }, + { position = { x = 25, y = 0 }, name = 'dirt-5' }, + { position = { x = 25, y = 1 }, name = 'dirt-5' }, + { position = { x = 25, y = 2 }, name = 'dirt-5' }, + { position = { x = 25, y = 3 }, name = 'dirt-5' }, + { position = { x = 25, y = 4 }, name = 'dirt-5' }, + { position = { x = 25, y = 5 }, name = 'dirt-5' }, + { position = { x = 25, y = 6 }, name = 'dirt-5' }, + { position = { x = 25, y = 7 }, name = 'dirt-5' }, + { position = { x = 25, y = 8 }, name = 'dirt-5' }, + { position = { x = 25, y = 9 }, name = 'dirt-5' }, + { position = { x = 25, y = 10 }, name = 'dirt-5' }, + { position = { x = 25, y = 11 }, name = 'water' }, + { position = { x = 25, y = 12 }, name = 'water' }, + { position = { x = 25, y = 13 }, name = 'deepwater' }, + { position = { x = 25, y = 14 }, name = 'refined-concrete' }, + { position = { x = 25, y = 15 }, name = 'refined-concrete' }, + { position = { x = 25, y = 16 }, name = 'refined-concrete' }, + { position = { x = 25, y = 17 }, name = 'deepwater' }, + { position = { x = 25, y = 18 }, name = 'dirt-5' }, + { position = { x = 25, y = 19 }, name = 'dirt-5' }, + { position = { x = 25, y = 20 }, name = 'dirt-5' }, + { position = { x = 25, y = 21 }, name = 'dirt-5' }, + { position = { x = 25, y = 22 }, name = 'dirt-5' }, + { position = { x = 25, y = 23 }, name = 'dirt-5' }, + { position = { x = 25, y = 24 }, name = 'dirt-5' }, + { position = { x = 25, y = 25 }, name = 'dirt-5' }, + { position = { x = 25, y = 26 }, name = 'dirt-5' }, + { position = { x = 25, y = 27 }, name = 'dirt-5' }, + { position = { x = 25, y = 28 }, name = 'dirt-5' }, + { position = { x = 25, y = 29 }, name = 'dirt-5' }, + { position = { x = 25, y = 30 }, name = 'dirt-5' }, + { position = { x = 25, y = 31 }, name = 'dirt-5' }, + { position = { x = 26, y = 0 }, name = 'dirt-5' }, + { position = { x = 26, y = 1 }, name = 'dirt-5' }, + { position = { x = 26, y = 2 }, name = 'dirt-5' }, + { position = { x = 26, y = 3 }, name = 'dirt-5' }, + { position = { x = 26, y = 4 }, name = 'dirt-5' }, + { position = { x = 26, y = 5 }, name = 'dirt-5' }, + { position = { x = 26, y = 6 }, name = 'dirt-5' }, + { position = { x = 26, y = 7 }, name = 'dirt-5' }, + { position = { x = 26, y = 8 }, name = 'dirt-5' }, + { position = { x = 26, y = 9 }, name = 'dirt-5' }, + { position = { x = 26, y = 10 }, name = 'dirt-5' }, + { position = { x = 26, y = 11 }, name = 'water' }, + { position = { x = 26, y = 12 }, name = 'water' }, + { position = { x = 26, y = 13 }, name = 'deepwater' }, + { position = { x = 26, y = 14 }, name = 'refined-concrete' }, + { position = { x = 26, y = 15 }, name = 'stone-path' }, + { position = { x = 26, y = 16 }, name = 'refined-concrete' }, + { position = { x = 26, y = 17 }, name = 'deepwater' }, + { position = { x = 26, y = 18 }, name = 'deepwater' }, + { position = { x = 26, y = 19 }, name = 'deepwater' }, + { position = { x = 26, y = 20 }, name = 'deepwater' }, + { position = { x = 26, y = 21 }, name = 'dirt-5' }, + { position = { x = 26, y = 22 }, name = 'dirt-5' }, + { position = { x = 26, y = 23 }, name = 'dirt-5' }, + { position = { x = 26, y = 24 }, name = 'dirt-5' }, + { position = { x = 26, y = 25 }, name = 'dirt-5' }, + { position = { x = 26, y = 26 }, name = 'dirt-5' }, + { position = { x = 26, y = 27 }, name = 'dirt-5' }, + { position = { x = 26, y = 28 }, name = 'dirt-5' }, + { position = { x = 26, y = 29 }, name = 'dirt-5' }, + { position = { x = 26, y = 30 }, name = 'dirt-5' }, + { position = { x = 26, y = 31 }, name = 'dirt-5' }, + { position = { x = 27, y = 0 }, name = 'dirt-5' }, + { position = { x = 27, y = 1 }, name = 'dirt-5' }, + { position = { x = 27, y = 2 }, name = 'dirt-5' }, + { position = { x = 27, y = 3 }, name = 'dirt-5' }, + { position = { x = 27, y = 4 }, name = 'dirt-5' }, + { position = { x = 27, y = 5 }, name = 'dirt-5' }, + { position = { x = 27, y = 6 }, name = 'dirt-5' }, + { position = { x = 27, y = 7 }, name = 'dirt-5' }, + { position = { x = 27, y = 8 }, name = 'dirt-5' }, + { position = { x = 27, y = 9 }, name = 'dirt-5' }, + { position = { x = 27, y = 10 }, name = 'dirt-5' }, + { position = { x = 27, y = 11 }, name = 'dirt-5' }, + { position = { x = 27, y = 12 }, name = 'water' }, + { position = { x = 27, y = 13 }, name = 'deepwater' }, + { position = { x = 27, y = 14 }, name = 'refined-concrete' }, + { position = { x = 27, y = 15 }, name = 'stone-path' }, + { position = { x = 27, y = 16 }, name = 'refined-concrete' }, + { position = { x = 27, y = 17 }, name = 'deepwater' }, + { position = { x = 27, y = 18 }, name = 'deepwater' }, + { position = { x = 27, y = 19 }, name = 'deepwater' }, + { position = { x = 27, y = 20 }, name = 'deepwater' }, + { position = { x = 27, y = 21 }, name = 'deepwater' }, + { position = { x = 27, y = 22 }, name = 'deepwater' }, + { position = { x = 27, y = 23 }, name = 'dirt-5' }, + { position = { x = 27, y = 24 }, name = 'dirt-5' }, + { position = { x = 27, y = 25 }, name = 'dirt-5' }, + { position = { x = 27, y = 26 }, name = 'dirt-5' }, + { position = { x = 27, y = 27 }, name = 'dirt-5' }, + { position = { x = 27, y = 28 }, name = 'dirt-5' }, + { position = { x = 27, y = 29 }, name = 'dirt-5' }, + { position = { x = 27, y = 30 }, name = 'water' }, + { position = { x = 27, y = 31 }, name = 'water' }, + { position = { x = 28, y = 0 }, name = 'dirt-5' }, + { position = { x = 28, y = 1 }, name = 'dirt-5' }, + { position = { x = 28, y = 2 }, name = 'dirt-5' }, + { position = { x = 28, y = 3 }, name = 'dirt-5' }, + { position = { x = 28, y = 4 }, name = 'dirt-5' }, + { position = { x = 28, y = 5 }, name = 'dirt-5' }, + { position = { x = 28, y = 6 }, name = 'dirt-5' }, + { position = { x = 28, y = 7 }, name = 'dirt-5' }, + { position = { x = 28, y = 8 }, name = 'dirt-5' }, + { position = { x = 28, y = 9 }, name = 'dirt-5' }, + { position = { x = 28, y = 10 }, name = 'dirt-5' }, + { position = { x = 28, y = 11 }, name = 'dirt-5' }, + { position = { x = 28, y = 12 }, name = 'water' }, + { position = { x = 28, y = 13 }, name = 'deepwater' }, + { position = { x = 28, y = 14 }, name = 'refined-concrete' }, + { position = { x = 28, y = 15 }, name = 'refined-concrete' }, + { position = { x = 28, y = 16 }, name = 'refined-concrete' }, + { position = { x = 28, y = 17 }, name = 'deepwater' }, + { position = { x = 28, y = 18 }, name = 'deepwater' }, + { position = { x = 28, y = 19 }, name = 'deepwater' }, + { position = { x = 28, y = 20 }, name = 'deepwater' }, + { position = { x = 28, y = 21 }, name = 'deepwater' }, + { position = { x = 28, y = 22 }, name = 'deepwater' }, + { position = { x = 28, y = 23 }, name = 'dirt-5' }, + { position = { x = 28, y = 24 }, name = 'dirt-5' }, + { position = { x = 28, y = 25 }, name = 'dirt-5' }, + { position = { x = 28, y = 26 }, name = 'dirt-5' }, + { position = { x = 28, y = 27 }, name = 'dirt-5' }, + { position = { x = 28, y = 28 }, name = 'dirt-5' }, + { position = { x = 28, y = 29 }, name = 'water' }, + { position = { x = 28, y = 30 }, name = 'water' }, + { position = { x = 28, y = 31 }, name = 'water' }, + { position = { x = 29, y = 0 }, name = 'dirt-5' }, + { position = { x = 29, y = 1 }, name = 'dirt-5' }, + { position = { x = 29, y = 2 }, name = 'dirt-5' }, + { position = { x = 29, y = 3 }, name = 'dirt-5' }, + { position = { x = 29, y = 4 }, name = 'dirt-5' }, + { position = { x = 29, y = 5 }, name = 'dirt-5' }, + { position = { x = 29, y = 6 }, name = 'dirt-5' }, + { position = { x = 29, y = 7 }, name = 'dirt-5' }, + { position = { x = 29, y = 8 }, name = 'dirt-5' }, + { position = { x = 29, y = 9 }, name = 'dirt-5' }, + { position = { x = 29, y = 10 }, name = 'dirt-5' }, + { position = { x = 29, y = 11 }, name = 'dirt-5' }, + { position = { x = 29, y = 12 }, name = 'water' }, + { position = { x = 29, y = 13 }, name = 'dirt-5' }, + { position = { x = 29, y = 14 }, name = 'dirt-5' }, + { position = { x = 29, y = 15 }, name = 'refined-concrete' }, + { position = { x = 29, y = 16 }, name = 'refined-concrete' }, + { position = { x = 29, y = 17 }, name = 'deepwater' }, + { position = { x = 29, y = 18 }, name = 'deepwater' }, + { position = { x = 29, y = 19 }, name = 'deepwater' }, + { position = { x = 29, y = 20 }, name = 'deepwater' }, + { position = { x = 29, y = 21 }, name = 'deepwater' }, + { position = { x = 29, y = 22 }, name = 'deepwater' }, + { position = { x = 29, y = 23 }, name = 'dirt-5' }, + { position = { x = 29, y = 24 }, name = 'dirt-5' }, + { position = { x = 29, y = 25 }, name = 'dirt-5' }, + { position = { x = 29, y = 26 }, name = 'dirt-5' }, + { position = { x = 29, y = 27 }, name = 'dirt-5' }, + { position = { x = 29, y = 28 }, name = 'dirt-5' }, + { position = { x = 29, y = 29 }, name = 'water' }, + { position = { x = 29, y = 30 }, name = 'water' }, + { position = { x = 29, y = 31 }, name = 'water' }, + { position = { x = 30, y = 0 }, name = 'dirt-5' }, + { position = { x = 30, y = 1 }, name = 'dirt-5' }, + { position = { x = 30, y = 2 }, name = 'dirt-5' }, + { position = { x = 30, y = 3 }, name = 'dirt-5' }, + { position = { x = 30, y = 4 }, name = 'dirt-5' }, + { position = { x = 30, y = 5 }, name = 'dirt-5' }, + { position = { x = 30, y = 6 }, name = 'dirt-5' }, + { position = { x = 30, y = 7 }, name = 'dirt-5' }, + { position = { x = 30, y = 8 }, name = 'dirt-5' }, + { position = { x = 30, y = 9 }, name = 'dirt-5' }, + { position = { x = 30, y = 10 }, name = 'dirt-5' }, + { position = { x = 30, y = 11 }, name = 'dirt-5' }, + { position = { x = 30, y = 12 }, name = 'dirt-5' }, + { position = { x = 30, y = 13 }, name = 'dirt-5' }, + { position = { x = 30, y = 14 }, name = 'dirt-5' }, + { position = { x = 30, y = 15 }, name = 'stone-path' }, + { position = { x = 30, y = 16 }, name = 'refined-concrete' }, + { position = { x = 30, y = 17 }, name = 'deepwater' }, + { position = { x = 30, y = 18 }, name = 'deepwater' }, + { position = { x = 30, y = 19 }, name = 'deepwater' }, + { position = { x = 30, y = 20 }, name = 'deepwater' }, + { position = { x = 30, y = 21 }, name = 'deepwater' }, + { position = { x = 30, y = 22 }, name = 'deepwater' }, + { position = { x = 30, y = 23 }, name = 'dirt-5' }, + { position = { x = 30, y = 24 }, name = 'dirt-5' }, + { position = { x = 30, y = 25 }, name = 'dirt-5' }, + { position = { x = 30, y = 26 }, name = 'dirt-5' }, + { position = { x = 30, y = 27 }, name = 'dirt-5' }, + { position = { x = 30, y = 28 }, name = 'dirt-5' }, + { position = { x = 30, y = 29 }, name = 'water' }, + { position = { x = 30, y = 30 }, name = 'water' }, + { position = { x = 30, y = 31 }, name = 'water' }, + { position = { x = 31, y = 0 }, name = 'dirt-5' }, + { position = { x = 31, y = 1 }, name = 'dirt-5' }, + { position = { x = 31, y = 2 }, name = 'dirt-5' }, + { position = { x = 31, y = 3 }, name = 'dirt-5' }, + { position = { x = 31, y = 4 }, name = 'dirt-5' }, + { position = { x = 31, y = 5 }, name = 'dirt-5' }, + { position = { x = 31, y = 6 }, name = 'dirt-5' }, + { position = { x = 31, y = 7 }, name = 'dirt-5' }, + { position = { x = 31, y = 8 }, name = 'dirt-5' }, + { position = { x = 31, y = 9 }, name = 'dirt-5' }, + { position = { x = 31, y = 10 }, name = 'dirt-5' }, + { position = { x = 31, y = 11 }, name = 'dirt-5' }, + { position = { x = 31, y = 12 }, name = 'dirt-5' }, + { position = { x = 31, y = 13 }, name = 'dirt-5' }, + { position = { x = 31, y = 14 }, name = 'refined-concrete' }, + { position = { x = 31, y = 15 }, name = 'stone-path' }, + { position = { x = 31, y = 16 }, name = 'refined-concrete' }, + { position = { x = 31, y = 17 }, name = 'deepwater' }, + { position = { x = 31, y = 18 }, name = 'deepwater' }, + { position = { x = 31, y = 19 }, name = 'deepwater' }, + { position = { x = 31, y = 20 }, name = 'deepwater' }, + { position = { x = 31, y = 21 }, name = 'deepwater' }, + { position = { x = 31, y = 22 }, name = 'deepwater' }, + { position = { x = 31, y = 23 }, name = 'dirt-5' }, + { position = { x = 31, y = 24 }, name = 'dirt-5' }, + { position = { x = 31, y = 25 }, name = 'dirt-5' }, + { position = { x = 31, y = 26 }, name = 'dirt-5' }, + { position = { x = 31, y = 27 }, name = 'dirt-5' }, + { position = { x = 31, y = 28 }, name = 'dirt-5' }, + { position = { x = 31, y = 29 }, name = 'water' }, + { position = { x = 31, y = 30 }, name = 'water' }, + { position = { x = 31, y = 31 }, name = 'water' } } }, big_worm_crossing = { entities = { - {position = {x = 11.609375, y = 1.01953125}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 12.03125, y = 2.390625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 15.5, y = 2.5}, name = 'big-worm-turret', direction = 4, force = 'enemy'}, - {position = {x = 11.81640625, y = 3.62109375}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 14.00390625, y = 6.609375}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 13.01171875, y = 7.390625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 12.953125, y = 7.390625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 13.0859375, y = 6.75}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 15.6015625, y = 7.89453125}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 17, y = 7.609375}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 19.5, y = 7.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 8.37109375, y = 8.44921875}, name = 'medium-biter', direction = 0, force = 'enemy'}, - {position = {x = 9.28125, y = 9.0625}, name = 'tree-02-red', direction = 0, force = 'neutral'}, - {position = {x = 10.28515625, y = 9.42578125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 14.609375, y = 10}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 16, y = 10.609375}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 15.390625, y = 10.05859375}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 15.6953125, y = 9.80078125}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 21.51171875, y = 8.4921875}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 22.3359375, y = 9.3046875}, name = 'medium-biter', direction = 0, force = 'enemy'}, - {position = {x = 15.6015625, y = 10.9765625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 20.5, y = 11.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 20.5, y = 11.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 20.5, y = 11.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 20.5, y = 11.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 20.5, y = 11.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 20.5, y = 11.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 20.5, y = 11.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 20.5, y = 11.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 20.5, y = 11.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 2.5, y = 14.5}, name = 'big-worm-turret', direction = 2, force = 'enemy'}, - {position = {x = 8.390625, y = 13.94921875}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 9.234375, y = 12.78515625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 11.96875, y = 13.609375}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 12.5, y = 12.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 13.5, y = 13.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 18.46875, y = 13.5}, name = 'tree-02-red', direction = 0, force = 'neutral'}, - {position = {x = 21.8046875, y = 13.6953125}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 22.85546875, y = 13.390625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 29.5, y = 13.5}, name = 'big-worm-turret', direction = 6, force = 'enemy'}, - {position = {x = 9.28125, y = 14.8046875}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 10.8046875, y = 16.31640625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 15.3515625, y = 15.16015625}, name = 'rock-big', direction = 0, force = 'neutral'}, - {position = {x = 20.609375, y = 16}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 23.609375, y = 15}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 23.609375, y = 15.04296875}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 23.609375, y = 15.0625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 23.06640625, y = 15.6015625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 17.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 16.62109375, y = 16.79296875}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 17.75390625, y = 17.796875}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 22.609375, y = 17}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 23.296875, y = 17.1953125}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 28.1953125, y = 18.7265625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 30.6328125, y = 17.80859375}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 30.8046875, y = 17.703125}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 3.8359375, y = 19.390625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 6.1953125, y = 19.71484375}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 10.15625, y = 19.40625}, name = 'tree-02-red', direction = 0, force = 'neutral'}, - {position = {x = 11.48828125, y = 18.43359375}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 18.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 18.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 18.5}, name = 'tree-01-stump', direction = 0, force = 'neutral'}, - {position = {x = 18.53125, y = 19.3125}, name = 'tree-02-red', direction = 0, force = 'neutral'}, - {position = {x = 22.01171875, y = 19.390625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 9.54296875, y = 20.79296875}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 13.609375, y = 21}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 15.1953125, y = 22.6953125}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 16.2890625, y = 21.1953125}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 19.5625, y = 20.71875}, name = 'tree-02-red', direction = 0, force = 'neutral'}, - {position = {x = 7, y = 23.609375}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 11.234375, y = 22.9921875}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 14.609375, y = 23.046875}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 14, y = 23.390625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 13.609375, y = 23.0078125}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 15.80078125, y = 24.73828125}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 15.08984375, y = 23.390625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 17.390625, y = 23.88671875}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 21.796875, y = 23.5703125}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 11, y = 26.390625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 11.10546875, y = 29.390625}, name = 'fish', direction = 0, force = 'neutral'}, - {position = {x = 15.5, y = 29.5}, name = 'big-worm-turret', direction = 0, force = 'enemy'} + { position = { x = 11.609375, y = 1.01953125 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 12.03125, y = 2.390625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 15.5, y = 2.5 }, name = 'big-worm-turret', direction = 4, force = 'enemy' }, + { position = { x = 11.81640625, y = 3.62109375 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 14.00390625, y = 6.609375 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 13.01171875, y = 7.390625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 12.953125, y = 7.390625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 13.0859375, y = 6.75 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 15.6015625, y = 7.89453125 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 17, y = 7.609375 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 19.5, y = 7.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 8.37109375, y = 8.44921875 }, name = 'medium-biter', direction = 0, force = 'enemy' }, + { position = { x = 9.28125, y = 9.0625 }, name = 'tree-02-red', direction = 0, force = 'neutral' }, + { position = { x = 10.28515625, y = 9.42578125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 14.609375, y = 10 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 16, y = 10.609375 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 15.390625, y = 10.05859375 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 15.6953125, y = 9.80078125 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 21.51171875, y = 8.4921875 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 22.3359375, y = 9.3046875 }, name = 'medium-biter', direction = 0, force = 'enemy' }, + { position = { x = 15.6015625, y = 10.9765625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 20.5, y = 11.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 20.5, y = 11.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 20.5, y = 11.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 20.5, y = 11.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 20.5, y = 11.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 20.5, y = 11.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 20.5, y = 11.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 20.5, y = 11.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 20.5, y = 11.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 2.5, y = 14.5 }, name = 'big-worm-turret', direction = 2, force = 'enemy' }, + { position = { x = 8.390625, y = 13.94921875 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 9.234375, y = 12.78515625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 11.96875, y = 13.609375 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 12.5, y = 12.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 13.5, y = 13.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 18.46875, y = 13.5 }, name = 'tree-02-red', direction = 0, force = 'neutral' }, + { position = { x = 21.8046875, y = 13.6953125 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 22.85546875, y = 13.390625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 29.5, y = 13.5 }, name = 'big-worm-turret', direction = 6, force = 'enemy' }, + { position = { x = 9.28125, y = 14.8046875 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 10.8046875, y = 16.31640625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 15.3515625, y = 15.16015625 }, name = 'big-rock', direction = 0, force = 'neutral' }, + { position = { x = 20.609375, y = 16 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 23.609375, y = 15 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 23.609375, y = 15.04296875 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 23.609375, y = 15.0625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 23.06640625, y = 15.6015625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 17.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 16.62109375, y = 16.79296875 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 17.75390625, y = 17.796875 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 22.609375, y = 17 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 23.296875, y = 17.1953125 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 28.1953125, y = 18.7265625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 30.6328125, y = 17.80859375 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 30.8046875, y = 17.703125 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 3.8359375, y = 19.390625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 6.1953125, y = 19.71484375 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 10.15625, y = 19.40625 }, name = 'tree-02-red', direction = 0, force = 'neutral' }, + { position = { x = 11.48828125, y = 18.43359375 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 18.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 18.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 18.5 }, name = 'tree-01-stump', direction = 0, force = 'neutral' }, + { position = { x = 18.53125, y = 19.3125 }, name = 'tree-02-red', direction = 0, force = 'neutral' }, + { position = { x = 22.01171875, y = 19.390625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 9.54296875, y = 20.79296875 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 13.609375, y = 21 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 15.1953125, y = 22.6953125 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 16.2890625, y = 21.1953125 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 19.5625, y = 20.71875 }, name = 'tree-02-red', direction = 0, force = 'neutral' }, + { position = { x = 7, y = 23.609375 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 11.234375, y = 22.9921875 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 14.609375, y = 23.046875 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 14, y = 23.390625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 13.609375, y = 23.0078125 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 15.80078125, y = 24.73828125 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 15.08984375, y = 23.390625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 17.390625, y = 23.88671875 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 21.796875, y = 23.5703125 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 11, y = 26.390625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 11.10546875, y = 29.390625 }, name = 'fish', direction = 0, force = 'neutral' }, + { position = { x = 15.5, y = 29.5 }, name = 'big-worm-turret', direction = 0, force = 'enemy' } }, tiles = { - {position = {x = 0, y = 0}, name = 'water'}, - {position = {x = 0, y = 1}, name = 'water'}, - {position = {x = 0, y = 2}, name = 'water'}, - {position = {x = 0, y = 3}, name = 'water'}, - {position = {x = 0, y = 4}, name = 'water'}, - {position = {x = 0, y = 5}, name = 'water'}, - {position = {x = 0, y = 6}, name = 'water'}, - {position = {x = 0, y = 7}, name = 'water'}, - {position = {x = 0, y = 8}, name = 'water'}, - {position = {x = 0, y = 9}, name = 'water'}, - {position = {x = 0, y = 10}, name = 'water'}, - {position = {x = 0, y = 11}, name = 'water'}, - {position = {x = 0, y = 12}, name = 'dirt-5'}, - {position = {x = 0, y = 13}, name = 'deepwater'}, - {position = {x = 0, y = 14}, name = 'deepwater'}, - {position = {x = 0, y = 15}, name = 'dirt-5'}, - {position = {x = 0, y = 16}, name = 'water'}, - {position = {x = 0, y = 17}, name = 'deepwater'}, - {position = {x = 0, y = 18}, name = 'water'}, - {position = {x = 0, y = 19}, name = 'water'}, - {position = {x = 0, y = 20}, name = 'water'}, - {position = {x = 0, y = 21}, name = 'water'}, - {position = {x = 0, y = 22}, name = 'water'}, - {position = {x = 0, y = 23}, name = 'water'}, - {position = {x = 0, y = 24}, name = 'water'}, - {position = {x = 0, y = 25}, name = 'water'}, - {position = {x = 0, y = 26}, name = 'water'}, - {position = {x = 0, y = 27}, name = 'water'}, - {position = {x = 0, y = 28}, name = 'water'}, - {position = {x = 0, y = 29}, name = 'water'}, - {position = {x = 0, y = 30}, name = 'water'}, - {position = {x = 0, y = 31}, name = 'water'}, - {position = {x = 1, y = 0}, name = 'water'}, - {position = {x = 1, y = 1}, name = 'water'}, - {position = {x = 1, y = 2}, name = 'water'}, - {position = {x = 1, y = 3}, name = 'water'}, - {position = {x = 1, y = 4}, name = 'water'}, - {position = {x = 1, y = 5}, name = 'water'}, - {position = {x = 1, y = 6}, name = 'water'}, - {position = {x = 1, y = 7}, name = 'water'}, - {position = {x = 1, y = 8}, name = 'water'}, - {position = {x = 1, y = 9}, name = 'water'}, - {position = {x = 1, y = 10}, name = 'water'}, - {position = {x = 1, y = 11}, name = 'water'}, - {position = {x = 1, y = 12}, name = 'dirt-5'}, - {position = {x = 1, y = 13}, name = 'grass-2'}, - {position = {x = 1, y = 14}, name = 'grass-2'}, - {position = {x = 1, y = 15}, name = 'dirt-5'}, - {position = {x = 1, y = 16}, name = 'water'}, - {position = {x = 1, y = 17}, name = 'deepwater'}, - {position = {x = 1, y = 18}, name = 'water'}, - {position = {x = 1, y = 19}, name = 'water'}, - {position = {x = 1, y = 20}, name = 'water'}, - {position = {x = 1, y = 21}, name = 'water'}, - {position = {x = 1, y = 22}, name = 'water'}, - {position = {x = 1, y = 23}, name = 'water'}, - {position = {x = 1, y = 24}, name = 'water'}, - {position = {x = 1, y = 25}, name = 'water'}, - {position = {x = 1, y = 26}, name = 'water'}, - {position = {x = 1, y = 27}, name = 'water'}, - {position = {x = 1, y = 28}, name = 'water'}, - {position = {x = 1, y = 29}, name = 'water'}, - {position = {x = 1, y = 30}, name = 'water'}, - {position = {x = 1, y = 31}, name = 'water'}, - {position = {x = 2, y = 0}, name = 'water'}, - {position = {x = 2, y = 1}, name = 'water'}, - {position = {x = 2, y = 2}, name = 'water'}, - {position = {x = 2, y = 3}, name = 'water'}, - {position = {x = 2, y = 4}, name = 'water'}, - {position = {x = 2, y = 5}, name = 'water'}, - {position = {x = 2, y = 6}, name = 'water'}, - {position = {x = 2, y = 7}, name = 'water'}, - {position = {x = 2, y = 8}, name = 'water'}, - {position = {x = 2, y = 9}, name = 'water'}, - {position = {x = 2, y = 10}, name = 'water'}, - {position = {x = 2, y = 11}, name = 'water'}, - {position = {x = 2, y = 12}, name = 'dirt-5'}, - {position = {x = 2, y = 13}, name = 'grass-2'}, - {position = {x = 2, y = 14}, name = 'grass-2'}, - {position = {x = 2, y = 15}, name = 'dirt-5'}, - {position = {x = 2, y = 16}, name = 'water'}, - {position = {x = 2, y = 17}, name = 'deepwater'}, - {position = {x = 2, y = 18}, name = 'water'}, - {position = {x = 2, y = 19}, name = 'water'}, - {position = {x = 2, y = 20}, name = 'water'}, - {position = {x = 2, y = 21}, name = 'water'}, - {position = {x = 2, y = 22}, name = 'water'}, - {position = {x = 2, y = 23}, name = 'water'}, - {position = {x = 2, y = 24}, name = 'water'}, - {position = {x = 2, y = 25}, name = 'water'}, - {position = {x = 2, y = 26}, name = 'water'}, - {position = {x = 2, y = 27}, name = 'water'}, - {position = {x = 2, y = 28}, name = 'water'}, - {position = {x = 2, y = 29}, name = 'water'}, - {position = {x = 2, y = 30}, name = 'water'}, - {position = {x = 2, y = 31}, name = 'water'}, - {position = {x = 3, y = 0}, name = 'water'}, - {position = {x = 3, y = 1}, name = 'water'}, - {position = {x = 3, y = 2}, name = 'water'}, - {position = {x = 3, y = 3}, name = 'water'}, - {position = {x = 3, y = 4}, name = 'water'}, - {position = {x = 3, y = 5}, name = 'water'}, - {position = {x = 3, y = 6}, name = 'water'}, - {position = {x = 3, y = 7}, name = 'water'}, - {position = {x = 3, y = 8}, name = 'water'}, - {position = {x = 3, y = 9}, name = 'water'}, - {position = {x = 3, y = 10}, name = 'water'}, - {position = {x = 3, y = 11}, name = 'water'}, - {position = {x = 3, y = 12}, name = 'dirt-5'}, - {position = {x = 3, y = 13}, name = 'dirt-5'}, - {position = {x = 3, y = 14}, name = 'dirt-5'}, - {position = {x = 3, y = 15}, name = 'dirt-5'}, - {position = {x = 3, y = 16}, name = 'water'}, - {position = {x = 3, y = 17}, name = 'deepwater'}, - {position = {x = 3, y = 18}, name = 'water'}, - {position = {x = 3, y = 19}, name = 'water'}, - {position = {x = 3, y = 20}, name = 'water'}, - {position = {x = 3, y = 21}, name = 'water'}, - {position = {x = 3, y = 22}, name = 'water'}, - {position = {x = 3, y = 23}, name = 'water'}, - {position = {x = 3, y = 24}, name = 'water'}, - {position = {x = 3, y = 25}, name = 'water'}, - {position = {x = 3, y = 26}, name = 'water'}, - {position = {x = 3, y = 27}, name = 'water'}, - {position = {x = 3, y = 28}, name = 'water'}, - {position = {x = 3, y = 29}, name = 'water'}, - {position = {x = 3, y = 30}, name = 'water'}, - {position = {x = 3, y = 31}, name = 'water'}, - {position = {x = 4, y = 0}, name = 'water'}, - {position = {x = 4, y = 1}, name = 'water'}, - {position = {x = 4, y = 2}, name = 'water'}, - {position = {x = 4, y = 3}, name = 'water'}, - {position = {x = 4, y = 4}, name = 'water'}, - {position = {x = 4, y = 5}, name = 'water'}, - {position = {x = 4, y = 6}, name = 'water'}, - {position = {x = 4, y = 7}, name = 'water'}, - {position = {x = 4, y = 8}, name = 'water'}, - {position = {x = 4, y = 9}, name = 'water'}, - {position = {x = 4, y = 10}, name = 'water'}, - {position = {x = 4, y = 11}, name = 'dirt-5'}, - {position = {x = 4, y = 12}, name = 'water'}, - {position = {x = 4, y = 13}, name = 'water'}, - {position = {x = 4, y = 14}, name = 'water'}, - {position = {x = 4, y = 15}, name = 'dirt-5'}, - {position = {x = 4, y = 16}, name = 'water'}, - {position = {x = 4, y = 17}, name = 'deepwater'}, - {position = {x = 4, y = 18}, name = 'water'}, - {position = {x = 4, y = 19}, name = 'water'}, - {position = {x = 4, y = 20}, name = 'water'}, - {position = {x = 4, y = 21}, name = 'water'}, - {position = {x = 4, y = 22}, name = 'water'}, - {position = {x = 4, y = 23}, name = 'water'}, - {position = {x = 4, y = 24}, name = 'water'}, - {position = {x = 4, y = 25}, name = 'water'}, - {position = {x = 4, y = 26}, name = 'water'}, - {position = {x = 4, y = 27}, name = 'water'}, - {position = {x = 4, y = 28}, name = 'water'}, - {position = {x = 4, y = 29}, name = 'water'}, - {position = {x = 4, y = 30}, name = 'water'}, - {position = {x = 4, y = 31}, name = 'water'}, - {position = {x = 5, y = 0}, name = 'water'}, - {position = {x = 5, y = 1}, name = 'water'}, - {position = {x = 5, y = 2}, name = 'water'}, - {position = {x = 5, y = 3}, name = 'water'}, - {position = {x = 5, y = 4}, name = 'water'}, - {position = {x = 5, y = 5}, name = 'water'}, - {position = {x = 5, y = 6}, name = 'water'}, - {position = {x = 5, y = 7}, name = 'water'}, - {position = {x = 5, y = 8}, name = 'water'}, - {position = {x = 5, y = 9}, name = 'water'}, - {position = {x = 5, y = 10}, name = 'dirt-5'}, - {position = {x = 5, y = 11}, name = 'dirt-5'}, - {position = {x = 5, y = 12}, name = 'water'}, - {position = {x = 5, y = 13}, name = 'water'}, - {position = {x = 5, y = 14}, name = 'water'}, - {position = {x = 5, y = 15}, name = 'dirt-5'}, - {position = {x = 5, y = 16}, name = 'dirt-5'}, - {position = {x = 5, y = 17}, name = 'water'}, - {position = {x = 5, y = 18}, name = 'deepwater'}, - {position = {x = 5, y = 19}, name = 'water'}, - {position = {x = 5, y = 20}, name = 'water'}, - {position = {x = 5, y = 21}, name = 'water'}, - {position = {x = 5, y = 22}, name = 'water'}, - {position = {x = 5, y = 23}, name = 'water'}, - {position = {x = 5, y = 24}, name = 'water'}, - {position = {x = 5, y = 25}, name = 'water'}, - {position = {x = 5, y = 26}, name = 'water'}, - {position = {x = 5, y = 27}, name = 'water'}, - {position = {x = 5, y = 28}, name = 'water'}, - {position = {x = 5, y = 29}, name = 'water'}, - {position = {x = 5, y = 30}, name = 'water'}, - {position = {x = 5, y = 31}, name = 'water'}, - {position = {x = 6, y = 0}, name = 'water'}, - {position = {x = 6, y = 1}, name = 'water'}, - {position = {x = 6, y = 2}, name = 'water'}, - {position = {x = 6, y = 3}, name = 'water'}, - {position = {x = 6, y = 4}, name = 'water'}, - {position = {x = 6, y = 5}, name = 'water'}, - {position = {x = 6, y = 6}, name = 'water'}, - {position = {x = 6, y = 7}, name = 'water'}, - {position = {x = 6, y = 8}, name = 'water'}, - {position = {x = 6, y = 9}, name = 'water'}, - {position = {x = 6, y = 10}, name = 'dirt-5'}, - {position = {x = 6, y = 11}, name = 'water'}, - {position = {x = 6, y = 12}, name = 'water'}, - {position = {x = 6, y = 13}, name = 'water'}, - {position = {x = 6, y = 14}, name = 'water'}, - {position = {x = 6, y = 15}, name = 'water'}, - {position = {x = 6, y = 16}, name = 'dirt-5'}, - {position = {x = 6, y = 17}, name = 'water'}, - {position = {x = 6, y = 18}, name = 'deepwater'}, - {position = {x = 6, y = 19}, name = 'deepwater'}, - {position = {x = 6, y = 20}, name = 'water'}, - {position = {x = 6, y = 21}, name = 'water'}, - {position = {x = 6, y = 22}, name = 'water'}, - {position = {x = 6, y = 23}, name = 'water'}, - {position = {x = 6, y = 24}, name = 'water'}, - {position = {x = 6, y = 25}, name = 'water'}, - {position = {x = 6, y = 26}, name = 'water'}, - {position = {x = 6, y = 27}, name = 'water'}, - {position = {x = 6, y = 28}, name = 'water'}, - {position = {x = 6, y = 29}, name = 'water'}, - {position = {x = 6, y = 30}, name = 'water'}, - {position = {x = 6, y = 31}, name = 'water'}, - {position = {x = 7, y = 0}, name = 'water'}, - {position = {x = 7, y = 1}, name = 'water'}, - {position = {x = 7, y = 2}, name = 'water'}, - {position = {x = 7, y = 3}, name = 'water'}, - {position = {x = 7, y = 4}, name = 'water'}, - {position = {x = 7, y = 5}, name = 'water'}, - {position = {x = 7, y = 6}, name = 'water'}, - {position = {x = 7, y = 7}, name = 'water'}, - {position = {x = 7, y = 8}, name = 'water'}, - {position = {x = 7, y = 9}, name = 'dirt-5'}, - {position = {x = 7, y = 10}, name = 'water'}, - {position = {x = 7, y = 11}, name = 'water'}, - {position = {x = 7, y = 12}, name = 'water'}, - {position = {x = 7, y = 13}, name = 'water'}, - {position = {x = 7, y = 14}, name = 'water'}, - {position = {x = 7, y = 15}, name = 'water'}, - {position = {x = 7, y = 16}, name = 'water'}, - {position = {x = 7, y = 17}, name = 'dirt-5'}, - {position = {x = 7, y = 18}, name = 'water'}, - {position = {x = 7, y = 19}, name = 'water'}, - {position = {x = 7, y = 20}, name = 'deepwater'}, - {position = {x = 7, y = 21}, name = 'deepwater'}, - {position = {x = 7, y = 22}, name = 'water'}, - {position = {x = 7, y = 23}, name = 'water'}, - {position = {x = 7, y = 24}, name = 'water'}, - {position = {x = 7, y = 25}, name = 'water'}, - {position = {x = 7, y = 26}, name = 'water'}, - {position = {x = 7, y = 27}, name = 'water'}, - {position = {x = 7, y = 28}, name = 'water'}, - {position = {x = 7, y = 29}, name = 'water'}, - {position = {x = 7, y = 30}, name = 'water'}, - {position = {x = 7, y = 31}, name = 'water'}, - {position = {x = 8, y = 0}, name = 'water'}, - {position = {x = 8, y = 1}, name = 'water'}, - {position = {x = 8, y = 2}, name = 'water'}, - {position = {x = 8, y = 3}, name = 'water'}, - {position = {x = 8, y = 4}, name = 'water'}, - {position = {x = 8, y = 5}, name = 'water'}, - {position = {x = 8, y = 6}, name = 'water'}, - {position = {x = 8, y = 7}, name = 'water'}, - {position = {x = 8, y = 8}, name = 'dirt-5'}, - {position = {x = 8, y = 9}, name = 'dirt-5'}, - {position = {x = 8, y = 10}, name = 'deepwater'}, - {position = {x = 8, y = 11}, name = 'water'}, - {position = {x = 8, y = 12}, name = 'water'}, - {position = {x = 8, y = 13}, name = 'water'}, - {position = {x = 8, y = 14}, name = 'water'}, - {position = {x = 8, y = 15}, name = 'water'}, - {position = {x = 8, y = 16}, name = 'water'}, - {position = {x = 8, y = 17}, name = 'dirt-5'}, - {position = {x = 8, y = 18}, name = 'dirt-5'}, - {position = {x = 8, y = 19}, name = 'water'}, - {position = {x = 8, y = 20}, name = 'water'}, - {position = {x = 8, y = 21}, name = 'deepwater'}, - {position = {x = 8, y = 22}, name = 'deepwater'}, - {position = {x = 8, y = 23}, name = 'water'}, - {position = {x = 8, y = 24}, name = 'water'}, - {position = {x = 8, y = 25}, name = 'water'}, - {position = {x = 8, y = 26}, name = 'water'}, - {position = {x = 8, y = 27}, name = 'water'}, - {position = {x = 8, y = 28}, name = 'water'}, - {position = {x = 8, y = 29}, name = 'water'}, - {position = {x = 8, y = 30}, name = 'water'}, - {position = {x = 8, y = 31}, name = 'water'}, - {position = {x = 9, y = 0}, name = 'water'}, - {position = {x = 9, y = 1}, name = 'water'}, - {position = {x = 9, y = 2}, name = 'water'}, - {position = {x = 9, y = 3}, name = 'water'}, - {position = {x = 9, y = 4}, name = 'water'}, - {position = {x = 9, y = 5}, name = 'water'}, - {position = {x = 9, y = 6}, name = 'water'}, - {position = {x = 9, y = 7}, name = 'dirt-5'}, - {position = {x = 9, y = 8}, name = 'dirt-5'}, - {position = {x = 9, y = 9}, name = 'dirt-5'}, - {position = {x = 9, y = 10}, name = 'deepwater'}, - {position = {x = 9, y = 11}, name = 'water'}, - {position = {x = 9, y = 12}, name = 'water'}, - {position = {x = 9, y = 13}, name = 'water'}, - {position = {x = 9, y = 14}, name = 'water'}, - {position = {x = 9, y = 15}, name = 'water'}, - {position = {x = 9, y = 16}, name = 'water'}, - {position = {x = 9, y = 17}, name = 'water'}, - {position = {x = 9, y = 18}, name = 'water'}, - {position = {x = 9, y = 19}, name = 'dirt-5'}, - {position = {x = 9, y = 20}, name = 'dirt-5'}, - {position = {x = 9, y = 21}, name = 'water'}, - {position = {x = 9, y = 22}, name = 'water'}, - {position = {x = 9, y = 23}, name = 'deepwater'}, - {position = {x = 9, y = 24}, name = 'deepwater'}, - {position = {x = 9, y = 25}, name = 'water'}, - {position = {x = 9, y = 26}, name = 'water'}, - {position = {x = 9, y = 27}, name = 'water'}, - {position = {x = 9, y = 28}, name = 'water'}, - {position = {x = 9, y = 29}, name = 'water'}, - {position = {x = 9, y = 30}, name = 'water'}, - {position = {x = 9, y = 31}, name = 'water'}, - {position = {x = 10, y = 0}, name = 'water'}, - {position = {x = 10, y = 1}, name = 'water'}, - {position = {x = 10, y = 2}, name = 'water'}, - {position = {x = 10, y = 3}, name = 'water'}, - {position = {x = 10, y = 4}, name = 'water'}, - {position = {x = 10, y = 5}, name = 'water'}, - {position = {x = 10, y = 6}, name = 'dirt-5'}, - {position = {x = 10, y = 7}, name = 'water'}, - {position = {x = 10, y = 8}, name = 'water'}, - {position = {x = 10, y = 9}, name = 'dirt-5'}, - {position = {x = 10, y = 10}, name = 'water'}, - {position = {x = 10, y = 11}, name = 'deepwater'}, - {position = {x = 10, y = 12}, name = 'water'}, - {position = {x = 10, y = 13}, name = 'water'}, - {position = {x = 10, y = 14}, name = 'water'}, - {position = {x = 10, y = 15}, name = 'water'}, - {position = {x = 10, y = 16}, name = 'water'}, - {position = {x = 10, y = 17}, name = 'water'}, - {position = {x = 10, y = 18}, name = 'water'}, - {position = {x = 10, y = 19}, name = 'dirt-5'}, - {position = {x = 10, y = 20}, name = 'water'}, - {position = {x = 10, y = 21}, name = 'dirt-5'}, - {position = {x = 10, y = 22}, name = 'dirt-5'}, - {position = {x = 10, y = 23}, name = 'water'}, - {position = {x = 10, y = 24}, name = 'deepwater'}, - {position = {x = 10, y = 25}, name = 'deepwater'}, - {position = {x = 10, y = 26}, name = 'water'}, - {position = {x = 10, y = 27}, name = 'water'}, - {position = {x = 10, y = 28}, name = 'water'}, - {position = {x = 10, y = 29}, name = 'water'}, - {position = {x = 10, y = 30}, name = 'water'}, - {position = {x = 10, y = 31}, name = 'water'}, - {position = {x = 11, y = 0}, name = 'water'}, - {position = {x = 11, y = 1}, name = 'water'}, - {position = {x = 11, y = 2}, name = 'water'}, - {position = {x = 11, y = 3}, name = 'water'}, - {position = {x = 11, y = 4}, name = 'water'}, - {position = {x = 11, y = 5}, name = 'water'}, - {position = {x = 11, y = 6}, name = 'dirt-5'}, - {position = {x = 11, y = 7}, name = 'water'}, - {position = {x = 11, y = 8}, name = 'water'}, - {position = {x = 11, y = 9}, name = 'water'}, - {position = {x = 11, y = 10}, name = 'dirt-5'}, - {position = {x = 11, y = 11}, name = 'water'}, - {position = {x = 11, y = 12}, name = 'deepwater'}, - {position = {x = 11, y = 13}, name = 'deepwater'}, - {position = {x = 11, y = 14}, name = 'water'}, - {position = {x = 11, y = 15}, name = 'water'}, - {position = {x = 11, y = 16}, name = 'water'}, - {position = {x = 11, y = 17}, name = 'water'}, - {position = {x = 11, y = 18}, name = 'dirt-5'}, - {position = {x = 11, y = 19}, name = 'water'}, - {position = {x = 11, y = 20}, name = 'water'}, - {position = {x = 11, y = 21}, name = 'water'}, - {position = {x = 11, y = 22}, name = 'dirt-5'}, - {position = {x = 11, y = 23}, name = 'dirt-5'}, - {position = {x = 11, y = 24}, name = 'water'}, - {position = {x = 11, y = 25}, name = 'water'}, - {position = {x = 11, y = 26}, name = 'deepwater'}, - {position = {x = 11, y = 27}, name = 'water'}, - {position = {x = 11, y = 28}, name = 'water'}, - {position = {x = 11, y = 29}, name = 'water'}, - {position = {x = 11, y = 30}, name = 'water'}, - {position = {x = 11, y = 31}, name = 'water'}, - {position = {x = 12, y = 0}, name = 'water'}, - {position = {x = 12, y = 1}, name = 'water'}, - {position = {x = 12, y = 2}, name = 'water'}, - {position = {x = 12, y = 3}, name = 'water'}, - {position = {x = 12, y = 4}, name = 'water'}, - {position = {x = 12, y = 5}, name = 'dirt-5'}, - {position = {x = 12, y = 6}, name = 'water'}, - {position = {x = 12, y = 7}, name = 'water'}, - {position = {x = 12, y = 8}, name = 'water'}, - {position = {x = 12, y = 9}, name = 'water'}, - {position = {x = 12, y = 10}, name = 'water'}, - {position = {x = 12, y = 11}, name = 'dirt-5'}, - {position = {x = 12, y = 12}, name = 'water'}, - {position = {x = 12, y = 13}, name = 'water'}, - {position = {x = 12, y = 14}, name = 'deepwater'}, - {position = {x = 12, y = 15}, name = 'water'}, - {position = {x = 12, y = 16}, name = 'water'}, - {position = {x = 12, y = 17}, name = 'water'}, - {position = {x = 12, y = 18}, name = 'dirt-5'}, - {position = {x = 12, y = 19}, name = 'water'}, - {position = {x = 12, y = 20}, name = 'water'}, - {position = {x = 12, y = 21}, name = 'water'}, - {position = {x = 12, y = 22}, name = 'water'}, - {position = {x = 12, y = 23}, name = 'water'}, - {position = {x = 12, y = 24}, name = 'dirt-5'}, - {position = {x = 12, y = 25}, name = 'water'}, - {position = {x = 12, y = 26}, name = 'deepwater'}, - {position = {x = 12, y = 27}, name = 'deepwater'}, - {position = {x = 12, y = 28}, name = 'deepwater'}, - {position = {x = 12, y = 29}, name = 'water'}, - {position = {x = 12, y = 30}, name = 'water'}, - {position = {x = 12, y = 31}, name = 'water'}, - {position = {x = 13, y = 0}, name = 'deepwater'}, - {position = {x = 13, y = 1}, name = 'deepwater'}, - {position = {x = 13, y = 2}, name = 'deepwater'}, - {position = {x = 13, y = 3}, name = 'water'}, - {position = {x = 13, y = 4}, name = 'dirt-5'}, - {position = {x = 13, y = 5}, name = 'water'}, - {position = {x = 13, y = 6}, name = 'water'}, - {position = {x = 13, y = 7}, name = 'water'}, - {position = {x = 13, y = 8}, name = 'water'}, - {position = {x = 13, y = 9}, name = 'water'}, - {position = {x = 13, y = 10}, name = 'water'}, - {position = {x = 13, y = 11}, name = 'water'}, - {position = {x = 13, y = 12}, name = 'dirt-5'}, - {position = {x = 13, y = 13}, name = 'water'}, - {position = {x = 13, y = 14}, name = 'water'}, - {position = {x = 13, y = 15}, name = 'deepwater'}, - {position = {x = 13, y = 16}, name = 'dirt-5'}, - {position = {x = 13, y = 17}, name = 'dirt-5'}, - {position = {x = 13, y = 18}, name = 'water'}, - {position = {x = 13, y = 19}, name = 'water'}, - {position = {x = 13, y = 20}, name = 'water'}, - {position = {x = 13, y = 21}, name = 'water'}, - {position = {x = 13, y = 22}, name = 'water'}, - {position = {x = 13, y = 23}, name = 'water'}, - {position = {x = 13, y = 24}, name = 'water'}, - {position = {x = 13, y = 25}, name = 'dirt-5'}, - {position = {x = 13, y = 26}, name = 'dirt-5'}, - {position = {x = 13, y = 27}, name = 'dirt-5'}, - {position = {x = 13, y = 28}, name = 'water'}, - {position = {x = 13, y = 29}, name = 'deepwater'}, - {position = {x = 13, y = 30}, name = 'deepwater'}, - {position = {x = 13, y = 31}, name = 'deepwater'}, - {position = {x = 14, y = 0}, name = 'dirt-5'}, - {position = {x = 14, y = 1}, name = 'dirt-5'}, - {position = {x = 14, y = 2}, name = 'dirt-5'}, - {position = {x = 14, y = 3}, name = 'dirt-5'}, - {position = {x = 14, y = 4}, name = 'water'}, - {position = {x = 14, y = 5}, name = 'deepwater'}, - {position = {x = 14, y = 6}, name = 'water'}, - {position = {x = 14, y = 7}, name = 'water'}, - {position = {x = 14, y = 8}, name = 'water'}, - {position = {x = 14, y = 9}, name = 'water'}, - {position = {x = 14, y = 10}, name = 'water'}, - {position = {x = 14, y = 11}, name = 'water'}, - {position = {x = 14, y = 12}, name = 'water'}, - {position = {x = 14, y = 13}, name = 'dirt-4'}, - {position = {x = 14, y = 14}, name = 'dirt-5'}, - {position = {x = 14, y = 15}, name = 'grass-2'}, - {position = {x = 14, y = 16}, name = 'dirt-5'}, - {position = {x = 14, y = 17}, name = 'water'}, - {position = {x = 14, y = 18}, name = 'water'}, - {position = {x = 14, y = 19}, name = 'water'}, - {position = {x = 14, y = 20}, name = 'water'}, - {position = {x = 14, y = 21}, name = 'water'}, - {position = {x = 14, y = 22}, name = 'water'}, - {position = {x = 14, y = 23}, name = 'water'}, - {position = {x = 14, y = 24}, name = 'water'}, - {position = {x = 14, y = 25}, name = 'water'}, - {position = {x = 14, y = 26}, name = 'water'}, - {position = {x = 14, y = 27}, name = 'dirt-5'}, - {position = {x = 14, y = 28}, name = 'dirt-5'}, - {position = {x = 14, y = 29}, name = 'dirt-5'}, - {position = {x = 14, y = 30}, name = 'dirt-5'}, - {position = {x = 14, y = 31}, name = 'dirt-5'}, - {position = {x = 15, y = 0}, name = 'deepwater'}, - {position = {x = 15, y = 1}, name = 'grass-2'}, - {position = {x = 15, y = 2}, name = 'dirt-5'}, - {position = {x = 15, y = 3}, name = 'dirt-5'}, - {position = {x = 15, y = 4}, name = 'water'}, - {position = {x = 15, y = 5}, name = 'deepwater'}, - {position = {x = 15, y = 6}, name = 'water'}, - {position = {x = 15, y = 7}, name = 'water'}, - {position = {x = 15, y = 8}, name = 'water'}, - {position = {x = 15, y = 9}, name = 'water'}, - {position = {x = 15, y = 10}, name = 'water'}, - {position = {x = 15, y = 11}, name = 'water'}, - {position = {x = 15, y = 12}, name = 'water'}, - {position = {x = 15, y = 13}, name = 'water'}, - {position = {x = 15, y = 14}, name = 'dirt-5'}, - {position = {x = 15, y = 15}, name = 'dirt-5'}, - {position = {x = 15, y = 16}, name = 'grass-2'}, - {position = {x = 15, y = 17}, name = 'water'}, - {position = {x = 15, y = 18}, name = 'deepwater'}, - {position = {x = 15, y = 19}, name = 'water'}, - {position = {x = 15, y = 20}, name = 'water'}, - {position = {x = 15, y = 21}, name = 'water'}, - {position = {x = 15, y = 22}, name = 'water'}, - {position = {x = 15, y = 23}, name = 'water'}, - {position = {x = 15, y = 24}, name = 'water'}, - {position = {x = 15, y = 25}, name = 'water'}, - {position = {x = 15, y = 26}, name = 'water'}, - {position = {x = 15, y = 27}, name = 'water'}, - {position = {x = 15, y = 28}, name = 'dirt-5'}, - {position = {x = 15, y = 29}, name = 'dirt-5'}, - {position = {x = 15, y = 30}, name = 'grass-2'}, - {position = {x = 15, y = 31}, name = 'deepwater'}, - {position = {x = 16, y = 0}, name = 'deepwater'}, - {position = {x = 16, y = 1}, name = 'grass-2'}, - {position = {x = 16, y = 2}, name = 'dirt-5'}, - {position = {x = 16, y = 3}, name = 'dirt-5'}, - {position = {x = 16, y = 4}, name = 'water'}, - {position = {x = 16, y = 5}, name = 'deepwater'}, - {position = {x = 16, y = 6}, name = 'deepwater'}, - {position = {x = 16, y = 7}, name = 'water'}, - {position = {x = 16, y = 8}, name = 'water'}, - {position = {x = 16, y = 9}, name = 'water'}, - {position = {x = 16, y = 10}, name = 'water'}, - {position = {x = 16, y = 11}, name = 'water'}, - {position = {x = 16, y = 12}, name = 'water'}, - {position = {x = 16, y = 13}, name = 'water'}, - {position = {x = 16, y = 14}, name = 'dirt-4'}, - {position = {x = 16, y = 15}, name = 'dirt-4'}, - {position = {x = 16, y = 16}, name = 'dirt-5'}, - {position = {x = 16, y = 17}, name = 'water'}, - {position = {x = 16, y = 18}, name = 'deepwater'}, - {position = {x = 16, y = 19}, name = 'deepwater'}, - {position = {x = 16, y = 20}, name = 'deepwater'}, - {position = {x = 16, y = 21}, name = 'water'}, - {position = {x = 16, y = 22}, name = 'water'}, - {position = {x = 16, y = 23}, name = 'water'}, - {position = {x = 16, y = 24}, name = 'water'}, - {position = {x = 16, y = 25}, name = 'water'}, - {position = {x = 16, y = 26}, name = 'water'}, - {position = {x = 16, y = 27}, name = 'water'}, - {position = {x = 16, y = 28}, name = 'dirt-5'}, - {position = {x = 16, y = 29}, name = 'dirt-5'}, - {position = {x = 16, y = 30}, name = 'grass-2'}, - {position = {x = 16, y = 31}, name = 'deepwater'}, - {position = {x = 17, y = 0}, name = 'dirt-5'}, - {position = {x = 17, y = 1}, name = 'dirt-5'}, - {position = {x = 17, y = 2}, name = 'dirt-5'}, - {position = {x = 17, y = 3}, name = 'dirt-5'}, - {position = {x = 17, y = 4}, name = 'dirt-5'}, - {position = {x = 17, y = 5}, name = 'water'}, - {position = {x = 17, y = 6}, name = 'deepwater'}, - {position = {x = 17, y = 7}, name = 'deepwater'}, - {position = {x = 17, y = 8}, name = 'water'}, - {position = {x = 17, y = 9}, name = 'water'}, - {position = {x = 17, y = 10}, name = 'water'}, - {position = {x = 17, y = 11}, name = 'water'}, - {position = {x = 17, y = 12}, name = 'water'}, - {position = {x = 17, y = 13}, name = 'water'}, - {position = {x = 17, y = 14}, name = 'dirt-5'}, - {position = {x = 17, y = 15}, name = 'water'}, - {position = {x = 17, y = 16}, name = 'water'}, - {position = {x = 17, y = 17}, name = 'dirt-5'}, - {position = {x = 17, y = 18}, name = 'water'}, - {position = {x = 17, y = 19}, name = 'water'}, - {position = {x = 17, y = 20}, name = 'deepwater'}, - {position = {x = 17, y = 21}, name = 'deepwater'}, - {position = {x = 17, y = 22}, name = 'water'}, - {position = {x = 17, y = 23}, name = 'water'}, - {position = {x = 17, y = 24}, name = 'water'}, - {position = {x = 17, y = 25}, name = 'water'}, - {position = {x = 17, y = 26}, name = 'water'}, - {position = {x = 17, y = 27}, name = 'water'}, - {position = {x = 17, y = 28}, name = 'dirt-5'}, - {position = {x = 17, y = 29}, name = 'dirt-5'}, - {position = {x = 17, y = 30}, name = 'dirt-5'}, - {position = {x = 17, y = 31}, name = 'dirt-5'}, - {position = {x = 18, y = 0}, name = 'water'}, - {position = {x = 18, y = 1}, name = 'water'}, - {position = {x = 18, y = 2}, name = 'water'}, - {position = {x = 18, y = 3}, name = 'water'}, - {position = {x = 18, y = 4}, name = 'water'}, - {position = {x = 18, y = 5}, name = 'dirt-5'}, - {position = {x = 18, y = 6}, name = 'water'}, - {position = {x = 18, y = 7}, name = 'deepwater'}, - {position = {x = 18, y = 8}, name = 'deepwater'}, - {position = {x = 18, y = 9}, name = 'water'}, - {position = {x = 18, y = 10}, name = 'water'}, - {position = {x = 18, y = 11}, name = 'water'}, - {position = {x = 18, y = 12}, name = 'dirt-5'}, - {position = {x = 18, y = 13}, name = 'dirt-5'}, - {position = {x = 18, y = 14}, name = 'water'}, - {position = {x = 18, y = 15}, name = 'water'}, - {position = {x = 18, y = 16}, name = 'water'}, - {position = {x = 18, y = 17}, name = 'water'}, - {position = {x = 18, y = 18}, name = 'dirt-5'}, - {position = {x = 18, y = 19}, name = 'dirt-5'}, - {position = {x = 18, y = 20}, name = 'water'}, - {position = {x = 18, y = 21}, name = 'deepwater'}, - {position = {x = 18, y = 22}, name = 'deepwater'}, - {position = {x = 18, y = 23}, name = 'deepwater'}, - {position = {x = 18, y = 24}, name = 'water'}, - {position = {x = 18, y = 25}, name = 'water'}, - {position = {x = 18, y = 26}, name = 'water'}, - {position = {x = 18, y = 27}, name = 'dirt-5'}, - {position = {x = 18, y = 28}, name = 'water'}, - {position = {x = 18, y = 29}, name = 'water'}, - {position = {x = 18, y = 30}, name = 'water'}, - {position = {x = 18, y = 31}, name = 'water'}, - {position = {x = 19, y = 0}, name = 'water'}, - {position = {x = 19, y = 1}, name = 'water'}, - {position = {x = 19, y = 2}, name = 'water'}, - {position = {x = 19, y = 3}, name = 'water'}, - {position = {x = 19, y = 4}, name = 'water'}, - {position = {x = 19, y = 5}, name = 'water'}, - {position = {x = 19, y = 6}, name = 'dirt-5'}, - {position = {x = 19, y = 7}, name = 'water'}, - {position = {x = 19, y = 8}, name = 'deepwater'}, - {position = {x = 19, y = 9}, name = 'deepwater'}, - {position = {x = 19, y = 10}, name = 'water'}, - {position = {x = 19, y = 11}, name = 'dirt-5'}, - {position = {x = 19, y = 12}, name = 'water'}, - {position = {x = 19, y = 13}, name = 'water'}, - {position = {x = 19, y = 14}, name = 'water'}, - {position = {x = 19, y = 15}, name = 'water'}, - {position = {x = 19, y = 16}, name = 'water'}, - {position = {x = 19, y = 17}, name = 'water'}, - {position = {x = 19, y = 18}, name = 'water'}, - {position = {x = 19, y = 19}, name = 'water'}, - {position = {x = 19, y = 20}, name = 'dirt-5'}, - {position = {x = 19, y = 21}, name = 'dirt-5'}, - {position = {x = 19, y = 22}, name = 'water'}, - {position = {x = 19, y = 23}, name = 'deepwater'}, - {position = {x = 19, y = 24}, name = 'deepwater'}, - {position = {x = 19, y = 25}, name = 'dirt-5'}, - {position = {x = 19, y = 26}, name = 'dirt-5'}, - {position = {x = 19, y = 27}, name = 'water'}, - {position = {x = 19, y = 28}, name = 'water'}, - {position = {x = 19, y = 29}, name = 'water'}, - {position = {x = 19, y = 30}, name = 'water'}, - {position = {x = 19, y = 31}, name = 'water'}, - {position = {x = 20, y = 0}, name = 'water'}, - {position = {x = 20, y = 1}, name = 'water'}, - {position = {x = 20, y = 2}, name = 'water'}, - {position = {x = 20, y = 3}, name = 'water'}, - {position = {x = 20, y = 4}, name = 'water'}, - {position = {x = 20, y = 5}, name = 'water'}, - {position = {x = 20, y = 6}, name = 'dirt-5'}, - {position = {x = 20, y = 7}, name = 'dirt-5'}, - {position = {x = 20, y = 8}, name = 'water'}, - {position = {x = 20, y = 9}, name = 'water'}, - {position = {x = 20, y = 10}, name = 'dirt-5'}, - {position = {x = 20, y = 11}, name = 'water'}, - {position = {x = 20, y = 12}, name = 'water'}, - {position = {x = 20, y = 13}, name = 'water'}, - {position = {x = 20, y = 14}, name = 'water'}, - {position = {x = 20, y = 15}, name = 'water'}, - {position = {x = 20, y = 16}, name = 'water'}, - {position = {x = 20, y = 17}, name = 'water'}, - {position = {x = 20, y = 18}, name = 'water'}, - {position = {x = 20, y = 19}, name = 'water'}, - {position = {x = 20, y = 20}, name = 'water'}, - {position = {x = 20, y = 21}, name = 'water'}, - {position = {x = 20, y = 22}, name = 'dirt-5'}, - {position = {x = 20, y = 23}, name = 'water'}, - {position = {x = 20, y = 24}, name = 'dirt-5'}, - {position = {x = 20, y = 25}, name = 'water'}, - {position = {x = 20, y = 26}, name = 'water'}, - {position = {x = 20, y = 27}, name = 'water'}, - {position = {x = 20, y = 28}, name = 'water'}, - {position = {x = 20, y = 29}, name = 'water'}, - {position = {x = 20, y = 30}, name = 'water'}, - {position = {x = 20, y = 31}, name = 'water'}, - {position = {x = 21, y = 0}, name = 'water'}, - {position = {x = 21, y = 1}, name = 'water'}, - {position = {x = 21, y = 2}, name = 'water'}, - {position = {x = 21, y = 3}, name = 'water'}, - {position = {x = 21, y = 4}, name = 'water'}, - {position = {x = 21, y = 5}, name = 'water'}, - {position = {x = 21, y = 6}, name = 'water'}, - {position = {x = 21, y = 7}, name = 'water'}, - {position = {x = 21, y = 8}, name = 'dirt-5'}, - {position = {x = 21, y = 9}, name = 'dirt-5'}, - {position = {x = 21, y = 10}, name = 'dirt-5'}, - {position = {x = 21, y = 11}, name = 'deepwater'}, - {position = {x = 21, y = 12}, name = 'water'}, - {position = {x = 21, y = 13}, name = 'water'}, - {position = {x = 21, y = 14}, name = 'water'}, - {position = {x = 21, y = 15}, name = 'water'}, - {position = {x = 21, y = 16}, name = 'water'}, - {position = {x = 21, y = 17}, name = 'water'}, - {position = {x = 21, y = 18}, name = 'water'}, - {position = {x = 21, y = 19}, name = 'water'}, - {position = {x = 21, y = 20}, name = 'water'}, - {position = {x = 21, y = 21}, name = 'water'}, - {position = {x = 21, y = 22}, name = 'dirt-5'}, - {position = {x = 21, y = 23}, name = 'dirt-5'}, - {position = {x = 21, y = 24}, name = 'water'}, - {position = {x = 21, y = 25}, name = 'water'}, - {position = {x = 21, y = 26}, name = 'water'}, - {position = {x = 21, y = 27}, name = 'water'}, - {position = {x = 21, y = 28}, name = 'water'}, - {position = {x = 21, y = 29}, name = 'water'}, - {position = {x = 21, y = 30}, name = 'water'}, - {position = {x = 21, y = 31}, name = 'water'}, - {position = {x = 22, y = 0}, name = 'water'}, - {position = {x = 22, y = 1}, name = 'water'}, - {position = {x = 22, y = 2}, name = 'water'}, - {position = {x = 22, y = 3}, name = 'water'}, - {position = {x = 22, y = 4}, name = 'water'}, - {position = {x = 22, y = 5}, name = 'water'}, - {position = {x = 22, y = 6}, name = 'water'}, - {position = {x = 22, y = 7}, name = 'water'}, - {position = {x = 22, y = 8}, name = 'water'}, - {position = {x = 22, y = 9}, name = 'dirt-5'}, - {position = {x = 22, y = 10}, name = 'water'}, - {position = {x = 22, y = 11}, name = 'deepwater'}, - {position = {x = 22, y = 12}, name = 'water'}, - {position = {x = 22, y = 13}, name = 'water'}, - {position = {x = 22, y = 14}, name = 'water'}, - {position = {x = 22, y = 15}, name = 'water'}, - {position = {x = 22, y = 16}, name = 'water'}, - {position = {x = 22, y = 17}, name = 'water'}, - {position = {x = 22, y = 18}, name = 'water'}, - {position = {x = 22, y = 19}, name = 'water'}, - {position = {x = 22, y = 20}, name = 'water'}, - {position = {x = 22, y = 21}, name = 'dirt-5'}, - {position = {x = 22, y = 22}, name = 'water'}, - {position = {x = 22, y = 23}, name = 'water'}, - {position = {x = 22, y = 24}, name = 'water'}, - {position = {x = 22, y = 25}, name = 'water'}, - {position = {x = 22, y = 26}, name = 'water'}, - {position = {x = 22, y = 27}, name = 'water'}, - {position = {x = 22, y = 28}, name = 'water'}, - {position = {x = 22, y = 29}, name = 'water'}, - {position = {x = 22, y = 30}, name = 'water'}, - {position = {x = 22, y = 31}, name = 'water'}, - {position = {x = 23, y = 0}, name = 'water'}, - {position = {x = 23, y = 1}, name = 'water'}, - {position = {x = 23, y = 2}, name = 'water'}, - {position = {x = 23, y = 3}, name = 'water'}, - {position = {x = 23, y = 4}, name = 'water'}, - {position = {x = 23, y = 5}, name = 'water'}, - {position = {x = 23, y = 6}, name = 'water'}, - {position = {x = 23, y = 7}, name = 'water'}, - {position = {x = 23, y = 8}, name = 'water'}, - {position = {x = 23, y = 9}, name = 'dirt-5'}, - {position = {x = 23, y = 10}, name = 'water'}, - {position = {x = 23, y = 11}, name = 'deepwater'}, - {position = {x = 23, y = 12}, name = 'deepwater'}, - {position = {x = 23, y = 13}, name = 'water'}, - {position = {x = 23, y = 14}, name = 'water'}, - {position = {x = 23, y = 15}, name = 'water'}, - {position = {x = 23, y = 16}, name = 'water'}, - {position = {x = 23, y = 17}, name = 'water'}, - {position = {x = 23, y = 18}, name = 'water'}, - {position = {x = 23, y = 19}, name = 'water'}, - {position = {x = 23, y = 20}, name = 'dirt-5'}, - {position = {x = 23, y = 21}, name = 'dirt-5'}, - {position = {x = 23, y = 22}, name = 'water'}, - {position = {x = 23, y = 23}, name = 'water'}, - {position = {x = 23, y = 24}, name = 'water'}, - {position = {x = 23, y = 25}, name = 'water'}, - {position = {x = 23, y = 26}, name = 'water'}, - {position = {x = 23, y = 27}, name = 'water'}, - {position = {x = 23, y = 28}, name = 'water'}, - {position = {x = 23, y = 29}, name = 'water'}, - {position = {x = 23, y = 30}, name = 'water'}, - {position = {x = 23, y = 31}, name = 'water'}, - {position = {x = 24, y = 0}, name = 'water'}, - {position = {x = 24, y = 1}, name = 'water'}, - {position = {x = 24, y = 2}, name = 'water'}, - {position = {x = 24, y = 3}, name = 'water'}, - {position = {x = 24, y = 4}, name = 'water'}, - {position = {x = 24, y = 5}, name = 'water'}, - {position = {x = 24, y = 6}, name = 'water'}, - {position = {x = 24, y = 7}, name = 'water'}, - {position = {x = 24, y = 8}, name = 'water'}, - {position = {x = 24, y = 9}, name = 'water'}, - {position = {x = 24, y = 10}, name = 'dirt-5'}, - {position = {x = 24, y = 11}, name = 'water'}, - {position = {x = 24, y = 12}, name = 'deepwater'}, - {position = {x = 24, y = 13}, name = 'water'}, - {position = {x = 24, y = 14}, name = 'water'}, - {position = {x = 24, y = 15}, name = 'water'}, - {position = {x = 24, y = 16}, name = 'water'}, - {position = {x = 24, y = 17}, name = 'water'}, - {position = {x = 24, y = 18}, name = 'water'}, - {position = {x = 24, y = 19}, name = 'dirt-5'}, - {position = {x = 24, y = 20}, name = 'dirt-5'}, - {position = {x = 24, y = 21}, name = 'water'}, - {position = {x = 24, y = 22}, name = 'water'}, - {position = {x = 24, y = 23}, name = 'water'}, - {position = {x = 24, y = 24}, name = 'water'}, - {position = {x = 24, y = 25}, name = 'water'}, - {position = {x = 24, y = 26}, name = 'water'}, - {position = {x = 24, y = 27}, name = 'water'}, - {position = {x = 24, y = 28}, name = 'water'}, - {position = {x = 24, y = 29}, name = 'water'}, - {position = {x = 24, y = 30}, name = 'water'}, - {position = {x = 24, y = 31}, name = 'water'}, - {position = {x = 25, y = 0}, name = 'water'}, - {position = {x = 25, y = 1}, name = 'water'}, - {position = {x = 25, y = 2}, name = 'water'}, - {position = {x = 25, y = 3}, name = 'water'}, - {position = {x = 25, y = 4}, name = 'water'}, - {position = {x = 25, y = 5}, name = 'water'}, - {position = {x = 25, y = 6}, name = 'water'}, - {position = {x = 25, y = 7}, name = 'water'}, - {position = {x = 25, y = 8}, name = 'water'}, - {position = {x = 25, y = 9}, name = 'water'}, - {position = {x = 25, y = 10}, name = 'water'}, - {position = {x = 25, y = 11}, name = 'dirt-5'}, - {position = {x = 25, y = 12}, name = 'water'}, - {position = {x = 25, y = 13}, name = 'deepwater'}, - {position = {x = 25, y = 14}, name = 'water'}, - {position = {x = 25, y = 15}, name = 'water'}, - {position = {x = 25, y = 16}, name = 'water'}, - {position = {x = 25, y = 17}, name = 'water'}, - {position = {x = 25, y = 18}, name = 'dirt-5'}, - {position = {x = 25, y = 19}, name = 'water'}, - {position = {x = 25, y = 20}, name = 'water'}, - {position = {x = 25, y = 21}, name = 'water'}, - {position = {x = 25, y = 22}, name = 'water'}, - {position = {x = 25, y = 23}, name = 'water'}, - {position = {x = 25, y = 24}, name = 'water'}, - {position = {x = 25, y = 25}, name = 'water'}, - {position = {x = 25, y = 26}, name = 'water'}, - {position = {x = 25, y = 27}, name = 'water'}, - {position = {x = 25, y = 28}, name = 'water'}, - {position = {x = 25, y = 29}, name = 'water'}, - {position = {x = 25, y = 30}, name = 'water'}, - {position = {x = 25, y = 31}, name = 'water'}, - {position = {x = 26, y = 0}, name = 'water'}, - {position = {x = 26, y = 1}, name = 'water'}, - {position = {x = 26, y = 2}, name = 'water'}, - {position = {x = 26, y = 3}, name = 'water'}, - {position = {x = 26, y = 4}, name = 'water'}, - {position = {x = 26, y = 5}, name = 'water'}, - {position = {x = 26, y = 6}, name = 'water'}, - {position = {x = 26, y = 7}, name = 'water'}, - {position = {x = 26, y = 8}, name = 'water'}, - {position = {x = 26, y = 9}, name = 'water'}, - {position = {x = 26, y = 10}, name = 'water'}, - {position = {x = 26, y = 11}, name = 'dirt-5'}, - {position = {x = 26, y = 12}, name = 'water'}, - {position = {x = 26, y = 13}, name = 'deepwater'}, - {position = {x = 26, y = 14}, name = 'deepwater'}, - {position = {x = 26, y = 15}, name = 'water'}, - {position = {x = 26, y = 16}, name = 'water'}, - {position = {x = 26, y = 17}, name = 'dirt-5'}, - {position = {x = 26, y = 18}, name = 'deepwater'}, - {position = {x = 26, y = 19}, name = 'water'}, - {position = {x = 26, y = 20}, name = 'water'}, - {position = {x = 26, y = 21}, name = 'water'}, - {position = {x = 26, y = 22}, name = 'water'}, - {position = {x = 26, y = 23}, name = 'water'}, - {position = {x = 26, y = 24}, name = 'water'}, - {position = {x = 26, y = 25}, name = 'water'}, - {position = {x = 26, y = 26}, name = 'water'}, - {position = {x = 26, y = 27}, name = 'water'}, - {position = {x = 26, y = 28}, name = 'water'}, - {position = {x = 26, y = 29}, name = 'water'}, - {position = {x = 26, y = 30}, name = 'water'}, - {position = {x = 26, y = 31}, name = 'water'}, - {position = {x = 27, y = 0}, name = 'water'}, - {position = {x = 27, y = 1}, name = 'water'}, - {position = {x = 27, y = 2}, name = 'water'}, - {position = {x = 27, y = 3}, name = 'water'}, - {position = {x = 27, y = 4}, name = 'water'}, - {position = {x = 27, y = 5}, name = 'water'}, - {position = {x = 27, y = 6}, name = 'water'}, - {position = {x = 27, y = 7}, name = 'water'}, - {position = {x = 27, y = 8}, name = 'water'}, - {position = {x = 27, y = 9}, name = 'water'}, - {position = {x = 27, y = 10}, name = 'water'}, - {position = {x = 27, y = 11}, name = 'dirt-5'}, - {position = {x = 27, y = 12}, name = 'dirt-5'}, - {position = {x = 27, y = 13}, name = 'water'}, - {position = {x = 27, y = 14}, name = 'water'}, - {position = {x = 27, y = 15}, name = 'deepwater'}, - {position = {x = 27, y = 16}, name = 'dirt-5'}, - {position = {x = 27, y = 17}, name = 'deepwater'}, - {position = {x = 27, y = 18}, name = 'deepwater'}, - {position = {x = 27, y = 19}, name = 'water'}, - {position = {x = 27, y = 20}, name = 'water'}, - {position = {x = 27, y = 21}, name = 'water'}, - {position = {x = 27, y = 22}, name = 'water'}, - {position = {x = 27, y = 23}, name = 'water'}, - {position = {x = 27, y = 24}, name = 'water'}, - {position = {x = 27, y = 25}, name = 'water'}, - {position = {x = 27, y = 26}, name = 'water'}, - {position = {x = 27, y = 27}, name = 'water'}, - {position = {x = 27, y = 28}, name = 'water'}, - {position = {x = 27, y = 29}, name = 'water'}, - {position = {x = 27, y = 30}, name = 'water'}, - {position = {x = 27, y = 31}, name = 'water'}, - {position = {x = 28, y = 0}, name = 'water'}, - {position = {x = 28, y = 1}, name = 'water'}, - {position = {x = 28, y = 2}, name = 'water'}, - {position = {x = 28, y = 3}, name = 'water'}, - {position = {x = 28, y = 4}, name = 'water'}, - {position = {x = 28, y = 5}, name = 'water'}, - {position = {x = 28, y = 6}, name = 'water'}, - {position = {x = 28, y = 7}, name = 'water'}, - {position = {x = 28, y = 8}, name = 'water'}, - {position = {x = 28, y = 9}, name = 'water'}, - {position = {x = 28, y = 10}, name = 'water'}, - {position = {x = 28, y = 11}, name = 'water'}, - {position = {x = 28, y = 12}, name = 'dirt-5'}, - {position = {x = 28, y = 13}, name = 'dirt-5'}, - {position = {x = 28, y = 14}, name = 'dirt-5'}, - {position = {x = 28, y = 15}, name = 'dirt-5'}, - {position = {x = 28, y = 16}, name = 'water'}, - {position = {x = 28, y = 17}, name = 'deepwater'}, - {position = {x = 28, y = 18}, name = 'water'}, - {position = {x = 28, y = 19}, name = 'water'}, - {position = {x = 28, y = 20}, name = 'water'}, - {position = {x = 28, y = 21}, name = 'water'}, - {position = {x = 28, y = 22}, name = 'water'}, - {position = {x = 28, y = 23}, name = 'water'}, - {position = {x = 28, y = 24}, name = 'water'}, - {position = {x = 28, y = 25}, name = 'water'}, - {position = {x = 28, y = 26}, name = 'water'}, - {position = {x = 28, y = 27}, name = 'water'}, - {position = {x = 28, y = 28}, name = 'water'}, - {position = {x = 28, y = 29}, name = 'water'}, - {position = {x = 28, y = 30}, name = 'water'}, - {position = {x = 28, y = 31}, name = 'water'}, - {position = {x = 29, y = 0}, name = 'water'}, - {position = {x = 29, y = 1}, name = 'water'}, - {position = {x = 29, y = 2}, name = 'water'}, - {position = {x = 29, y = 3}, name = 'water'}, - {position = {x = 29, y = 4}, name = 'water'}, - {position = {x = 29, y = 5}, name = 'water'}, - {position = {x = 29, y = 6}, name = 'water'}, - {position = {x = 29, y = 7}, name = 'water'}, - {position = {x = 29, y = 8}, name = 'water'}, - {position = {x = 29, y = 9}, name = 'water'}, - {position = {x = 29, y = 10}, name = 'water'}, - {position = {x = 29, y = 11}, name = 'water'}, - {position = {x = 29, y = 12}, name = 'dirt-5'}, - {position = {x = 29, y = 13}, name = 'dirt-5'}, - {position = {x = 29, y = 14}, name = 'dirt-5'}, - {position = {x = 29, y = 15}, name = 'dirt-5'}, - {position = {x = 29, y = 16}, name = 'water'}, - {position = {x = 29, y = 17}, name = 'deepwater'}, - {position = {x = 29, y = 18}, name = 'water'}, - {position = {x = 29, y = 19}, name = 'water'}, - {position = {x = 29, y = 20}, name = 'water'}, - {position = {x = 29, y = 21}, name = 'water'}, - {position = {x = 29, y = 22}, name = 'water'}, - {position = {x = 29, y = 23}, name = 'water'}, - {position = {x = 29, y = 24}, name = 'water'}, - {position = {x = 29, y = 25}, name = 'water'}, - {position = {x = 29, y = 26}, name = 'water'}, - {position = {x = 29, y = 27}, name = 'water'}, - {position = {x = 29, y = 28}, name = 'water'}, - {position = {x = 29, y = 29}, name = 'water'}, - {position = {x = 29, y = 30}, name = 'water'}, - {position = {x = 29, y = 31}, name = 'water'}, - {position = {x = 30, y = 0}, name = 'water'}, - {position = {x = 30, y = 1}, name = 'water'}, - {position = {x = 30, y = 2}, name = 'water'}, - {position = {x = 30, y = 3}, name = 'water'}, - {position = {x = 30, y = 4}, name = 'water'}, - {position = {x = 30, y = 5}, name = 'water'}, - {position = {x = 30, y = 6}, name = 'water'}, - {position = {x = 30, y = 7}, name = 'water'}, - {position = {x = 30, y = 8}, name = 'water'}, - {position = {x = 30, y = 9}, name = 'water'}, - {position = {x = 30, y = 10}, name = 'water'}, - {position = {x = 30, y = 11}, name = 'water'}, - {position = {x = 30, y = 12}, name = 'dirt-5'}, - {position = {x = 30, y = 13}, name = 'grass-2'}, - {position = {x = 30, y = 14}, name = 'grass-2'}, - {position = {x = 30, y = 15}, name = 'dirt-5'}, - {position = {x = 30, y = 16}, name = 'water'}, - {position = {x = 30, y = 17}, name = 'deepwater'}, - {position = {x = 30, y = 18}, name = 'water'}, - {position = {x = 30, y = 19}, name = 'water'}, - {position = {x = 30, y = 20}, name = 'water'}, - {position = {x = 30, y = 21}, name = 'water'}, - {position = {x = 30, y = 22}, name = 'water'}, - {position = {x = 30, y = 23}, name = 'water'}, - {position = {x = 30, y = 24}, name = 'water'}, - {position = {x = 30, y = 25}, name = 'water'}, - {position = {x = 30, y = 26}, name = 'water'}, - {position = {x = 30, y = 27}, name = 'water'}, - {position = {x = 30, y = 28}, name = 'water'}, - {position = {x = 30, y = 29}, name = 'water'}, - {position = {x = 30, y = 30}, name = 'water'}, - {position = {x = 30, y = 31}, name = 'water'}, - {position = {x = 31, y = 0}, name = 'water'}, - {position = {x = 31, y = 1}, name = 'water'}, - {position = {x = 31, y = 2}, name = 'water'}, - {position = {x = 31, y = 3}, name = 'water'}, - {position = {x = 31, y = 4}, name = 'water'}, - {position = {x = 31, y = 5}, name = 'water'}, - {position = {x = 31, y = 6}, name = 'water'}, - {position = {x = 31, y = 7}, name = 'water'}, - {position = {x = 31, y = 8}, name = 'water'}, - {position = {x = 31, y = 9}, name = 'water'}, - {position = {x = 31, y = 10}, name = 'water'}, - {position = {x = 31, y = 11}, name = 'water'}, - {position = {x = 31, y = 12}, name = 'dirt-5'}, - {position = {x = 31, y = 13}, name = 'deepwater'}, - {position = {x = 31, y = 14}, name = 'deepwater'}, - {position = {x = 31, y = 15}, name = 'dirt-5'}, - {position = {x = 31, y = 16}, name = 'water'}, - {position = {x = 31, y = 17}, name = 'deepwater'}, - {position = {x = 31, y = 18}, name = 'water'}, - {position = {x = 31, y = 19}, name = 'water'}, - {position = {x = 31, y = 20}, name = 'water'}, - {position = {x = 31, y = 21}, name = 'water'}, - {position = {x = 31, y = 22}, name = 'water'}, - {position = {x = 31, y = 23}, name = 'water'}, - {position = {x = 31, y = 24}, name = 'water'}, - {position = {x = 31, y = 25}, name = 'water'}, - {position = {x = 31, y = 26}, name = 'water'}, - {position = {x = 31, y = 27}, name = 'water'}, - {position = {x = 31, y = 28}, name = 'water'}, - {position = {x = 31, y = 29}, name = 'water'}, - {position = {x = 31, y = 30}, name = 'water'}, - {position = {x = 31, y = 31}, name = 'water'} + { position = { x = 0, y = 0 }, name = 'water' }, + { position = { x = 0, y = 1 }, name = 'water' }, + { position = { x = 0, y = 2 }, name = 'water' }, + { position = { x = 0, y = 3 }, name = 'water' }, + { position = { x = 0, y = 4 }, name = 'water' }, + { position = { x = 0, y = 5 }, name = 'water' }, + { position = { x = 0, y = 6 }, name = 'water' }, + { position = { x = 0, y = 7 }, name = 'water' }, + { position = { x = 0, y = 8 }, name = 'water' }, + { position = { x = 0, y = 9 }, name = 'water' }, + { position = { x = 0, y = 10 }, name = 'water' }, + { position = { x = 0, y = 11 }, name = 'water' }, + { position = { x = 0, y = 12 }, name = 'dirt-5' }, + { position = { x = 0, y = 13 }, name = 'deepwater' }, + { position = { x = 0, y = 14 }, name = 'deepwater' }, + { position = { x = 0, y = 15 }, name = 'dirt-5' }, + { position = { x = 0, y = 16 }, name = 'water' }, + { position = { x = 0, y = 17 }, name = 'deepwater' }, + { position = { x = 0, y = 18 }, name = 'water' }, + { position = { x = 0, y = 19 }, name = 'water' }, + { position = { x = 0, y = 20 }, name = 'water' }, + { position = { x = 0, y = 21 }, name = 'water' }, + { position = { x = 0, y = 22 }, name = 'water' }, + { position = { x = 0, y = 23 }, name = 'water' }, + { position = { x = 0, y = 24 }, name = 'water' }, + { position = { x = 0, y = 25 }, name = 'water' }, + { position = { x = 0, y = 26 }, name = 'water' }, + { position = { x = 0, y = 27 }, name = 'water' }, + { position = { x = 0, y = 28 }, name = 'water' }, + { position = { x = 0, y = 29 }, name = 'water' }, + { position = { x = 0, y = 30 }, name = 'water' }, + { position = { x = 0, y = 31 }, name = 'water' }, + { position = { x = 1, y = 0 }, name = 'water' }, + { position = { x = 1, y = 1 }, name = 'water' }, + { position = { x = 1, y = 2 }, name = 'water' }, + { position = { x = 1, y = 3 }, name = 'water' }, + { position = { x = 1, y = 4 }, name = 'water' }, + { position = { x = 1, y = 5 }, name = 'water' }, + { position = { x = 1, y = 6 }, name = 'water' }, + { position = { x = 1, y = 7 }, name = 'water' }, + { position = { x = 1, y = 8 }, name = 'water' }, + { position = { x = 1, y = 9 }, name = 'water' }, + { position = { x = 1, y = 10 }, name = 'water' }, + { position = { x = 1, y = 11 }, name = 'water' }, + { position = { x = 1, y = 12 }, name = 'dirt-5' }, + { position = { x = 1, y = 13 }, name = 'grass-2' }, + { position = { x = 1, y = 14 }, name = 'grass-2' }, + { position = { x = 1, y = 15 }, name = 'dirt-5' }, + { position = { x = 1, y = 16 }, name = 'water' }, + { position = { x = 1, y = 17 }, name = 'deepwater' }, + { position = { x = 1, y = 18 }, name = 'water' }, + { position = { x = 1, y = 19 }, name = 'water' }, + { position = { x = 1, y = 20 }, name = 'water' }, + { position = { x = 1, y = 21 }, name = 'water' }, + { position = { x = 1, y = 22 }, name = 'water' }, + { position = { x = 1, y = 23 }, name = 'water' }, + { position = { x = 1, y = 24 }, name = 'water' }, + { position = { x = 1, y = 25 }, name = 'water' }, + { position = { x = 1, y = 26 }, name = 'water' }, + { position = { x = 1, y = 27 }, name = 'water' }, + { position = { x = 1, y = 28 }, name = 'water' }, + { position = { x = 1, y = 29 }, name = 'water' }, + { position = { x = 1, y = 30 }, name = 'water' }, + { position = { x = 1, y = 31 }, name = 'water' }, + { position = { x = 2, y = 0 }, name = 'water' }, + { position = { x = 2, y = 1 }, name = 'water' }, + { position = { x = 2, y = 2 }, name = 'water' }, + { position = { x = 2, y = 3 }, name = 'water' }, + { position = { x = 2, y = 4 }, name = 'water' }, + { position = { x = 2, y = 5 }, name = 'water' }, + { position = { x = 2, y = 6 }, name = 'water' }, + { position = { x = 2, y = 7 }, name = 'water' }, + { position = { x = 2, y = 8 }, name = 'water' }, + { position = { x = 2, y = 9 }, name = 'water' }, + { position = { x = 2, y = 10 }, name = 'water' }, + { position = { x = 2, y = 11 }, name = 'water' }, + { position = { x = 2, y = 12 }, name = 'dirt-5' }, + { position = { x = 2, y = 13 }, name = 'grass-2' }, + { position = { x = 2, y = 14 }, name = 'grass-2' }, + { position = { x = 2, y = 15 }, name = 'dirt-5' }, + { position = { x = 2, y = 16 }, name = 'water' }, + { position = { x = 2, y = 17 }, name = 'deepwater' }, + { position = { x = 2, y = 18 }, name = 'water' }, + { position = { x = 2, y = 19 }, name = 'water' }, + { position = { x = 2, y = 20 }, name = 'water' }, + { position = { x = 2, y = 21 }, name = 'water' }, + { position = { x = 2, y = 22 }, name = 'water' }, + { position = { x = 2, y = 23 }, name = 'water' }, + { position = { x = 2, y = 24 }, name = 'water' }, + { position = { x = 2, y = 25 }, name = 'water' }, + { position = { x = 2, y = 26 }, name = 'water' }, + { position = { x = 2, y = 27 }, name = 'water' }, + { position = { x = 2, y = 28 }, name = 'water' }, + { position = { x = 2, y = 29 }, name = 'water' }, + { position = { x = 2, y = 30 }, name = 'water' }, + { position = { x = 2, y = 31 }, name = 'water' }, + { position = { x = 3, y = 0 }, name = 'water' }, + { position = { x = 3, y = 1 }, name = 'water' }, + { position = { x = 3, y = 2 }, name = 'water' }, + { position = { x = 3, y = 3 }, name = 'water' }, + { position = { x = 3, y = 4 }, name = 'water' }, + { position = { x = 3, y = 5 }, name = 'water' }, + { position = { x = 3, y = 6 }, name = 'water' }, + { position = { x = 3, y = 7 }, name = 'water' }, + { position = { x = 3, y = 8 }, name = 'water' }, + { position = { x = 3, y = 9 }, name = 'water' }, + { position = { x = 3, y = 10 }, name = 'water' }, + { position = { x = 3, y = 11 }, name = 'water' }, + { position = { x = 3, y = 12 }, name = 'dirt-5' }, + { position = { x = 3, y = 13 }, name = 'dirt-5' }, + { position = { x = 3, y = 14 }, name = 'dirt-5' }, + { position = { x = 3, y = 15 }, name = 'dirt-5' }, + { position = { x = 3, y = 16 }, name = 'water' }, + { position = { x = 3, y = 17 }, name = 'deepwater' }, + { position = { x = 3, y = 18 }, name = 'water' }, + { position = { x = 3, y = 19 }, name = 'water' }, + { position = { x = 3, y = 20 }, name = 'water' }, + { position = { x = 3, y = 21 }, name = 'water' }, + { position = { x = 3, y = 22 }, name = 'water' }, + { position = { x = 3, y = 23 }, name = 'water' }, + { position = { x = 3, y = 24 }, name = 'water' }, + { position = { x = 3, y = 25 }, name = 'water' }, + { position = { x = 3, y = 26 }, name = 'water' }, + { position = { x = 3, y = 27 }, name = 'water' }, + { position = { x = 3, y = 28 }, name = 'water' }, + { position = { x = 3, y = 29 }, name = 'water' }, + { position = { x = 3, y = 30 }, name = 'water' }, + { position = { x = 3, y = 31 }, name = 'water' }, + { position = { x = 4, y = 0 }, name = 'water' }, + { position = { x = 4, y = 1 }, name = 'water' }, + { position = { x = 4, y = 2 }, name = 'water' }, + { position = { x = 4, y = 3 }, name = 'water' }, + { position = { x = 4, y = 4 }, name = 'water' }, + { position = { x = 4, y = 5 }, name = 'water' }, + { position = { x = 4, y = 6 }, name = 'water' }, + { position = { x = 4, y = 7 }, name = 'water' }, + { position = { x = 4, y = 8 }, name = 'water' }, + { position = { x = 4, y = 9 }, name = 'water' }, + { position = { x = 4, y = 10 }, name = 'water' }, + { position = { x = 4, y = 11 }, name = 'dirt-5' }, + { position = { x = 4, y = 12 }, name = 'water' }, + { position = { x = 4, y = 13 }, name = 'water' }, + { position = { x = 4, y = 14 }, name = 'water' }, + { position = { x = 4, y = 15 }, name = 'dirt-5' }, + { position = { x = 4, y = 16 }, name = 'water' }, + { position = { x = 4, y = 17 }, name = 'deepwater' }, + { position = { x = 4, y = 18 }, name = 'water' }, + { position = { x = 4, y = 19 }, name = 'water' }, + { position = { x = 4, y = 20 }, name = 'water' }, + { position = { x = 4, y = 21 }, name = 'water' }, + { position = { x = 4, y = 22 }, name = 'water' }, + { position = { x = 4, y = 23 }, name = 'water' }, + { position = { x = 4, y = 24 }, name = 'water' }, + { position = { x = 4, y = 25 }, name = 'water' }, + { position = { x = 4, y = 26 }, name = 'water' }, + { position = { x = 4, y = 27 }, name = 'water' }, + { position = { x = 4, y = 28 }, name = 'water' }, + { position = { x = 4, y = 29 }, name = 'water' }, + { position = { x = 4, y = 30 }, name = 'water' }, + { position = { x = 4, y = 31 }, name = 'water' }, + { position = { x = 5, y = 0 }, name = 'water' }, + { position = { x = 5, y = 1 }, name = 'water' }, + { position = { x = 5, y = 2 }, name = 'water' }, + { position = { x = 5, y = 3 }, name = 'water' }, + { position = { x = 5, y = 4 }, name = 'water' }, + { position = { x = 5, y = 5 }, name = 'water' }, + { position = { x = 5, y = 6 }, name = 'water' }, + { position = { x = 5, y = 7 }, name = 'water' }, + { position = { x = 5, y = 8 }, name = 'water' }, + { position = { x = 5, y = 9 }, name = 'water' }, + { position = { x = 5, y = 10 }, name = 'dirt-5' }, + { position = { x = 5, y = 11 }, name = 'dirt-5' }, + { position = { x = 5, y = 12 }, name = 'water' }, + { position = { x = 5, y = 13 }, name = 'water' }, + { position = { x = 5, y = 14 }, name = 'water' }, + { position = { x = 5, y = 15 }, name = 'dirt-5' }, + { position = { x = 5, y = 16 }, name = 'dirt-5' }, + { position = { x = 5, y = 17 }, name = 'water' }, + { position = { x = 5, y = 18 }, name = 'deepwater' }, + { position = { x = 5, y = 19 }, name = 'water' }, + { position = { x = 5, y = 20 }, name = 'water' }, + { position = { x = 5, y = 21 }, name = 'water' }, + { position = { x = 5, y = 22 }, name = 'water' }, + { position = { x = 5, y = 23 }, name = 'water' }, + { position = { x = 5, y = 24 }, name = 'water' }, + { position = { x = 5, y = 25 }, name = 'water' }, + { position = { x = 5, y = 26 }, name = 'water' }, + { position = { x = 5, y = 27 }, name = 'water' }, + { position = { x = 5, y = 28 }, name = 'water' }, + { position = { x = 5, y = 29 }, name = 'water' }, + { position = { x = 5, y = 30 }, name = 'water' }, + { position = { x = 5, y = 31 }, name = 'water' }, + { position = { x = 6, y = 0 }, name = 'water' }, + { position = { x = 6, y = 1 }, name = 'water' }, + { position = { x = 6, y = 2 }, name = 'water' }, + { position = { x = 6, y = 3 }, name = 'water' }, + { position = { x = 6, y = 4 }, name = 'water' }, + { position = { x = 6, y = 5 }, name = 'water' }, + { position = { x = 6, y = 6 }, name = 'water' }, + { position = { x = 6, y = 7 }, name = 'water' }, + { position = { x = 6, y = 8 }, name = 'water' }, + { position = { x = 6, y = 9 }, name = 'water' }, + { position = { x = 6, y = 10 }, name = 'dirt-5' }, + { position = { x = 6, y = 11 }, name = 'water' }, + { position = { x = 6, y = 12 }, name = 'water' }, + { position = { x = 6, y = 13 }, name = 'water' }, + { position = { x = 6, y = 14 }, name = 'water' }, + { position = { x = 6, y = 15 }, name = 'water' }, + { position = { x = 6, y = 16 }, name = 'dirt-5' }, + { position = { x = 6, y = 17 }, name = 'water' }, + { position = { x = 6, y = 18 }, name = 'deepwater' }, + { position = { x = 6, y = 19 }, name = 'deepwater' }, + { position = { x = 6, y = 20 }, name = 'water' }, + { position = { x = 6, y = 21 }, name = 'water' }, + { position = { x = 6, y = 22 }, name = 'water' }, + { position = { x = 6, y = 23 }, name = 'water' }, + { position = { x = 6, y = 24 }, name = 'water' }, + { position = { x = 6, y = 25 }, name = 'water' }, + { position = { x = 6, y = 26 }, name = 'water' }, + { position = { x = 6, y = 27 }, name = 'water' }, + { position = { x = 6, y = 28 }, name = 'water' }, + { position = { x = 6, y = 29 }, name = 'water' }, + { position = { x = 6, y = 30 }, name = 'water' }, + { position = { x = 6, y = 31 }, name = 'water' }, + { position = { x = 7, y = 0 }, name = 'water' }, + { position = { x = 7, y = 1 }, name = 'water' }, + { position = { x = 7, y = 2 }, name = 'water' }, + { position = { x = 7, y = 3 }, name = 'water' }, + { position = { x = 7, y = 4 }, name = 'water' }, + { position = { x = 7, y = 5 }, name = 'water' }, + { position = { x = 7, y = 6 }, name = 'water' }, + { position = { x = 7, y = 7 }, name = 'water' }, + { position = { x = 7, y = 8 }, name = 'water' }, + { position = { x = 7, y = 9 }, name = 'dirt-5' }, + { position = { x = 7, y = 10 }, name = 'water' }, + { position = { x = 7, y = 11 }, name = 'water' }, + { position = { x = 7, y = 12 }, name = 'water' }, + { position = { x = 7, y = 13 }, name = 'water' }, + { position = { x = 7, y = 14 }, name = 'water' }, + { position = { x = 7, y = 15 }, name = 'water' }, + { position = { x = 7, y = 16 }, name = 'water' }, + { position = { x = 7, y = 17 }, name = 'dirt-5' }, + { position = { x = 7, y = 18 }, name = 'water' }, + { position = { x = 7, y = 19 }, name = 'water' }, + { position = { x = 7, y = 20 }, name = 'deepwater' }, + { position = { x = 7, y = 21 }, name = 'deepwater' }, + { position = { x = 7, y = 22 }, name = 'water' }, + { position = { x = 7, y = 23 }, name = 'water' }, + { position = { x = 7, y = 24 }, name = 'water' }, + { position = { x = 7, y = 25 }, name = 'water' }, + { position = { x = 7, y = 26 }, name = 'water' }, + { position = { x = 7, y = 27 }, name = 'water' }, + { position = { x = 7, y = 28 }, name = 'water' }, + { position = { x = 7, y = 29 }, name = 'water' }, + { position = { x = 7, y = 30 }, name = 'water' }, + { position = { x = 7, y = 31 }, name = 'water' }, + { position = { x = 8, y = 0 }, name = 'water' }, + { position = { x = 8, y = 1 }, name = 'water' }, + { position = { x = 8, y = 2 }, name = 'water' }, + { position = { x = 8, y = 3 }, name = 'water' }, + { position = { x = 8, y = 4 }, name = 'water' }, + { position = { x = 8, y = 5 }, name = 'water' }, + { position = { x = 8, y = 6 }, name = 'water' }, + { position = { x = 8, y = 7 }, name = 'water' }, + { position = { x = 8, y = 8 }, name = 'dirt-5' }, + { position = { x = 8, y = 9 }, name = 'dirt-5' }, + { position = { x = 8, y = 10 }, name = 'deepwater' }, + { position = { x = 8, y = 11 }, name = 'water' }, + { position = { x = 8, y = 12 }, name = 'water' }, + { position = { x = 8, y = 13 }, name = 'water' }, + { position = { x = 8, y = 14 }, name = 'water' }, + { position = { x = 8, y = 15 }, name = 'water' }, + { position = { x = 8, y = 16 }, name = 'water' }, + { position = { x = 8, y = 17 }, name = 'dirt-5' }, + { position = { x = 8, y = 18 }, name = 'dirt-5' }, + { position = { x = 8, y = 19 }, name = 'water' }, + { position = { x = 8, y = 20 }, name = 'water' }, + { position = { x = 8, y = 21 }, name = 'deepwater' }, + { position = { x = 8, y = 22 }, name = 'deepwater' }, + { position = { x = 8, y = 23 }, name = 'water' }, + { position = { x = 8, y = 24 }, name = 'water' }, + { position = { x = 8, y = 25 }, name = 'water' }, + { position = { x = 8, y = 26 }, name = 'water' }, + { position = { x = 8, y = 27 }, name = 'water' }, + { position = { x = 8, y = 28 }, name = 'water' }, + { position = { x = 8, y = 29 }, name = 'water' }, + { position = { x = 8, y = 30 }, name = 'water' }, + { position = { x = 8, y = 31 }, name = 'water' }, + { position = { x = 9, y = 0 }, name = 'water' }, + { position = { x = 9, y = 1 }, name = 'water' }, + { position = { x = 9, y = 2 }, name = 'water' }, + { position = { x = 9, y = 3 }, name = 'water' }, + { position = { x = 9, y = 4 }, name = 'water' }, + { position = { x = 9, y = 5 }, name = 'water' }, + { position = { x = 9, y = 6 }, name = 'water' }, + { position = { x = 9, y = 7 }, name = 'dirt-5' }, + { position = { x = 9, y = 8 }, name = 'dirt-5' }, + { position = { x = 9, y = 9 }, name = 'dirt-5' }, + { position = { x = 9, y = 10 }, name = 'deepwater' }, + { position = { x = 9, y = 11 }, name = 'water' }, + { position = { x = 9, y = 12 }, name = 'water' }, + { position = { x = 9, y = 13 }, name = 'water' }, + { position = { x = 9, y = 14 }, name = 'water' }, + { position = { x = 9, y = 15 }, name = 'water' }, + { position = { x = 9, y = 16 }, name = 'water' }, + { position = { x = 9, y = 17 }, name = 'water' }, + { position = { x = 9, y = 18 }, name = 'water' }, + { position = { x = 9, y = 19 }, name = 'dirt-5' }, + { position = { x = 9, y = 20 }, name = 'dirt-5' }, + { position = { x = 9, y = 21 }, name = 'water' }, + { position = { x = 9, y = 22 }, name = 'water' }, + { position = { x = 9, y = 23 }, name = 'deepwater' }, + { position = { x = 9, y = 24 }, name = 'deepwater' }, + { position = { x = 9, y = 25 }, name = 'water' }, + { position = { x = 9, y = 26 }, name = 'water' }, + { position = { x = 9, y = 27 }, name = 'water' }, + { position = { x = 9, y = 28 }, name = 'water' }, + { position = { x = 9, y = 29 }, name = 'water' }, + { position = { x = 9, y = 30 }, name = 'water' }, + { position = { x = 9, y = 31 }, name = 'water' }, + { position = { x = 10, y = 0 }, name = 'water' }, + { position = { x = 10, y = 1 }, name = 'water' }, + { position = { x = 10, y = 2 }, name = 'water' }, + { position = { x = 10, y = 3 }, name = 'water' }, + { position = { x = 10, y = 4 }, name = 'water' }, + { position = { x = 10, y = 5 }, name = 'water' }, + { position = { x = 10, y = 6 }, name = 'dirt-5' }, + { position = { x = 10, y = 7 }, name = 'water' }, + { position = { x = 10, y = 8 }, name = 'water' }, + { position = { x = 10, y = 9 }, name = 'dirt-5' }, + { position = { x = 10, y = 10 }, name = 'water' }, + { position = { x = 10, y = 11 }, name = 'deepwater' }, + { position = { x = 10, y = 12 }, name = 'water' }, + { position = { x = 10, y = 13 }, name = 'water' }, + { position = { x = 10, y = 14 }, name = 'water' }, + { position = { x = 10, y = 15 }, name = 'water' }, + { position = { x = 10, y = 16 }, name = 'water' }, + { position = { x = 10, y = 17 }, name = 'water' }, + { position = { x = 10, y = 18 }, name = 'water' }, + { position = { x = 10, y = 19 }, name = 'dirt-5' }, + { position = { x = 10, y = 20 }, name = 'water' }, + { position = { x = 10, y = 21 }, name = 'dirt-5' }, + { position = { x = 10, y = 22 }, name = 'dirt-5' }, + { position = { x = 10, y = 23 }, name = 'water' }, + { position = { x = 10, y = 24 }, name = 'deepwater' }, + { position = { x = 10, y = 25 }, name = 'deepwater' }, + { position = { x = 10, y = 26 }, name = 'water' }, + { position = { x = 10, y = 27 }, name = 'water' }, + { position = { x = 10, y = 28 }, name = 'water' }, + { position = { x = 10, y = 29 }, name = 'water' }, + { position = { x = 10, y = 30 }, name = 'water' }, + { position = { x = 10, y = 31 }, name = 'water' }, + { position = { x = 11, y = 0 }, name = 'water' }, + { position = { x = 11, y = 1 }, name = 'water' }, + { position = { x = 11, y = 2 }, name = 'water' }, + { position = { x = 11, y = 3 }, name = 'water' }, + { position = { x = 11, y = 4 }, name = 'water' }, + { position = { x = 11, y = 5 }, name = 'water' }, + { position = { x = 11, y = 6 }, name = 'dirt-5' }, + { position = { x = 11, y = 7 }, name = 'water' }, + { position = { x = 11, y = 8 }, name = 'water' }, + { position = { x = 11, y = 9 }, name = 'water' }, + { position = { x = 11, y = 10 }, name = 'dirt-5' }, + { position = { x = 11, y = 11 }, name = 'water' }, + { position = { x = 11, y = 12 }, name = 'deepwater' }, + { position = { x = 11, y = 13 }, name = 'deepwater' }, + { position = { x = 11, y = 14 }, name = 'water' }, + { position = { x = 11, y = 15 }, name = 'water' }, + { position = { x = 11, y = 16 }, name = 'water' }, + { position = { x = 11, y = 17 }, name = 'water' }, + { position = { x = 11, y = 18 }, name = 'dirt-5' }, + { position = { x = 11, y = 19 }, name = 'water' }, + { position = { x = 11, y = 20 }, name = 'water' }, + { position = { x = 11, y = 21 }, name = 'water' }, + { position = { x = 11, y = 22 }, name = 'dirt-5' }, + { position = { x = 11, y = 23 }, name = 'dirt-5' }, + { position = { x = 11, y = 24 }, name = 'water' }, + { position = { x = 11, y = 25 }, name = 'water' }, + { position = { x = 11, y = 26 }, name = 'deepwater' }, + { position = { x = 11, y = 27 }, name = 'water' }, + { position = { x = 11, y = 28 }, name = 'water' }, + { position = { x = 11, y = 29 }, name = 'water' }, + { position = { x = 11, y = 30 }, name = 'water' }, + { position = { x = 11, y = 31 }, name = 'water' }, + { position = { x = 12, y = 0 }, name = 'water' }, + { position = { x = 12, y = 1 }, name = 'water' }, + { position = { x = 12, y = 2 }, name = 'water' }, + { position = { x = 12, y = 3 }, name = 'water' }, + { position = { x = 12, y = 4 }, name = 'water' }, + { position = { x = 12, y = 5 }, name = 'dirt-5' }, + { position = { x = 12, y = 6 }, name = 'water' }, + { position = { x = 12, y = 7 }, name = 'water' }, + { position = { x = 12, y = 8 }, name = 'water' }, + { position = { x = 12, y = 9 }, name = 'water' }, + { position = { x = 12, y = 10 }, name = 'water' }, + { position = { x = 12, y = 11 }, name = 'dirt-5' }, + { position = { x = 12, y = 12 }, name = 'water' }, + { position = { x = 12, y = 13 }, name = 'water' }, + { position = { x = 12, y = 14 }, name = 'deepwater' }, + { position = { x = 12, y = 15 }, name = 'water' }, + { position = { x = 12, y = 16 }, name = 'water' }, + { position = { x = 12, y = 17 }, name = 'water' }, + { position = { x = 12, y = 18 }, name = 'dirt-5' }, + { position = { x = 12, y = 19 }, name = 'water' }, + { position = { x = 12, y = 20 }, name = 'water' }, + { position = { x = 12, y = 21 }, name = 'water' }, + { position = { x = 12, y = 22 }, name = 'water' }, + { position = { x = 12, y = 23 }, name = 'water' }, + { position = { x = 12, y = 24 }, name = 'dirt-5' }, + { position = { x = 12, y = 25 }, name = 'water' }, + { position = { x = 12, y = 26 }, name = 'deepwater' }, + { position = { x = 12, y = 27 }, name = 'deepwater' }, + { position = { x = 12, y = 28 }, name = 'deepwater' }, + { position = { x = 12, y = 29 }, name = 'water' }, + { position = { x = 12, y = 30 }, name = 'water' }, + { position = { x = 12, y = 31 }, name = 'water' }, + { position = { x = 13, y = 0 }, name = 'deepwater' }, + { position = { x = 13, y = 1 }, name = 'deepwater' }, + { position = { x = 13, y = 2 }, name = 'deepwater' }, + { position = { x = 13, y = 3 }, name = 'water' }, + { position = { x = 13, y = 4 }, name = 'dirt-5' }, + { position = { x = 13, y = 5 }, name = 'water' }, + { position = { x = 13, y = 6 }, name = 'water' }, + { position = { x = 13, y = 7 }, name = 'water' }, + { position = { x = 13, y = 8 }, name = 'water' }, + { position = { x = 13, y = 9 }, name = 'water' }, + { position = { x = 13, y = 10 }, name = 'water' }, + { position = { x = 13, y = 11 }, name = 'water' }, + { position = { x = 13, y = 12 }, name = 'dirt-5' }, + { position = { x = 13, y = 13 }, name = 'water' }, + { position = { x = 13, y = 14 }, name = 'water' }, + { position = { x = 13, y = 15 }, name = 'deepwater' }, + { position = { x = 13, y = 16 }, name = 'dirt-5' }, + { position = { x = 13, y = 17 }, name = 'dirt-5' }, + { position = { x = 13, y = 18 }, name = 'water' }, + { position = { x = 13, y = 19 }, name = 'water' }, + { position = { x = 13, y = 20 }, name = 'water' }, + { position = { x = 13, y = 21 }, name = 'water' }, + { position = { x = 13, y = 22 }, name = 'water' }, + { position = { x = 13, y = 23 }, name = 'water' }, + { position = { x = 13, y = 24 }, name = 'water' }, + { position = { x = 13, y = 25 }, name = 'dirt-5' }, + { position = { x = 13, y = 26 }, name = 'dirt-5' }, + { position = { x = 13, y = 27 }, name = 'dirt-5' }, + { position = { x = 13, y = 28 }, name = 'water' }, + { position = { x = 13, y = 29 }, name = 'deepwater' }, + { position = { x = 13, y = 30 }, name = 'deepwater' }, + { position = { x = 13, y = 31 }, name = 'deepwater' }, + { position = { x = 14, y = 0 }, name = 'dirt-5' }, + { position = { x = 14, y = 1 }, name = 'dirt-5' }, + { position = { x = 14, y = 2 }, name = 'dirt-5' }, + { position = { x = 14, y = 3 }, name = 'dirt-5' }, + { position = { x = 14, y = 4 }, name = 'water' }, + { position = { x = 14, y = 5 }, name = 'deepwater' }, + { position = { x = 14, y = 6 }, name = 'water' }, + { position = { x = 14, y = 7 }, name = 'water' }, + { position = { x = 14, y = 8 }, name = 'water' }, + { position = { x = 14, y = 9 }, name = 'water' }, + { position = { x = 14, y = 10 }, name = 'water' }, + { position = { x = 14, y = 11 }, name = 'water' }, + { position = { x = 14, y = 12 }, name = 'water' }, + { position = { x = 14, y = 13 }, name = 'dirt-4' }, + { position = { x = 14, y = 14 }, name = 'dirt-5' }, + { position = { x = 14, y = 15 }, name = 'grass-2' }, + { position = { x = 14, y = 16 }, name = 'dirt-5' }, + { position = { x = 14, y = 17 }, name = 'water' }, + { position = { x = 14, y = 18 }, name = 'water' }, + { position = { x = 14, y = 19 }, name = 'water' }, + { position = { x = 14, y = 20 }, name = 'water' }, + { position = { x = 14, y = 21 }, name = 'water' }, + { position = { x = 14, y = 22 }, name = 'water' }, + { position = { x = 14, y = 23 }, name = 'water' }, + { position = { x = 14, y = 24 }, name = 'water' }, + { position = { x = 14, y = 25 }, name = 'water' }, + { position = { x = 14, y = 26 }, name = 'water' }, + { position = { x = 14, y = 27 }, name = 'dirt-5' }, + { position = { x = 14, y = 28 }, name = 'dirt-5' }, + { position = { x = 14, y = 29 }, name = 'dirt-5' }, + { position = { x = 14, y = 30 }, name = 'dirt-5' }, + { position = { x = 14, y = 31 }, name = 'dirt-5' }, + { position = { x = 15, y = 0 }, name = 'deepwater' }, + { position = { x = 15, y = 1 }, name = 'grass-2' }, + { position = { x = 15, y = 2 }, name = 'dirt-5' }, + { position = { x = 15, y = 3 }, name = 'dirt-5' }, + { position = { x = 15, y = 4 }, name = 'water' }, + { position = { x = 15, y = 5 }, name = 'deepwater' }, + { position = { x = 15, y = 6 }, name = 'water' }, + { position = { x = 15, y = 7 }, name = 'water' }, + { position = { x = 15, y = 8 }, name = 'water' }, + { position = { x = 15, y = 9 }, name = 'water' }, + { position = { x = 15, y = 10 }, name = 'water' }, + { position = { x = 15, y = 11 }, name = 'water' }, + { position = { x = 15, y = 12 }, name = 'water' }, + { position = { x = 15, y = 13 }, name = 'water' }, + { position = { x = 15, y = 14 }, name = 'dirt-5' }, + { position = { x = 15, y = 15 }, name = 'dirt-5' }, + { position = { x = 15, y = 16 }, name = 'grass-2' }, + { position = { x = 15, y = 17 }, name = 'water' }, + { position = { x = 15, y = 18 }, name = 'deepwater' }, + { position = { x = 15, y = 19 }, name = 'water' }, + { position = { x = 15, y = 20 }, name = 'water' }, + { position = { x = 15, y = 21 }, name = 'water' }, + { position = { x = 15, y = 22 }, name = 'water' }, + { position = { x = 15, y = 23 }, name = 'water' }, + { position = { x = 15, y = 24 }, name = 'water' }, + { position = { x = 15, y = 25 }, name = 'water' }, + { position = { x = 15, y = 26 }, name = 'water' }, + { position = { x = 15, y = 27 }, name = 'water' }, + { position = { x = 15, y = 28 }, name = 'dirt-5' }, + { position = { x = 15, y = 29 }, name = 'dirt-5' }, + { position = { x = 15, y = 30 }, name = 'grass-2' }, + { position = { x = 15, y = 31 }, name = 'deepwater' }, + { position = { x = 16, y = 0 }, name = 'deepwater' }, + { position = { x = 16, y = 1 }, name = 'grass-2' }, + { position = { x = 16, y = 2 }, name = 'dirt-5' }, + { position = { x = 16, y = 3 }, name = 'dirt-5' }, + { position = { x = 16, y = 4 }, name = 'water' }, + { position = { x = 16, y = 5 }, name = 'deepwater' }, + { position = { x = 16, y = 6 }, name = 'deepwater' }, + { position = { x = 16, y = 7 }, name = 'water' }, + { position = { x = 16, y = 8 }, name = 'water' }, + { position = { x = 16, y = 9 }, name = 'water' }, + { position = { x = 16, y = 10 }, name = 'water' }, + { position = { x = 16, y = 11 }, name = 'water' }, + { position = { x = 16, y = 12 }, name = 'water' }, + { position = { x = 16, y = 13 }, name = 'water' }, + { position = { x = 16, y = 14 }, name = 'dirt-4' }, + { position = { x = 16, y = 15 }, name = 'dirt-4' }, + { position = { x = 16, y = 16 }, name = 'dirt-5' }, + { position = { x = 16, y = 17 }, name = 'water' }, + { position = { x = 16, y = 18 }, name = 'deepwater' }, + { position = { x = 16, y = 19 }, name = 'deepwater' }, + { position = { x = 16, y = 20 }, name = 'deepwater' }, + { position = { x = 16, y = 21 }, name = 'water' }, + { position = { x = 16, y = 22 }, name = 'water' }, + { position = { x = 16, y = 23 }, name = 'water' }, + { position = { x = 16, y = 24 }, name = 'water' }, + { position = { x = 16, y = 25 }, name = 'water' }, + { position = { x = 16, y = 26 }, name = 'water' }, + { position = { x = 16, y = 27 }, name = 'water' }, + { position = { x = 16, y = 28 }, name = 'dirt-5' }, + { position = { x = 16, y = 29 }, name = 'dirt-5' }, + { position = { x = 16, y = 30 }, name = 'grass-2' }, + { position = { x = 16, y = 31 }, name = 'deepwater' }, + { position = { x = 17, y = 0 }, name = 'dirt-5' }, + { position = { x = 17, y = 1 }, name = 'dirt-5' }, + { position = { x = 17, y = 2 }, name = 'dirt-5' }, + { position = { x = 17, y = 3 }, name = 'dirt-5' }, + { position = { x = 17, y = 4 }, name = 'dirt-5' }, + { position = { x = 17, y = 5 }, name = 'water' }, + { position = { x = 17, y = 6 }, name = 'deepwater' }, + { position = { x = 17, y = 7 }, name = 'deepwater' }, + { position = { x = 17, y = 8 }, name = 'water' }, + { position = { x = 17, y = 9 }, name = 'water' }, + { position = { x = 17, y = 10 }, name = 'water' }, + { position = { x = 17, y = 11 }, name = 'water' }, + { position = { x = 17, y = 12 }, name = 'water' }, + { position = { x = 17, y = 13 }, name = 'water' }, + { position = { x = 17, y = 14 }, name = 'dirt-5' }, + { position = { x = 17, y = 15 }, name = 'water' }, + { position = { x = 17, y = 16 }, name = 'water' }, + { position = { x = 17, y = 17 }, name = 'dirt-5' }, + { position = { x = 17, y = 18 }, name = 'water' }, + { position = { x = 17, y = 19 }, name = 'water' }, + { position = { x = 17, y = 20 }, name = 'deepwater' }, + { position = { x = 17, y = 21 }, name = 'deepwater' }, + { position = { x = 17, y = 22 }, name = 'water' }, + { position = { x = 17, y = 23 }, name = 'water' }, + { position = { x = 17, y = 24 }, name = 'water' }, + { position = { x = 17, y = 25 }, name = 'water' }, + { position = { x = 17, y = 26 }, name = 'water' }, + { position = { x = 17, y = 27 }, name = 'water' }, + { position = { x = 17, y = 28 }, name = 'dirt-5' }, + { position = { x = 17, y = 29 }, name = 'dirt-5' }, + { position = { x = 17, y = 30 }, name = 'dirt-5' }, + { position = { x = 17, y = 31 }, name = 'dirt-5' }, + { position = { x = 18, y = 0 }, name = 'water' }, + { position = { x = 18, y = 1 }, name = 'water' }, + { position = { x = 18, y = 2 }, name = 'water' }, + { position = { x = 18, y = 3 }, name = 'water' }, + { position = { x = 18, y = 4 }, name = 'water' }, + { position = { x = 18, y = 5 }, name = 'dirt-5' }, + { position = { x = 18, y = 6 }, name = 'water' }, + { position = { x = 18, y = 7 }, name = 'deepwater' }, + { position = { x = 18, y = 8 }, name = 'deepwater' }, + { position = { x = 18, y = 9 }, name = 'water' }, + { position = { x = 18, y = 10 }, name = 'water' }, + { position = { x = 18, y = 11 }, name = 'water' }, + { position = { x = 18, y = 12 }, name = 'dirt-5' }, + { position = { x = 18, y = 13 }, name = 'dirt-5' }, + { position = { x = 18, y = 14 }, name = 'water' }, + { position = { x = 18, y = 15 }, name = 'water' }, + { position = { x = 18, y = 16 }, name = 'water' }, + { position = { x = 18, y = 17 }, name = 'water' }, + { position = { x = 18, y = 18 }, name = 'dirt-5' }, + { position = { x = 18, y = 19 }, name = 'dirt-5' }, + { position = { x = 18, y = 20 }, name = 'water' }, + { position = { x = 18, y = 21 }, name = 'deepwater' }, + { position = { x = 18, y = 22 }, name = 'deepwater' }, + { position = { x = 18, y = 23 }, name = 'deepwater' }, + { position = { x = 18, y = 24 }, name = 'water' }, + { position = { x = 18, y = 25 }, name = 'water' }, + { position = { x = 18, y = 26 }, name = 'water' }, + { position = { x = 18, y = 27 }, name = 'dirt-5' }, + { position = { x = 18, y = 28 }, name = 'water' }, + { position = { x = 18, y = 29 }, name = 'water' }, + { position = { x = 18, y = 30 }, name = 'water' }, + { position = { x = 18, y = 31 }, name = 'water' }, + { position = { x = 19, y = 0 }, name = 'water' }, + { position = { x = 19, y = 1 }, name = 'water' }, + { position = { x = 19, y = 2 }, name = 'water' }, + { position = { x = 19, y = 3 }, name = 'water' }, + { position = { x = 19, y = 4 }, name = 'water' }, + { position = { x = 19, y = 5 }, name = 'water' }, + { position = { x = 19, y = 6 }, name = 'dirt-5' }, + { position = { x = 19, y = 7 }, name = 'water' }, + { position = { x = 19, y = 8 }, name = 'deepwater' }, + { position = { x = 19, y = 9 }, name = 'deepwater' }, + { position = { x = 19, y = 10 }, name = 'water' }, + { position = { x = 19, y = 11 }, name = 'dirt-5' }, + { position = { x = 19, y = 12 }, name = 'water' }, + { position = { x = 19, y = 13 }, name = 'water' }, + { position = { x = 19, y = 14 }, name = 'water' }, + { position = { x = 19, y = 15 }, name = 'water' }, + { position = { x = 19, y = 16 }, name = 'water' }, + { position = { x = 19, y = 17 }, name = 'water' }, + { position = { x = 19, y = 18 }, name = 'water' }, + { position = { x = 19, y = 19 }, name = 'water' }, + { position = { x = 19, y = 20 }, name = 'dirt-5' }, + { position = { x = 19, y = 21 }, name = 'dirt-5' }, + { position = { x = 19, y = 22 }, name = 'water' }, + { position = { x = 19, y = 23 }, name = 'deepwater' }, + { position = { x = 19, y = 24 }, name = 'deepwater' }, + { position = { x = 19, y = 25 }, name = 'dirt-5' }, + { position = { x = 19, y = 26 }, name = 'dirt-5' }, + { position = { x = 19, y = 27 }, name = 'water' }, + { position = { x = 19, y = 28 }, name = 'water' }, + { position = { x = 19, y = 29 }, name = 'water' }, + { position = { x = 19, y = 30 }, name = 'water' }, + { position = { x = 19, y = 31 }, name = 'water' }, + { position = { x = 20, y = 0 }, name = 'water' }, + { position = { x = 20, y = 1 }, name = 'water' }, + { position = { x = 20, y = 2 }, name = 'water' }, + { position = { x = 20, y = 3 }, name = 'water' }, + { position = { x = 20, y = 4 }, name = 'water' }, + { position = { x = 20, y = 5 }, name = 'water' }, + { position = { x = 20, y = 6 }, name = 'dirt-5' }, + { position = { x = 20, y = 7 }, name = 'dirt-5' }, + { position = { x = 20, y = 8 }, name = 'water' }, + { position = { x = 20, y = 9 }, name = 'water' }, + { position = { x = 20, y = 10 }, name = 'dirt-5' }, + { position = { x = 20, y = 11 }, name = 'water' }, + { position = { x = 20, y = 12 }, name = 'water' }, + { position = { x = 20, y = 13 }, name = 'water' }, + { position = { x = 20, y = 14 }, name = 'water' }, + { position = { x = 20, y = 15 }, name = 'water' }, + { position = { x = 20, y = 16 }, name = 'water' }, + { position = { x = 20, y = 17 }, name = 'water' }, + { position = { x = 20, y = 18 }, name = 'water' }, + { position = { x = 20, y = 19 }, name = 'water' }, + { position = { x = 20, y = 20 }, name = 'water' }, + { position = { x = 20, y = 21 }, name = 'water' }, + { position = { x = 20, y = 22 }, name = 'dirt-5' }, + { position = { x = 20, y = 23 }, name = 'water' }, + { position = { x = 20, y = 24 }, name = 'dirt-5' }, + { position = { x = 20, y = 25 }, name = 'water' }, + { position = { x = 20, y = 26 }, name = 'water' }, + { position = { x = 20, y = 27 }, name = 'water' }, + { position = { x = 20, y = 28 }, name = 'water' }, + { position = { x = 20, y = 29 }, name = 'water' }, + { position = { x = 20, y = 30 }, name = 'water' }, + { position = { x = 20, y = 31 }, name = 'water' }, + { position = { x = 21, y = 0 }, name = 'water' }, + { position = { x = 21, y = 1 }, name = 'water' }, + { position = { x = 21, y = 2 }, name = 'water' }, + { position = { x = 21, y = 3 }, name = 'water' }, + { position = { x = 21, y = 4 }, name = 'water' }, + { position = { x = 21, y = 5 }, name = 'water' }, + { position = { x = 21, y = 6 }, name = 'water' }, + { position = { x = 21, y = 7 }, name = 'water' }, + { position = { x = 21, y = 8 }, name = 'dirt-5' }, + { position = { x = 21, y = 9 }, name = 'dirt-5' }, + { position = { x = 21, y = 10 }, name = 'dirt-5' }, + { position = { x = 21, y = 11 }, name = 'deepwater' }, + { position = { x = 21, y = 12 }, name = 'water' }, + { position = { x = 21, y = 13 }, name = 'water' }, + { position = { x = 21, y = 14 }, name = 'water' }, + { position = { x = 21, y = 15 }, name = 'water' }, + { position = { x = 21, y = 16 }, name = 'water' }, + { position = { x = 21, y = 17 }, name = 'water' }, + { position = { x = 21, y = 18 }, name = 'water' }, + { position = { x = 21, y = 19 }, name = 'water' }, + { position = { x = 21, y = 20 }, name = 'water' }, + { position = { x = 21, y = 21 }, name = 'water' }, + { position = { x = 21, y = 22 }, name = 'dirt-5' }, + { position = { x = 21, y = 23 }, name = 'dirt-5' }, + { position = { x = 21, y = 24 }, name = 'water' }, + { position = { x = 21, y = 25 }, name = 'water' }, + { position = { x = 21, y = 26 }, name = 'water' }, + { position = { x = 21, y = 27 }, name = 'water' }, + { position = { x = 21, y = 28 }, name = 'water' }, + { position = { x = 21, y = 29 }, name = 'water' }, + { position = { x = 21, y = 30 }, name = 'water' }, + { position = { x = 21, y = 31 }, name = 'water' }, + { position = { x = 22, y = 0 }, name = 'water' }, + { position = { x = 22, y = 1 }, name = 'water' }, + { position = { x = 22, y = 2 }, name = 'water' }, + { position = { x = 22, y = 3 }, name = 'water' }, + { position = { x = 22, y = 4 }, name = 'water' }, + { position = { x = 22, y = 5 }, name = 'water' }, + { position = { x = 22, y = 6 }, name = 'water' }, + { position = { x = 22, y = 7 }, name = 'water' }, + { position = { x = 22, y = 8 }, name = 'water' }, + { position = { x = 22, y = 9 }, name = 'dirt-5' }, + { position = { x = 22, y = 10 }, name = 'water' }, + { position = { x = 22, y = 11 }, name = 'deepwater' }, + { position = { x = 22, y = 12 }, name = 'water' }, + { position = { x = 22, y = 13 }, name = 'water' }, + { position = { x = 22, y = 14 }, name = 'water' }, + { position = { x = 22, y = 15 }, name = 'water' }, + { position = { x = 22, y = 16 }, name = 'water' }, + { position = { x = 22, y = 17 }, name = 'water' }, + { position = { x = 22, y = 18 }, name = 'water' }, + { position = { x = 22, y = 19 }, name = 'water' }, + { position = { x = 22, y = 20 }, name = 'water' }, + { position = { x = 22, y = 21 }, name = 'dirt-5' }, + { position = { x = 22, y = 22 }, name = 'water' }, + { position = { x = 22, y = 23 }, name = 'water' }, + { position = { x = 22, y = 24 }, name = 'water' }, + { position = { x = 22, y = 25 }, name = 'water' }, + { position = { x = 22, y = 26 }, name = 'water' }, + { position = { x = 22, y = 27 }, name = 'water' }, + { position = { x = 22, y = 28 }, name = 'water' }, + { position = { x = 22, y = 29 }, name = 'water' }, + { position = { x = 22, y = 30 }, name = 'water' }, + { position = { x = 22, y = 31 }, name = 'water' }, + { position = { x = 23, y = 0 }, name = 'water' }, + { position = { x = 23, y = 1 }, name = 'water' }, + { position = { x = 23, y = 2 }, name = 'water' }, + { position = { x = 23, y = 3 }, name = 'water' }, + { position = { x = 23, y = 4 }, name = 'water' }, + { position = { x = 23, y = 5 }, name = 'water' }, + { position = { x = 23, y = 6 }, name = 'water' }, + { position = { x = 23, y = 7 }, name = 'water' }, + { position = { x = 23, y = 8 }, name = 'water' }, + { position = { x = 23, y = 9 }, name = 'dirt-5' }, + { position = { x = 23, y = 10 }, name = 'water' }, + { position = { x = 23, y = 11 }, name = 'deepwater' }, + { position = { x = 23, y = 12 }, name = 'deepwater' }, + { position = { x = 23, y = 13 }, name = 'water' }, + { position = { x = 23, y = 14 }, name = 'water' }, + { position = { x = 23, y = 15 }, name = 'water' }, + { position = { x = 23, y = 16 }, name = 'water' }, + { position = { x = 23, y = 17 }, name = 'water' }, + { position = { x = 23, y = 18 }, name = 'water' }, + { position = { x = 23, y = 19 }, name = 'water' }, + { position = { x = 23, y = 20 }, name = 'dirt-5' }, + { position = { x = 23, y = 21 }, name = 'dirt-5' }, + { position = { x = 23, y = 22 }, name = 'water' }, + { position = { x = 23, y = 23 }, name = 'water' }, + { position = { x = 23, y = 24 }, name = 'water' }, + { position = { x = 23, y = 25 }, name = 'water' }, + { position = { x = 23, y = 26 }, name = 'water' }, + { position = { x = 23, y = 27 }, name = 'water' }, + { position = { x = 23, y = 28 }, name = 'water' }, + { position = { x = 23, y = 29 }, name = 'water' }, + { position = { x = 23, y = 30 }, name = 'water' }, + { position = { x = 23, y = 31 }, name = 'water' }, + { position = { x = 24, y = 0 }, name = 'water' }, + { position = { x = 24, y = 1 }, name = 'water' }, + { position = { x = 24, y = 2 }, name = 'water' }, + { position = { x = 24, y = 3 }, name = 'water' }, + { position = { x = 24, y = 4 }, name = 'water' }, + { position = { x = 24, y = 5 }, name = 'water' }, + { position = { x = 24, y = 6 }, name = 'water' }, + { position = { x = 24, y = 7 }, name = 'water' }, + { position = { x = 24, y = 8 }, name = 'water' }, + { position = { x = 24, y = 9 }, name = 'water' }, + { position = { x = 24, y = 10 }, name = 'dirt-5' }, + { position = { x = 24, y = 11 }, name = 'water' }, + { position = { x = 24, y = 12 }, name = 'deepwater' }, + { position = { x = 24, y = 13 }, name = 'water' }, + { position = { x = 24, y = 14 }, name = 'water' }, + { position = { x = 24, y = 15 }, name = 'water' }, + { position = { x = 24, y = 16 }, name = 'water' }, + { position = { x = 24, y = 17 }, name = 'water' }, + { position = { x = 24, y = 18 }, name = 'water' }, + { position = { x = 24, y = 19 }, name = 'dirt-5' }, + { position = { x = 24, y = 20 }, name = 'dirt-5' }, + { position = { x = 24, y = 21 }, name = 'water' }, + { position = { x = 24, y = 22 }, name = 'water' }, + { position = { x = 24, y = 23 }, name = 'water' }, + { position = { x = 24, y = 24 }, name = 'water' }, + { position = { x = 24, y = 25 }, name = 'water' }, + { position = { x = 24, y = 26 }, name = 'water' }, + { position = { x = 24, y = 27 }, name = 'water' }, + { position = { x = 24, y = 28 }, name = 'water' }, + { position = { x = 24, y = 29 }, name = 'water' }, + { position = { x = 24, y = 30 }, name = 'water' }, + { position = { x = 24, y = 31 }, name = 'water' }, + { position = { x = 25, y = 0 }, name = 'water' }, + { position = { x = 25, y = 1 }, name = 'water' }, + { position = { x = 25, y = 2 }, name = 'water' }, + { position = { x = 25, y = 3 }, name = 'water' }, + { position = { x = 25, y = 4 }, name = 'water' }, + { position = { x = 25, y = 5 }, name = 'water' }, + { position = { x = 25, y = 6 }, name = 'water' }, + { position = { x = 25, y = 7 }, name = 'water' }, + { position = { x = 25, y = 8 }, name = 'water' }, + { position = { x = 25, y = 9 }, name = 'water' }, + { position = { x = 25, y = 10 }, name = 'water' }, + { position = { x = 25, y = 11 }, name = 'dirt-5' }, + { position = { x = 25, y = 12 }, name = 'water' }, + { position = { x = 25, y = 13 }, name = 'deepwater' }, + { position = { x = 25, y = 14 }, name = 'water' }, + { position = { x = 25, y = 15 }, name = 'water' }, + { position = { x = 25, y = 16 }, name = 'water' }, + { position = { x = 25, y = 17 }, name = 'water' }, + { position = { x = 25, y = 18 }, name = 'dirt-5' }, + { position = { x = 25, y = 19 }, name = 'water' }, + { position = { x = 25, y = 20 }, name = 'water' }, + { position = { x = 25, y = 21 }, name = 'water' }, + { position = { x = 25, y = 22 }, name = 'water' }, + { position = { x = 25, y = 23 }, name = 'water' }, + { position = { x = 25, y = 24 }, name = 'water' }, + { position = { x = 25, y = 25 }, name = 'water' }, + { position = { x = 25, y = 26 }, name = 'water' }, + { position = { x = 25, y = 27 }, name = 'water' }, + { position = { x = 25, y = 28 }, name = 'water' }, + { position = { x = 25, y = 29 }, name = 'water' }, + { position = { x = 25, y = 30 }, name = 'water' }, + { position = { x = 25, y = 31 }, name = 'water' }, + { position = { x = 26, y = 0 }, name = 'water' }, + { position = { x = 26, y = 1 }, name = 'water' }, + { position = { x = 26, y = 2 }, name = 'water' }, + { position = { x = 26, y = 3 }, name = 'water' }, + { position = { x = 26, y = 4 }, name = 'water' }, + { position = { x = 26, y = 5 }, name = 'water' }, + { position = { x = 26, y = 6 }, name = 'water' }, + { position = { x = 26, y = 7 }, name = 'water' }, + { position = { x = 26, y = 8 }, name = 'water' }, + { position = { x = 26, y = 9 }, name = 'water' }, + { position = { x = 26, y = 10 }, name = 'water' }, + { position = { x = 26, y = 11 }, name = 'dirt-5' }, + { position = { x = 26, y = 12 }, name = 'water' }, + { position = { x = 26, y = 13 }, name = 'deepwater' }, + { position = { x = 26, y = 14 }, name = 'deepwater' }, + { position = { x = 26, y = 15 }, name = 'water' }, + { position = { x = 26, y = 16 }, name = 'water' }, + { position = { x = 26, y = 17 }, name = 'dirt-5' }, + { position = { x = 26, y = 18 }, name = 'deepwater' }, + { position = { x = 26, y = 19 }, name = 'water' }, + { position = { x = 26, y = 20 }, name = 'water' }, + { position = { x = 26, y = 21 }, name = 'water' }, + { position = { x = 26, y = 22 }, name = 'water' }, + { position = { x = 26, y = 23 }, name = 'water' }, + { position = { x = 26, y = 24 }, name = 'water' }, + { position = { x = 26, y = 25 }, name = 'water' }, + { position = { x = 26, y = 26 }, name = 'water' }, + { position = { x = 26, y = 27 }, name = 'water' }, + { position = { x = 26, y = 28 }, name = 'water' }, + { position = { x = 26, y = 29 }, name = 'water' }, + { position = { x = 26, y = 30 }, name = 'water' }, + { position = { x = 26, y = 31 }, name = 'water' }, + { position = { x = 27, y = 0 }, name = 'water' }, + { position = { x = 27, y = 1 }, name = 'water' }, + { position = { x = 27, y = 2 }, name = 'water' }, + { position = { x = 27, y = 3 }, name = 'water' }, + { position = { x = 27, y = 4 }, name = 'water' }, + { position = { x = 27, y = 5 }, name = 'water' }, + { position = { x = 27, y = 6 }, name = 'water' }, + { position = { x = 27, y = 7 }, name = 'water' }, + { position = { x = 27, y = 8 }, name = 'water' }, + { position = { x = 27, y = 9 }, name = 'water' }, + { position = { x = 27, y = 10 }, name = 'water' }, + { position = { x = 27, y = 11 }, name = 'dirt-5' }, + { position = { x = 27, y = 12 }, name = 'dirt-5' }, + { position = { x = 27, y = 13 }, name = 'water' }, + { position = { x = 27, y = 14 }, name = 'water' }, + { position = { x = 27, y = 15 }, name = 'deepwater' }, + { position = { x = 27, y = 16 }, name = 'dirt-5' }, + { position = { x = 27, y = 17 }, name = 'deepwater' }, + { position = { x = 27, y = 18 }, name = 'deepwater' }, + { position = { x = 27, y = 19 }, name = 'water' }, + { position = { x = 27, y = 20 }, name = 'water' }, + { position = { x = 27, y = 21 }, name = 'water' }, + { position = { x = 27, y = 22 }, name = 'water' }, + { position = { x = 27, y = 23 }, name = 'water' }, + { position = { x = 27, y = 24 }, name = 'water' }, + { position = { x = 27, y = 25 }, name = 'water' }, + { position = { x = 27, y = 26 }, name = 'water' }, + { position = { x = 27, y = 27 }, name = 'water' }, + { position = { x = 27, y = 28 }, name = 'water' }, + { position = { x = 27, y = 29 }, name = 'water' }, + { position = { x = 27, y = 30 }, name = 'water' }, + { position = { x = 27, y = 31 }, name = 'water' }, + { position = { x = 28, y = 0 }, name = 'water' }, + { position = { x = 28, y = 1 }, name = 'water' }, + { position = { x = 28, y = 2 }, name = 'water' }, + { position = { x = 28, y = 3 }, name = 'water' }, + { position = { x = 28, y = 4 }, name = 'water' }, + { position = { x = 28, y = 5 }, name = 'water' }, + { position = { x = 28, y = 6 }, name = 'water' }, + { position = { x = 28, y = 7 }, name = 'water' }, + { position = { x = 28, y = 8 }, name = 'water' }, + { position = { x = 28, y = 9 }, name = 'water' }, + { position = { x = 28, y = 10 }, name = 'water' }, + { position = { x = 28, y = 11 }, name = 'water' }, + { position = { x = 28, y = 12 }, name = 'dirt-5' }, + { position = { x = 28, y = 13 }, name = 'dirt-5' }, + { position = { x = 28, y = 14 }, name = 'dirt-5' }, + { position = { x = 28, y = 15 }, name = 'dirt-5' }, + { position = { x = 28, y = 16 }, name = 'water' }, + { position = { x = 28, y = 17 }, name = 'deepwater' }, + { position = { x = 28, y = 18 }, name = 'water' }, + { position = { x = 28, y = 19 }, name = 'water' }, + { position = { x = 28, y = 20 }, name = 'water' }, + { position = { x = 28, y = 21 }, name = 'water' }, + { position = { x = 28, y = 22 }, name = 'water' }, + { position = { x = 28, y = 23 }, name = 'water' }, + { position = { x = 28, y = 24 }, name = 'water' }, + { position = { x = 28, y = 25 }, name = 'water' }, + { position = { x = 28, y = 26 }, name = 'water' }, + { position = { x = 28, y = 27 }, name = 'water' }, + { position = { x = 28, y = 28 }, name = 'water' }, + { position = { x = 28, y = 29 }, name = 'water' }, + { position = { x = 28, y = 30 }, name = 'water' }, + { position = { x = 28, y = 31 }, name = 'water' }, + { position = { x = 29, y = 0 }, name = 'water' }, + { position = { x = 29, y = 1 }, name = 'water' }, + { position = { x = 29, y = 2 }, name = 'water' }, + { position = { x = 29, y = 3 }, name = 'water' }, + { position = { x = 29, y = 4 }, name = 'water' }, + { position = { x = 29, y = 5 }, name = 'water' }, + { position = { x = 29, y = 6 }, name = 'water' }, + { position = { x = 29, y = 7 }, name = 'water' }, + { position = { x = 29, y = 8 }, name = 'water' }, + { position = { x = 29, y = 9 }, name = 'water' }, + { position = { x = 29, y = 10 }, name = 'water' }, + { position = { x = 29, y = 11 }, name = 'water' }, + { position = { x = 29, y = 12 }, name = 'dirt-5' }, + { position = { x = 29, y = 13 }, name = 'dirt-5' }, + { position = { x = 29, y = 14 }, name = 'dirt-5' }, + { position = { x = 29, y = 15 }, name = 'dirt-5' }, + { position = { x = 29, y = 16 }, name = 'water' }, + { position = { x = 29, y = 17 }, name = 'deepwater' }, + { position = { x = 29, y = 18 }, name = 'water' }, + { position = { x = 29, y = 19 }, name = 'water' }, + { position = { x = 29, y = 20 }, name = 'water' }, + { position = { x = 29, y = 21 }, name = 'water' }, + { position = { x = 29, y = 22 }, name = 'water' }, + { position = { x = 29, y = 23 }, name = 'water' }, + { position = { x = 29, y = 24 }, name = 'water' }, + { position = { x = 29, y = 25 }, name = 'water' }, + { position = { x = 29, y = 26 }, name = 'water' }, + { position = { x = 29, y = 27 }, name = 'water' }, + { position = { x = 29, y = 28 }, name = 'water' }, + { position = { x = 29, y = 29 }, name = 'water' }, + { position = { x = 29, y = 30 }, name = 'water' }, + { position = { x = 29, y = 31 }, name = 'water' }, + { position = { x = 30, y = 0 }, name = 'water' }, + { position = { x = 30, y = 1 }, name = 'water' }, + { position = { x = 30, y = 2 }, name = 'water' }, + { position = { x = 30, y = 3 }, name = 'water' }, + { position = { x = 30, y = 4 }, name = 'water' }, + { position = { x = 30, y = 5 }, name = 'water' }, + { position = { x = 30, y = 6 }, name = 'water' }, + { position = { x = 30, y = 7 }, name = 'water' }, + { position = { x = 30, y = 8 }, name = 'water' }, + { position = { x = 30, y = 9 }, name = 'water' }, + { position = { x = 30, y = 10 }, name = 'water' }, + { position = { x = 30, y = 11 }, name = 'water' }, + { position = { x = 30, y = 12 }, name = 'dirt-5' }, + { position = { x = 30, y = 13 }, name = 'grass-2' }, + { position = { x = 30, y = 14 }, name = 'grass-2' }, + { position = { x = 30, y = 15 }, name = 'dirt-5' }, + { position = { x = 30, y = 16 }, name = 'water' }, + { position = { x = 30, y = 17 }, name = 'deepwater' }, + { position = { x = 30, y = 18 }, name = 'water' }, + { position = { x = 30, y = 19 }, name = 'water' }, + { position = { x = 30, y = 20 }, name = 'water' }, + { position = { x = 30, y = 21 }, name = 'water' }, + { position = { x = 30, y = 22 }, name = 'water' }, + { position = { x = 30, y = 23 }, name = 'water' }, + { position = { x = 30, y = 24 }, name = 'water' }, + { position = { x = 30, y = 25 }, name = 'water' }, + { position = { x = 30, y = 26 }, name = 'water' }, + { position = { x = 30, y = 27 }, name = 'water' }, + { position = { x = 30, y = 28 }, name = 'water' }, + { position = { x = 30, y = 29 }, name = 'water' }, + { position = { x = 30, y = 30 }, name = 'water' }, + { position = { x = 30, y = 31 }, name = 'water' }, + { position = { x = 31, y = 0 }, name = 'water' }, + { position = { x = 31, y = 1 }, name = 'water' }, + { position = { x = 31, y = 2 }, name = 'water' }, + { position = { x = 31, y = 3 }, name = 'water' }, + { position = { x = 31, y = 4 }, name = 'water' }, + { position = { x = 31, y = 5 }, name = 'water' }, + { position = { x = 31, y = 6 }, name = 'water' }, + { position = { x = 31, y = 7 }, name = 'water' }, + { position = { x = 31, y = 8 }, name = 'water' }, + { position = { x = 31, y = 9 }, name = 'water' }, + { position = { x = 31, y = 10 }, name = 'water' }, + { position = { x = 31, y = 11 }, name = 'water' }, + { position = { x = 31, y = 12 }, name = 'dirt-5' }, + { position = { x = 31, y = 13 }, name = 'deepwater' }, + { position = { x = 31, y = 14 }, name = 'deepwater' }, + { position = { x = 31, y = 15 }, name = 'dirt-5' }, + { position = { x = 31, y = 16 }, name = 'water' }, + { position = { x = 31, y = 17 }, name = 'deepwater' }, + { position = { x = 31, y = 18 }, name = 'water' }, + { position = { x = 31, y = 19 }, name = 'water' }, + { position = { x = 31, y = 20 }, name = 'water' }, + { position = { x = 31, y = 21 }, name = 'water' }, + { position = { x = 31, y = 22 }, name = 'water' }, + { position = { x = 31, y = 23 }, name = 'water' }, + { position = { x = 31, y = 24 }, name = 'water' }, + { position = { x = 31, y = 25 }, name = 'water' }, + { position = { x = 31, y = 26 }, name = 'water' }, + { position = { x = 31, y = 27 }, name = 'water' }, + { position = { x = 31, y = 28 }, name = 'water' }, + { position = { x = 31, y = 29 }, name = 'water' }, + { position = { x = 31, y = 30 }, name = 'water' }, + { position = { x = 31, y = 31 }, name = 'water' } } }, forgotten_place = { entities = { - {position = {x = 4.5, y = 1.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 5.5, y = 1.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 5.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 1.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 13.5, y = 1.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 13.5, y = 1.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 12.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 1.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 15.5, y = 1.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 15.5, y = 1.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 1.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 1.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 3.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 3.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11, y = 5.5}, name = 'spitter-spawner', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 15.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 15.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 15.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 15.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 15.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 15.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 14.5, y = 2.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 16.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 16.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 18.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 18.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 18.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 18.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 18.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 18.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 18.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 18.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 19.5, y = 3.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 1.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 5.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 6.5, y = 4.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 7.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.1796875, y = 6.93359375}, name = 'small-scorchmark', direction = 0, force = 'neutral'}, - {position = {x = 17.5, y = 4.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 18.5, y = 4.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 18.5, y = 4.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 28.1796875, y = 6.16796875}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 26.83203125, y = 6.09765625}, name = 'tree-02-red', direction = 0, force = 'neutral'}, - {position = {x = 0.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.3359375, y = 7.41015625}, name = 'sand-rock-big', direction = 0, force = 'neutral'}, - {position = {x = 5.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.90234375, y = 6.7890625}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 24.453125, y = 7.51171875}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 27.5, y = 8.5}, name = 'big-worm-turret', direction = 6, force = 'enemy'}, - {position = {x = 31.421875, y = 7.859375}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 30.59375, y = 7.99609375}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 0.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4, y = 10.5}, name = 'biter-spawner', direction = 0, force = 'enemy'}, - {position = {x = 8, y = 8.5}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 8, y = 10}, name = 'small-worm-turret', direction = 2, force = 'enemy'}, - {position = {x = 10, y = 9}, name = 'small-worm-turret', direction = 4, force = 'enemy'}, - {position = {x = 13, y = 9}, name = 'small-worm-turret', direction = 4, force = 'enemy'}, - {position = {x = 15, y = 9}, name = 'small-worm-turret', direction = 4, force = 'enemy'}, - {position = {x = 17, y = 10}, name = 'small-worm-turret', direction = 4, force = 'enemy'}, - {position = {x = 19.5, y = 9.5}, name = 'tree-06-stump', direction = 0, force = 'neutral'}, - {position = {x = 19.5, y = 9.5}, name = 'tree-06-stump', direction = 0, force = 'neutral'}, - {position = {x = 29.5234375, y = 9.859375}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 29.6640625, y = 8.89453125}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 17, y = 12}, name = 'small-worm-turret', direction = 4, force = 'enemy'}, - {position = {x = 20.5, y = 10.5}, name = 'tree-06-stump', direction = 0, force = 'neutral'}, - {position = {x = 22.5, y = 10.5}, name = 'tree-06-stump', direction = 0, force = 'neutral'}, - {position = {x = 26.59375, y = 10.515625}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 27.6953125, y = 11.41015625}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 28.45703125, y = 12.34375}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 28.62890625, y = 11.03125}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 31.28515625, y = 11.03125}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 1, y = 13.5}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 13.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 0.5, y = 13.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 1.5, y = 12.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 2.5, y = 13.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 4.5, y = 14.5}, name = 'big-remnants', direction = 0, force = 'neutral'}, - {position = {x = 17.88671875, y = 13.015625}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 19, y = 13}, name = 'small-worm-turret', direction = 6, force = 'enemy'}, - {position = {x = 21.8046875, y = 12.7265625}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 23.96875, y = 13.171875}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 26.28125, y = 13.72265625}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 24.90234375, y = 13}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 27.28125, y = 14.2421875}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 27.24609375, y = 13.4140625}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 31.421875, y = 12.6875}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 30.9375, y = 13.5859375}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 1.5, y = 15.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 0.5, y = 15.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 1.5, y = 14.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 0.5, y = 14.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 0.5, y = 14.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 14.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 15.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 15.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 3.5, y = 14.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 2.5, y = 14.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 2.5, y = 14.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 14.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 15.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 6, y = 16}, name = 'power-switch', direction = 0, force = 'enemy'}, - {position = {x = 19, y = 15}, name = 'small-worm-turret', direction = 6, force = 'enemy'}, - {position = {x = 25, y = 15.5}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 28.14453125, y = 14.44921875}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 30.3203125, y = 16.11328125}, name = 'small-scorchmark', direction = 0, force = 'neutral'}, - {position = {x = 29.765625, y = 14.55078125}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 1.5, y = 16.5}, name = 'coal', direction = 0, force = 'neutral'}, - {position = {x = 1.5, y = 17}, name = 'heat-exchanger', direction = 4, force = 'enemy'}, - {position = {x = 3.5, y = 17.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 16.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 6.1328125, y = 18.0546875}, name = 'small-scorchmark', direction = 0, force = 'neutral'}, - {position = {x = 4.5, y = 16.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 18.5}, name = 'big-ship-wreck-2', direction = 0, force = 'neutral'}, - {position = {x = 22, y = 18.5}, name = 'spitter-spawner', direction = 0, force = 'enemy'}, - {position = {x = 28, y = 18}, name = 'curved-rail-remnants', direction = 6, force = 'neutral'}, - {position = {x = 3.046875, y = 21.29296875}, name = 'small-scorchmark', direction = 0, force = 'neutral'}, - {position = {x = 1.5, y = 19.5}, name = 'electric-furnace', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 19.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 18.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 19.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 19.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 18.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 17.21875, y = 19.3515625}, name = 'dead-dry-hairy-tree', direction = 0, force = 'neutral'}, - {position = {x = 25.3125, y = 20.40625}, name = 'small-scorchmark', direction = 0, force = 'neutral'}, - {position = {x = 23.78125, y = 20.125}, name = 'small-scorchmark', direction = 0, force = 'neutral'}, - {position = {x = 1.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 20.5}, name = 'heat-pipe', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11, y = 21}, name = 'small-worm-turret', direction = 2, force = 'enemy'}, - {position = {x = 14.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.9921875, y = 21.79296875}, name = 'small-biter', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.90625, y = 24.3125}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 4.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 22.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 10.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 22.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 25.5, y = 22.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 25.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 5.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 7.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24, y = 25}, name = 'small-worm-turret', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 27.5, y = 24.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 26.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 27.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 24.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 28.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 28.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 28.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 28.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 28.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 29.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 29.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 29.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 29.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 28.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 25.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 30.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 27}, name = 'medium-worm-turret', direction = 6, force = 'enemy'}, - {position = {x = 31.5, y = 26.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 31.5, y = 26.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 31.5, y = 26.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 31.5, y = 26.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 31.5, y = 26.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 31.5, y = 26.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 31.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 28.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 1, y = 30}, name = 'small-worm-turret', direction = 2, force = 'enemy'}, - {position = {x = 0.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 29.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 2.5, y = 29.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 2.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 29.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 12.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 29.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 15.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 29.5}, name = 'wall-remnants', direction = 0, force = 'neutral'}, - {position = {x = 26.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.71875, y = 29.71875}, name = 'rock-big', direction = 0, force = 'neutral'}, - {position = {x = 28.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.71875, y = 30.5}, name = 'tree-02', direction = 0, force = 'neutral'}, - {position = {x = 20.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25, y = 31}, name = 'small-worm-turret', direction = 0, force = 'enemy'}, - {position = {x = 27, y = 31}, name = 'small-worm-turret', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'} + { position = { x = 4.5, y = 1.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 5.5, y = 1.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 5.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 1.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 13.5, y = 1.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 13.5, y = 1.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 12.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 1.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 15.5, y = 1.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 15.5, y = 1.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 1.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 1.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 3.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 3.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11, y = 5.5 }, name = 'spitter-spawner', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 15.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 15.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 15.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 15.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 15.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 15.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 14.5, y = 2.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 16.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 16.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 18.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 18.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 18.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 18.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 18.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 18.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 18.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 18.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 19.5, y = 3.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 1.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 5.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 6.5, y = 4.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 7.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.1796875, y = 6.93359375 }, name = 'small-scorchmark', direction = 0, force = 'neutral' }, + { position = { x = 17.5, y = 4.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 18.5, y = 4.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 18.5, y = 4.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 28.1796875, y = 6.16796875 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 26.83203125, y = 6.09765625 }, name = 'tree-02-red', direction = 0, force = 'neutral' }, + { position = { x = 0.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.3359375, y = 7.41015625 }, name = 'big-sand-rock', direction = 0, force = 'neutral' }, + { position = { x = 5.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.90234375, y = 6.7890625 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 24.453125, y = 7.51171875 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 27.5, y = 8.5 }, name = 'big-worm-turret', direction = 6, force = 'enemy' }, + { position = { x = 31.421875, y = 7.859375 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 30.59375, y = 7.99609375 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 0.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4, y = 10.5 }, name = 'biter-spawner', direction = 0, force = 'enemy' }, + { position = { x = 8, y = 8.5 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 8, y = 10 }, name = 'small-worm-turret', direction = 2, force = 'enemy' }, + { position = { x = 10, y = 9 }, name = 'small-worm-turret', direction = 4, force = 'enemy' }, + { position = { x = 13, y = 9 }, name = 'small-worm-turret', direction = 4, force = 'enemy' }, + { position = { x = 15, y = 9 }, name = 'small-worm-turret', direction = 4, force = 'enemy' }, + { position = { x = 17, y = 10 }, name = 'small-worm-turret', direction = 4, force = 'enemy' }, + { position = { x = 19.5, y = 9.5 }, name = 'tree-06-stump', direction = 0, force = 'neutral' }, + { position = { x = 19.5, y = 9.5 }, name = 'tree-06-stump', direction = 0, force = 'neutral' }, + { position = { x = 29.5234375, y = 9.859375 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 29.6640625, y = 8.89453125 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 17, y = 12 }, name = 'small-worm-turret', direction = 4, force = 'enemy' }, + { position = { x = 20.5, y = 10.5 }, name = 'tree-06-stump', direction = 0, force = 'neutral' }, + { position = { x = 22.5, y = 10.5 }, name = 'tree-06-stump', direction = 0, force = 'neutral' }, + { position = { x = 26.59375, y = 10.515625 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 27.6953125, y = 11.41015625 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 28.45703125, y = 12.34375 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 28.62890625, y = 11.03125 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 31.28515625, y = 11.03125 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 1, y = 13.5 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 13.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 0.5, y = 13.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 1.5, y = 12.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 2.5, y = 13.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 4.5, y = 14.5 }, name = 'big-remnants', direction = 0, force = 'neutral' }, + { position = { x = 17.88671875, y = 13.015625 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 19, y = 13 }, name = 'small-worm-turret', direction = 6, force = 'enemy' }, + { position = { x = 21.8046875, y = 12.7265625 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 23.96875, y = 13.171875 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 26.28125, y = 13.72265625 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 24.90234375, y = 13 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 27.28125, y = 14.2421875 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 27.24609375, y = 13.4140625 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 31.421875, y = 12.6875 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 30.9375, y = 13.5859375 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 1.5, y = 15.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 0.5, y = 15.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 1.5, y = 14.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 0.5, y = 14.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 0.5, y = 14.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 14.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 15.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 15.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 3.5, y = 14.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 2.5, y = 14.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 2.5, y = 14.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 14.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 15.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 6, y = 16 }, name = 'power-switch', direction = 0, force = 'enemy' }, + { position = { x = 19, y = 15 }, name = 'small-worm-turret', direction = 6, force = 'enemy' }, + { position = { x = 25, y = 15.5 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 28.14453125, y = 14.44921875 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 30.3203125, y = 16.11328125 }, name = 'small-scorchmark', direction = 0, force = 'neutral' }, + { position = { x = 29.765625, y = 14.55078125 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 1.5, y = 16.5 }, name = 'coal', direction = 0, force = 'neutral' }, + { position = { x = 1.5, y = 17 }, name = 'heat-exchanger', direction = 4, force = 'enemy' }, + { position = { x = 3.5, y = 17.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 16.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 6.1328125, y = 18.0546875 }, name = 'small-scorchmark', direction = 0, force = 'neutral' }, + { position = { x = 4.5, y = 16.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 18.5 }, name = 'big-ship-wreck-2', direction = 0, force = 'neutral' }, + { position = { x = 22, y = 18.5 }, name = 'spitter-spawner', direction = 0, force = 'enemy' }, + { position = { x = 28, y = 18 }, name = 'curved-rail-remnants', direction = 6, force = 'neutral' }, + { position = { x = 3.046875, y = 21.29296875 }, name = 'small-scorchmark', direction = 0, force = 'neutral' }, + { position = { x = 1.5, y = 19.5 }, name = 'electric-furnace', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 19.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 18.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 19.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 19.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 18.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 17.21875, y = 19.3515625 }, name = 'dead-dry-hairy-tree', direction = 0, force = 'neutral' }, + { position = { x = 25.3125, y = 20.40625 }, name = 'small-scorchmark', direction = 0, force = 'neutral' }, + { position = { x = 23.78125, y = 20.125 }, name = 'small-scorchmark', direction = 0, force = 'neutral' }, + { position = { x = 1.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 20.5 }, name = 'heat-pipe', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11, y = 21 }, name = 'small-worm-turret', direction = 2, force = 'enemy' }, + { position = { x = 14.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.9921875, y = 21.79296875 }, name = 'small-biter', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.90625, y = 24.3125 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 4.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 22.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 10.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 22.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 25.5, y = 22.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 25.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 5.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 7.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24, y = 25 }, name = 'small-worm-turret', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 27.5, y = 24.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 26.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 27.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 24.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 28.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 28.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 28.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 28.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 28.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 29.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 29.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 29.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 29.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 28.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 25.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 30.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 27 }, name = 'medium-worm-turret', direction = 6, force = 'enemy' }, + { position = { x = 31.5, y = 26.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 31.5, y = 26.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 31.5, y = 26.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 31.5, y = 26.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 31.5, y = 26.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 31.5, y = 26.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 31.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 28.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 1, y = 30 }, name = 'small-worm-turret', direction = 2, force = 'enemy' }, + { position = { x = 0.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 29.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 2.5, y = 29.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 2.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 29.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 12.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 29.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 15.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 29.5 }, name = 'wall-remnants', direction = 0, force = 'neutral' }, + { position = { x = 26.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.71875, y = 29.71875 }, name = 'big-rock', direction = 0, force = 'neutral' }, + { position = { x = 28.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.71875, y = 30.5 }, name = 'tree-02', direction = 0, force = 'neutral' }, + { position = { x = 20.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25, y = 31 }, name = 'small-worm-turret', direction = 0, force = 'enemy' }, + { position = { x = 27, y = 31 }, name = 'small-worm-turret', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' } }, tiles = { - {position = {x = 0, y = 0}, name = 'sand-2'}, - {position = {x = 0, y = 1}, name = 'sand-2'}, - {position = {x = 0, y = 2}, name = 'sand-2'}, - {position = {x = 0, y = 3}, name = 'sand-2'}, - {position = {x = 0, y = 4}, name = 'sand-2'}, - {position = {x = 0, y = 5}, name = 'sand-2'}, - {position = {x = 0, y = 6}, name = 'sand-2'}, - {position = {x = 0, y = 7}, name = 'sand-2'}, - {position = {x = 0, y = 8}, name = 'sand-2'}, - {position = {x = 0, y = 9}, name = 'sand-2'}, - {position = {x = 0, y = 10}, name = 'sand-2'}, - {position = {x = 0, y = 11}, name = 'sand-2'}, - {position = {x = 0, y = 12}, name = 'sand-2'}, - {position = {x = 0, y = 13}, name = 'sand-2'}, - {position = {x = 0, y = 14}, name = 'sand-2'}, - {position = {x = 0, y = 15}, name = 'sand-2'}, - {position = {x = 0, y = 16}, name = 'sand-2'}, - {position = {x = 0, y = 17}, name = 'sand-2'}, - {position = {x = 0, y = 18}, name = 'sand-2'}, - {position = {x = 0, y = 19}, name = 'sand-2'}, - {position = {x = 0, y = 20}, name = 'sand-2'}, - {position = {x = 0, y = 21}, name = 'sand-2'}, - {position = {x = 0, y = 22}, name = 'sand-2'}, - {position = {x = 0, y = 23}, name = 'sand-2'}, - {position = {x = 0, y = 24}, name = 'sand-2'}, - {position = {x = 0, y = 25}, name = 'sand-2'}, - {position = {x = 0, y = 26}, name = 'sand-2'}, - {position = {x = 0, y = 27}, name = 'sand-2'}, - {position = {x = 0, y = 28}, name = 'sand-2'}, - {position = {x = 0, y = 29}, name = 'sand-2'}, - {position = {x = 0, y = 30}, name = 'sand-2'}, - {position = {x = 0, y = 31}, name = 'sand-2'}, - {position = {x = 1, y = 0}, name = 'sand-2'}, - {position = {x = 1, y = 1}, name = 'sand-2'}, - {position = {x = 1, y = 2}, name = 'sand-2'}, - {position = {x = 1, y = 3}, name = 'sand-2'}, - {position = {x = 1, y = 4}, name = 'sand-2'}, - {position = {x = 1, y = 5}, name = 'sand-2'}, - {position = {x = 1, y = 6}, name = 'sand-2'}, - {position = {x = 1, y = 7}, name = 'sand-2'}, - {position = {x = 1, y = 8}, name = 'sand-2'}, - {position = {x = 1, y = 9}, name = 'sand-2'}, - {position = {x = 1, y = 10}, name = 'sand-2'}, - {position = {x = 1, y = 11}, name = 'sand-2'}, - {position = {x = 1, y = 12}, name = 'sand-2'}, - {position = {x = 1, y = 13}, name = 'sand-2'}, - {position = {x = 1, y = 14}, name = 'sand-2'}, - {position = {x = 1, y = 15}, name = 'sand-2'}, - {position = {x = 1, y = 16}, name = 'sand-2'}, - {position = {x = 1, y = 17}, name = 'sand-2'}, - {position = {x = 1, y = 18}, name = 'sand-2'}, - {position = {x = 1, y = 19}, name = 'sand-2'}, - {position = {x = 1, y = 20}, name = 'sand-2'}, - {position = {x = 1, y = 21}, name = 'sand-2'}, - {position = {x = 1, y = 22}, name = 'sand-2'}, - {position = {x = 1, y = 23}, name = 'sand-2'}, - {position = {x = 1, y = 24}, name = 'sand-2'}, - {position = {x = 1, y = 25}, name = 'sand-2'}, - {position = {x = 1, y = 26}, name = 'sand-2'}, - {position = {x = 1, y = 27}, name = 'sand-2'}, - {position = {x = 1, y = 28}, name = 'sand-2'}, - {position = {x = 1, y = 29}, name = 'sand-2'}, - {position = {x = 1, y = 30}, name = 'sand-2'}, - {position = {x = 1, y = 31}, name = 'sand-2'}, - {position = {x = 2, y = 0}, name = 'sand-2'}, - {position = {x = 2, y = 1}, name = 'sand-2'}, - {position = {x = 2, y = 2}, name = 'sand-2'}, - {position = {x = 2, y = 3}, name = 'sand-2'}, - {position = {x = 2, y = 4}, name = 'sand-2'}, - {position = {x = 2, y = 5}, name = 'sand-2'}, - {position = {x = 2, y = 6}, name = 'sand-2'}, - {position = {x = 2, y = 7}, name = 'sand-2'}, - {position = {x = 2, y = 8}, name = 'sand-2'}, - {position = {x = 2, y = 9}, name = 'sand-2'}, - {position = {x = 2, y = 10}, name = 'sand-2'}, - {position = {x = 2, y = 11}, name = 'sand-2'}, - {position = {x = 2, y = 12}, name = 'sand-2'}, - {position = {x = 2, y = 13}, name = 'sand-2'}, - {position = {x = 2, y = 14}, name = 'sand-2'}, - {position = {x = 2, y = 15}, name = 'sand-2'}, - {position = {x = 2, y = 16}, name = 'sand-2'}, - {position = {x = 2, y = 17}, name = 'sand-2'}, - {position = {x = 2, y = 18}, name = 'sand-2'}, - {position = {x = 2, y = 19}, name = 'sand-2'}, - {position = {x = 2, y = 20}, name = 'sand-2'}, - {position = {x = 2, y = 21}, name = 'sand-2'}, - {position = {x = 2, y = 22}, name = 'sand-2'}, - {position = {x = 2, y = 23}, name = 'sand-2'}, - {position = {x = 2, y = 24}, name = 'sand-2'}, - {position = {x = 2, y = 25}, name = 'sand-2'}, - {position = {x = 2, y = 26}, name = 'sand-2'}, - {position = {x = 2, y = 27}, name = 'sand-2'}, - {position = {x = 2, y = 28}, name = 'sand-2'}, - {position = {x = 2, y = 29}, name = 'sand-2'}, - {position = {x = 2, y = 30}, name = 'sand-2'}, - {position = {x = 2, y = 31}, name = 'sand-2'}, - {position = {x = 3, y = 0}, name = 'sand-2'}, - {position = {x = 3, y = 1}, name = 'sand-2'}, - {position = {x = 3, y = 2}, name = 'sand-2'}, - {position = {x = 3, y = 3}, name = 'sand-2'}, - {position = {x = 3, y = 4}, name = 'sand-2'}, - {position = {x = 3, y = 5}, name = 'sand-2'}, - {position = {x = 3, y = 6}, name = 'sand-2'}, - {position = {x = 3, y = 7}, name = 'sand-2'}, - {position = {x = 3, y = 8}, name = 'sand-2'}, - {position = {x = 3, y = 9}, name = 'sand-2'}, - {position = {x = 3, y = 10}, name = 'sand-2'}, - {position = {x = 3, y = 11}, name = 'sand-2'}, - {position = {x = 3, y = 12}, name = 'sand-2'}, - {position = {x = 3, y = 13}, name = 'sand-2'}, - {position = {x = 3, y = 14}, name = 'sand-2'}, - {position = {x = 3, y = 15}, name = 'sand-2'}, - {position = {x = 3, y = 16}, name = 'sand-2'}, - {position = {x = 3, y = 17}, name = 'sand-2'}, - {position = {x = 3, y = 18}, name = 'sand-2'}, - {position = {x = 3, y = 19}, name = 'sand-2'}, - {position = {x = 3, y = 20}, name = 'sand-2'}, - {position = {x = 3, y = 21}, name = 'sand-2'}, - {position = {x = 3, y = 22}, name = 'sand-2'}, - {position = {x = 3, y = 23}, name = 'sand-2'}, - {position = {x = 3, y = 24}, name = 'sand-2'}, - {position = {x = 3, y = 25}, name = 'sand-2'}, - {position = {x = 3, y = 26}, name = 'sand-2'}, - {position = {x = 3, y = 27}, name = 'sand-2'}, - {position = {x = 3, y = 28}, name = 'sand-2'}, - {position = {x = 3, y = 29}, name = 'sand-2'}, - {position = {x = 3, y = 30}, name = 'sand-2'}, - {position = {x = 3, y = 31}, name = 'sand-2'}, - {position = {x = 4, y = 0}, name = 'sand-2'}, - {position = {x = 4, y = 1}, name = 'sand-2'}, - {position = {x = 4, y = 2}, name = 'sand-2'}, - {position = {x = 4, y = 3}, name = 'sand-2'}, - {position = {x = 4, y = 4}, name = 'sand-2'}, - {position = {x = 4, y = 5}, name = 'sand-2'}, - {position = {x = 4, y = 6}, name = 'sand-2'}, - {position = {x = 4, y = 7}, name = 'sand-2'}, - {position = {x = 4, y = 8}, name = 'sand-2'}, - {position = {x = 4, y = 9}, name = 'sand-2'}, - {position = {x = 4, y = 10}, name = 'sand-2'}, - {position = {x = 4, y = 11}, name = 'sand-2'}, - {position = {x = 4, y = 12}, name = 'sand-2'}, - {position = {x = 4, y = 13}, name = 'sand-2'}, - {position = {x = 4, y = 14}, name = 'sand-2'}, - {position = {x = 4, y = 15}, name = 'sand-2'}, - {position = {x = 4, y = 16}, name = 'sand-2'}, - {position = {x = 4, y = 17}, name = 'sand-2'}, - {position = {x = 4, y = 18}, name = 'sand-2'}, - {position = {x = 4, y = 19}, name = 'sand-2'}, - {position = {x = 4, y = 20}, name = 'sand-2'}, - {position = {x = 4, y = 21}, name = 'sand-2'}, - {position = {x = 4, y = 22}, name = 'sand-2'}, - {position = {x = 4, y = 23}, name = 'sand-2'}, - {position = {x = 4, y = 24}, name = 'sand-2'}, - {position = {x = 4, y = 25}, name = 'sand-2'}, - {position = {x = 4, y = 26}, name = 'sand-2'}, - {position = {x = 4, y = 27}, name = 'sand-2'}, - {position = {x = 4, y = 28}, name = 'sand-2'}, - {position = {x = 4, y = 29}, name = 'sand-2'}, - {position = {x = 4, y = 30}, name = 'sand-2'}, - {position = {x = 4, y = 31}, name = 'sand-2'}, - {position = {x = 5, y = 0}, name = 'sand-2'}, - {position = {x = 5, y = 1}, name = 'sand-2'}, - {position = {x = 5, y = 2}, name = 'sand-2'}, - {position = {x = 5, y = 3}, name = 'sand-2'}, - {position = {x = 5, y = 4}, name = 'sand-2'}, - {position = {x = 5, y = 5}, name = 'sand-2'}, - {position = {x = 5, y = 6}, name = 'sand-2'}, - {position = {x = 5, y = 7}, name = 'sand-2'}, - {position = {x = 5, y = 8}, name = 'sand-2'}, - {position = {x = 5, y = 9}, name = 'sand-2'}, - {position = {x = 5, y = 10}, name = 'sand-2'}, - {position = {x = 5, y = 11}, name = 'sand-2'}, - {position = {x = 5, y = 12}, name = 'sand-2'}, - {position = {x = 5, y = 13}, name = 'sand-2'}, - {position = {x = 5, y = 14}, name = 'sand-2'}, - {position = {x = 5, y = 15}, name = 'sand-2'}, - {position = {x = 5, y = 16}, name = 'sand-2'}, - {position = {x = 5, y = 17}, name = 'sand-2'}, - {position = {x = 5, y = 18}, name = 'sand-2'}, - {position = {x = 5, y = 19}, name = 'sand-2'}, - {position = {x = 5, y = 20}, name = 'sand-2'}, - {position = {x = 5, y = 21}, name = 'sand-2'}, - {position = {x = 5, y = 22}, name = 'sand-2'}, - {position = {x = 5, y = 23}, name = 'sand-2'}, - {position = {x = 5, y = 24}, name = 'sand-2'}, - {position = {x = 5, y = 25}, name = 'sand-2'}, - {position = {x = 5, y = 26}, name = 'sand-2'}, - {position = {x = 5, y = 27}, name = 'sand-2'}, - {position = {x = 5, y = 28}, name = 'sand-2'}, - {position = {x = 5, y = 29}, name = 'sand-2'}, - {position = {x = 5, y = 30}, name = 'sand-2'}, - {position = {x = 5, y = 31}, name = 'sand-2'}, - {position = {x = 6, y = 0}, name = 'sand-2'}, - {position = {x = 6, y = 1}, name = 'sand-2'}, - {position = {x = 6, y = 2}, name = 'sand-2'}, - {position = {x = 6, y = 3}, name = 'sand-2'}, - {position = {x = 6, y = 4}, name = 'sand-2'}, - {position = {x = 6, y = 5}, name = 'sand-2'}, - {position = {x = 6, y = 6}, name = 'sand-2'}, - {position = {x = 6, y = 7}, name = 'sand-2'}, - {position = {x = 6, y = 8}, name = 'sand-2'}, - {position = {x = 6, y = 9}, name = 'sand-2'}, - {position = {x = 6, y = 10}, name = 'sand-2'}, - {position = {x = 6, y = 11}, name = 'sand-2'}, - {position = {x = 6, y = 12}, name = 'sand-2'}, - {position = {x = 6, y = 13}, name = 'sand-2'}, - {position = {x = 6, y = 14}, name = 'sand-2'}, - {position = {x = 6, y = 15}, name = 'sand-2'}, - {position = {x = 6, y = 16}, name = 'sand-2'}, - {position = {x = 6, y = 17}, name = 'sand-2'}, - {position = {x = 6, y = 18}, name = 'sand-2'}, - {position = {x = 6, y = 19}, name = 'sand-2'}, - {position = {x = 6, y = 20}, name = 'sand-2'}, - {position = {x = 6, y = 21}, name = 'sand-2'}, - {position = {x = 6, y = 22}, name = 'sand-2'}, - {position = {x = 6, y = 23}, name = 'sand-2'}, - {position = {x = 6, y = 24}, name = 'sand-2'}, - {position = {x = 6, y = 25}, name = 'sand-2'}, - {position = {x = 6, y = 26}, name = 'sand-2'}, - {position = {x = 6, y = 27}, name = 'sand-2'}, - {position = {x = 6, y = 28}, name = 'sand-2'}, - {position = {x = 6, y = 29}, name = 'sand-2'}, - {position = {x = 6, y = 30}, name = 'sand-2'}, - {position = {x = 6, y = 31}, name = 'sand-2'}, - {position = {x = 7, y = 0}, name = 'sand-2'}, - {position = {x = 7, y = 1}, name = 'sand-2'}, - {position = {x = 7, y = 2}, name = 'sand-2'}, - {position = {x = 7, y = 3}, name = 'sand-2'}, - {position = {x = 7, y = 4}, name = 'sand-2'}, - {position = {x = 7, y = 5}, name = 'sand-2'}, - {position = {x = 7, y = 6}, name = 'sand-2'}, - {position = {x = 7, y = 7}, name = 'sand-2'}, - {position = {x = 7, y = 8}, name = 'sand-2'}, - {position = {x = 7, y = 9}, name = 'sand-2'}, - {position = {x = 7, y = 10}, name = 'sand-2'}, - {position = {x = 7, y = 11}, name = 'sand-2'}, - {position = {x = 7, y = 12}, name = 'sand-2'}, - {position = {x = 7, y = 13}, name = 'sand-2'}, - {position = {x = 7, y = 14}, name = 'sand-2'}, - {position = {x = 7, y = 15}, name = 'sand-2'}, - {position = {x = 7, y = 16}, name = 'sand-2'}, - {position = {x = 7, y = 17}, name = 'sand-2'}, - {position = {x = 7, y = 18}, name = 'sand-2'}, - {position = {x = 7, y = 19}, name = 'sand-2'}, - {position = {x = 7, y = 20}, name = 'sand-2'}, - {position = {x = 7, y = 21}, name = 'sand-2'}, - {position = {x = 7, y = 22}, name = 'sand-2'}, - {position = {x = 7, y = 23}, name = 'sand-2'}, - {position = {x = 7, y = 24}, name = 'sand-2'}, - {position = {x = 7, y = 25}, name = 'sand-2'}, - {position = {x = 7, y = 26}, name = 'sand-2'}, - {position = {x = 7, y = 27}, name = 'sand-2'}, - {position = {x = 7, y = 28}, name = 'sand-2'}, - {position = {x = 7, y = 29}, name = 'sand-2'}, - {position = {x = 7, y = 30}, name = 'sand-2'}, - {position = {x = 7, y = 31}, name = 'sand-2'}, - {position = {x = 8, y = 0}, name = 'sand-2'}, - {position = {x = 8, y = 1}, name = 'sand-2'}, - {position = {x = 8, y = 2}, name = 'sand-2'}, - {position = {x = 8, y = 3}, name = 'sand-2'}, - {position = {x = 8, y = 4}, name = 'sand-2'}, - {position = {x = 8, y = 5}, name = 'sand-2'}, - {position = {x = 8, y = 6}, name = 'sand-2'}, - {position = {x = 8, y = 7}, name = 'sand-2'}, - {position = {x = 8, y = 8}, name = 'sand-2'}, - {position = {x = 8, y = 9}, name = 'sand-2'}, - {position = {x = 8, y = 10}, name = 'sand-2'}, - {position = {x = 8, y = 11}, name = 'sand-2'}, - {position = {x = 8, y = 12}, name = 'sand-2'}, - {position = {x = 8, y = 13}, name = 'sand-2'}, - {position = {x = 8, y = 14}, name = 'sand-2'}, - {position = {x = 8, y = 15}, name = 'sand-2'}, - {position = {x = 8, y = 16}, name = 'sand-2'}, - {position = {x = 8, y = 17}, name = 'sand-2'}, - {position = {x = 8, y = 18}, name = 'sand-2'}, - {position = {x = 8, y = 19}, name = 'sand-2'}, - {position = {x = 8, y = 20}, name = 'sand-2'}, - {position = {x = 8, y = 21}, name = 'sand-2'}, - {position = {x = 8, y = 22}, name = 'sand-2'}, - {position = {x = 8, y = 23}, name = 'sand-2'}, - {position = {x = 8, y = 24}, name = 'sand-2'}, - {position = {x = 8, y = 25}, name = 'sand-2'}, - {position = {x = 8, y = 26}, name = 'sand-2'}, - {position = {x = 8, y = 27}, name = 'sand-2'}, - {position = {x = 8, y = 28}, name = 'sand-2'}, - {position = {x = 8, y = 29}, name = 'sand-2'}, - {position = {x = 8, y = 30}, name = 'sand-2'}, - {position = {x = 8, y = 31}, name = 'sand-2'}, - {position = {x = 9, y = 0}, name = 'sand-2'}, - {position = {x = 9, y = 1}, name = 'sand-2'}, - {position = {x = 9, y = 2}, name = 'sand-2'}, - {position = {x = 9, y = 3}, name = 'sand-2'}, - {position = {x = 9, y = 4}, name = 'sand-2'}, - {position = {x = 9, y = 5}, name = 'sand-2'}, - {position = {x = 9, y = 6}, name = 'sand-2'}, - {position = {x = 9, y = 7}, name = 'sand-2'}, - {position = {x = 9, y = 8}, name = 'sand-2'}, - {position = {x = 9, y = 9}, name = 'sand-2'}, - {position = {x = 9, y = 10}, name = 'sand-2'}, - {position = {x = 9, y = 11}, name = 'sand-2'}, - {position = {x = 9, y = 12}, name = 'sand-2'}, - {position = {x = 9, y = 13}, name = 'sand-2'}, - {position = {x = 9, y = 14}, name = 'sand-2'}, - {position = {x = 9, y = 15}, name = 'sand-2'}, - {position = {x = 9, y = 16}, name = 'sand-2'}, - {position = {x = 9, y = 17}, name = 'sand-2'}, - {position = {x = 9, y = 18}, name = 'sand-2'}, - {position = {x = 9, y = 19}, name = 'sand-2'}, - {position = {x = 9, y = 20}, name = 'sand-2'}, - {position = {x = 9, y = 21}, name = 'sand-2'}, - {position = {x = 9, y = 22}, name = 'concrete'}, - {position = {x = 9, y = 23}, name = 'concrete'}, - {position = {x = 9, y = 24}, name = 'concrete'}, - {position = {x = 9, y = 25}, name = 'stone-path'}, - {position = {x = 9, y = 26}, name = 'stone-path'}, - {position = {x = 9, y = 27}, name = 'stone-path'}, - {position = {x = 9, y = 28}, name = 'sand-2'}, - {position = {x = 9, y = 29}, name = 'sand-2'}, - {position = {x = 9, y = 30}, name = 'sand-2'}, - {position = {x = 9, y = 31}, name = 'sand-2'}, - {position = {x = 10, y = 0}, name = 'sand-2'}, - {position = {x = 10, y = 1}, name = 'sand-2'}, - {position = {x = 10, y = 2}, name = 'sand-2'}, - {position = {x = 10, y = 3}, name = 'sand-2'}, - {position = {x = 10, y = 4}, name = 'sand-2'}, - {position = {x = 10, y = 5}, name = 'sand-2'}, - {position = {x = 10, y = 6}, name = 'sand-2'}, - {position = {x = 10, y = 7}, name = 'sand-2'}, - {position = {x = 10, y = 8}, name = 'sand-2'}, - {position = {x = 10, y = 9}, name = 'sand-2'}, - {position = {x = 10, y = 10}, name = 'sand-2'}, - {position = {x = 10, y = 11}, name = 'sand-2'}, - {position = {x = 10, y = 12}, name = 'sand-2'}, - {position = {x = 10, y = 13}, name = 'sand-2'}, - {position = {x = 10, y = 14}, name = 'sand-2'}, - {position = {x = 10, y = 15}, name = 'sand-2'}, - {position = {x = 10, y = 16}, name = 'sand-2'}, - {position = {x = 10, y = 17}, name = 'sand-2'}, - {position = {x = 10, y = 18}, name = 'sand-2'}, - {position = {x = 10, y = 19}, name = 'sand-2'}, - {position = {x = 10, y = 20}, name = 'sand-2'}, - {position = {x = 10, y = 21}, name = 'sand-2'}, - {position = {x = 10, y = 22}, name = 'concrete'}, - {position = {x = 10, y = 23}, name = 'concrete'}, - {position = {x = 10, y = 24}, name = 'concrete'}, - {position = {x = 10, y = 25}, name = 'stone-path'}, - {position = {x = 10, y = 26}, name = 'stone-path'}, - {position = {x = 10, y = 27}, name = 'stone-path'}, - {position = {x = 10, y = 28}, name = 'sand-2'}, - {position = {x = 10, y = 29}, name = 'sand-2'}, - {position = {x = 10, y = 30}, name = 'sand-2'}, - {position = {x = 10, y = 31}, name = 'sand-2'}, - {position = {x = 11, y = 0}, name = 'sand-2'}, - {position = {x = 11, y = 1}, name = 'sand-2'}, - {position = {x = 11, y = 2}, name = 'sand-2'}, - {position = {x = 11, y = 3}, name = 'sand-2'}, - {position = {x = 11, y = 4}, name = 'sand-2'}, - {position = {x = 11, y = 5}, name = 'sand-2'}, - {position = {x = 11, y = 6}, name = 'sand-2'}, - {position = {x = 11, y = 7}, name = 'sand-2'}, - {position = {x = 11, y = 8}, name = 'sand-2'}, - {position = {x = 11, y = 9}, name = 'sand-2'}, - {position = {x = 11, y = 10}, name = 'sand-2'}, - {position = {x = 11, y = 11}, name = 'sand-2'}, - {position = {x = 11, y = 12}, name = 'sand-2'}, - {position = {x = 11, y = 13}, name = 'sand-2'}, - {position = {x = 11, y = 14}, name = 'sand-2'}, - {position = {x = 11, y = 15}, name = 'sand-2'}, - {position = {x = 11, y = 16}, name = 'sand-2'}, - {position = {x = 11, y = 17}, name = 'sand-2'}, - {position = {x = 11, y = 18}, name = 'sand-2'}, - {position = {x = 11, y = 19}, name = 'sand-2'}, - {position = {x = 11, y = 20}, name = 'sand-2'}, - {position = {x = 11, y = 21}, name = 'sand-2'}, - {position = {x = 11, y = 22}, name = 'concrete'}, - {position = {x = 11, y = 23}, name = 'concrete'}, - {position = {x = 11, y = 24}, name = 'concrete'}, - {position = {x = 11, y = 25}, name = 'stone-path'}, - {position = {x = 11, y = 26}, name = 'stone-path'}, - {position = {x = 11, y = 27}, name = 'stone-path'}, - {position = {x = 11, y = 28}, name = 'sand-2'}, - {position = {x = 11, y = 29}, name = 'stone-path'}, - {position = {x = 11, y = 30}, name = 'stone-path'}, - {position = {x = 11, y = 31}, name = 'stone-path'}, - {position = {x = 12, y = 0}, name = 'sand-2'}, - {position = {x = 12, y = 1}, name = 'sand-2'}, - {position = {x = 12, y = 2}, name = 'sand-2'}, - {position = {x = 12, y = 3}, name = 'sand-2'}, - {position = {x = 12, y = 4}, name = 'sand-2'}, - {position = {x = 12, y = 5}, name = 'sand-2'}, - {position = {x = 12, y = 6}, name = 'sand-2'}, - {position = {x = 12, y = 7}, name = 'sand-2'}, - {position = {x = 12, y = 8}, name = 'sand-2'}, - {position = {x = 12, y = 9}, name = 'sand-2'}, - {position = {x = 12, y = 10}, name = 'sand-2'}, - {position = {x = 12, y = 11}, name = 'sand-2'}, - {position = {x = 12, y = 12}, name = 'sand-2'}, - {position = {x = 12, y = 13}, name = 'sand-2'}, - {position = {x = 12, y = 14}, name = 'sand-2'}, - {position = {x = 12, y = 15}, name = 'sand-2'}, - {position = {x = 12, y = 16}, name = 'sand-2'}, - {position = {x = 12, y = 17}, name = 'sand-2'}, - {position = {x = 12, y = 18}, name = 'sand-2'}, - {position = {x = 12, y = 19}, name = 'sand-2'}, - {position = {x = 12, y = 20}, name = 'sand-2'}, - {position = {x = 12, y = 21}, name = 'sand-2'}, - {position = {x = 12, y = 22}, name = 'sand-2'}, - {position = {x = 12, y = 23}, name = 'sand-2'}, - {position = {x = 12, y = 24}, name = 'sand-2'}, - {position = {x = 12, y = 25}, name = 'sand-2'}, - {position = {x = 12, y = 26}, name = 'refined-concrete'}, - {position = {x = 12, y = 27}, name = 'refined-concrete'}, - {position = {x = 12, y = 28}, name = 'refined-concrete'}, - {position = {x = 12, y = 29}, name = 'stone-path'}, - {position = {x = 12, y = 30}, name = 'stone-path'}, - {position = {x = 12, y = 31}, name = 'stone-path'}, - {position = {x = 13, y = 0}, name = 'sand-2'}, - {position = {x = 13, y = 1}, name = 'sand-2'}, - {position = {x = 13, y = 2}, name = 'sand-2'}, - {position = {x = 13, y = 3}, name = 'sand-2'}, - {position = {x = 13, y = 4}, name = 'sand-2'}, - {position = {x = 13, y = 5}, name = 'sand-2'}, - {position = {x = 13, y = 6}, name = 'sand-2'}, - {position = {x = 13, y = 7}, name = 'sand-2'}, - {position = {x = 13, y = 8}, name = 'sand-2'}, - {position = {x = 13, y = 9}, name = 'sand-2'}, - {position = {x = 13, y = 10}, name = 'sand-2'}, - {position = {x = 13, y = 11}, name = 'sand-2'}, - {position = {x = 13, y = 12}, name = 'sand-2'}, - {position = {x = 13, y = 13}, name = 'sand-2'}, - {position = {x = 13, y = 14}, name = 'sand-2'}, - {position = {x = 13, y = 15}, name = 'sand-2'}, - {position = {x = 13, y = 16}, name = 'sand-2'}, - {position = {x = 13, y = 17}, name = 'sand-2'}, - {position = {x = 13, y = 18}, name = 'sand-2'}, - {position = {x = 13, y = 19}, name = 'sand-2'}, - {position = {x = 13, y = 20}, name = 'sand-2'}, - {position = {x = 13, y = 21}, name = 'sand-2'}, - {position = {x = 13, y = 22}, name = 'sand-2'}, - {position = {x = 13, y = 23}, name = 'sand-2'}, - {position = {x = 13, y = 24}, name = 'sand-2'}, - {position = {x = 13, y = 25}, name = 'stone-path'}, - {position = {x = 13, y = 26}, name = 'stone-path'}, - {position = {x = 13, y = 27}, name = 'stone-path'}, - {position = {x = 13, y = 28}, name = 'refined-concrete'}, - {position = {x = 13, y = 29}, name = 'stone-path'}, - {position = {x = 13, y = 30}, name = 'stone-path'}, - {position = {x = 13, y = 31}, name = 'stone-path'}, - {position = {x = 14, y = 0}, name = 'sand-2'}, - {position = {x = 14, y = 1}, name = 'sand-2'}, - {position = {x = 14, y = 2}, name = 'sand-2'}, - {position = {x = 14, y = 3}, name = 'sand-2'}, - {position = {x = 14, y = 4}, name = 'sand-2'}, - {position = {x = 14, y = 5}, name = 'sand-2'}, - {position = {x = 14, y = 6}, name = 'sand-2'}, - {position = {x = 14, y = 7}, name = 'sand-2'}, - {position = {x = 14, y = 8}, name = 'sand-2'}, - {position = {x = 14, y = 9}, name = 'sand-2'}, - {position = {x = 14, y = 10}, name = 'sand-2'}, - {position = {x = 14, y = 11}, name = 'sand-2'}, - {position = {x = 14, y = 12}, name = 'sand-2'}, - {position = {x = 14, y = 13}, name = 'sand-2'}, - {position = {x = 14, y = 14}, name = 'sand-2'}, - {position = {x = 14, y = 15}, name = 'sand-2'}, - {position = {x = 14, y = 16}, name = 'sand-2'}, - {position = {x = 14, y = 17}, name = 'sand-2'}, - {position = {x = 14, y = 18}, name = 'sand-2'}, - {position = {x = 14, y = 19}, name = 'sand-2'}, - {position = {x = 14, y = 20}, name = 'sand-2'}, - {position = {x = 14, y = 21}, name = 'sand-2'}, - {position = {x = 14, y = 22}, name = 'sand-2'}, - {position = {x = 14, y = 23}, name = 'sand-2'}, - {position = {x = 14, y = 24}, name = 'sand-2'}, - {position = {x = 14, y = 25}, name = 'stone-path'}, - {position = {x = 14, y = 26}, name = 'stone-path'}, - {position = {x = 14, y = 27}, name = 'stone-path'}, - {position = {x = 14, y = 28}, name = 'refined-concrete'}, - {position = {x = 14, y = 29}, name = 'refined-concrete'}, - {position = {x = 14, y = 30}, name = 'refined-concrete'}, - {position = {x = 14, y = 31}, name = 'refined-concrete'}, - {position = {x = 15, y = 0}, name = 'sand-2'}, - {position = {x = 15, y = 1}, name = 'sand-2'}, - {position = {x = 15, y = 2}, name = 'sand-2'}, - {position = {x = 15, y = 3}, name = 'sand-2'}, - {position = {x = 15, y = 4}, name = 'sand-2'}, - {position = {x = 15, y = 5}, name = 'sand-2'}, - {position = {x = 15, y = 6}, name = 'sand-2'}, - {position = {x = 15, y = 7}, name = 'sand-2'}, - {position = {x = 15, y = 8}, name = 'sand-2'}, - {position = {x = 15, y = 9}, name = 'sand-2'}, - {position = {x = 15, y = 10}, name = 'sand-2'}, - {position = {x = 15, y = 11}, name = 'sand-2'}, - {position = {x = 15, y = 12}, name = 'sand-2'}, - {position = {x = 15, y = 13}, name = 'sand-2'}, - {position = {x = 15, y = 14}, name = 'sand-2'}, - {position = {x = 15, y = 15}, name = 'sand-2'}, - {position = {x = 15, y = 16}, name = 'sand-2'}, - {position = {x = 15, y = 17}, name = 'sand-2'}, - {position = {x = 15, y = 18}, name = 'sand-2'}, - {position = {x = 15, y = 19}, name = 'sand-2'}, - {position = {x = 15, y = 20}, name = 'sand-2'}, - {position = {x = 15, y = 21}, name = 'sand-2'}, - {position = {x = 15, y = 22}, name = 'sand-2'}, - {position = {x = 15, y = 23}, name = 'sand-2'}, - {position = {x = 15, y = 24}, name = 'sand-2'}, - {position = {x = 15, y = 25}, name = 'stone-path'}, - {position = {x = 15, y = 26}, name = 'stone-path'}, - {position = {x = 15, y = 27}, name = 'stone-path'}, - {position = {x = 15, y = 28}, name = 'refined-concrete'}, - {position = {x = 15, y = 29}, name = 'refined-concrete'}, - {position = {x = 15, y = 30}, name = 'refined-concrete'}, - {position = {x = 15, y = 31}, name = 'refined-concrete'}, - {position = {x = 16, y = 0}, name = 'sand-2'}, - {position = {x = 16, y = 1}, name = 'sand-2'}, - {position = {x = 16, y = 2}, name = 'sand-2'}, - {position = {x = 16, y = 3}, name = 'sand-2'}, - {position = {x = 16, y = 4}, name = 'sand-2'}, - {position = {x = 16, y = 5}, name = 'sand-2'}, - {position = {x = 16, y = 6}, name = 'sand-2'}, - {position = {x = 16, y = 7}, name = 'sand-2'}, - {position = {x = 16, y = 8}, name = 'sand-2'}, - {position = {x = 16, y = 9}, name = 'sand-2'}, - {position = {x = 16, y = 10}, name = 'sand-2'}, - {position = {x = 16, y = 11}, name = 'sand-2'}, - {position = {x = 16, y = 12}, name = 'sand-2'}, - {position = {x = 16, y = 13}, name = 'sand-2'}, - {position = {x = 16, y = 14}, name = 'sand-2'}, - {position = {x = 16, y = 15}, name = 'sand-2'}, - {position = {x = 16, y = 16}, name = 'sand-2'}, - {position = {x = 16, y = 17}, name = 'sand-2'}, - {position = {x = 16, y = 18}, name = 'sand-2'}, - {position = {x = 16, y = 19}, name = 'sand-2'}, - {position = {x = 16, y = 20}, name = 'sand-2'}, - {position = {x = 16, y = 21}, name = 'sand-2'}, - {position = {x = 16, y = 22}, name = 'sand-2'}, - {position = {x = 16, y = 23}, name = 'concrete'}, - {position = {x = 16, y = 24}, name = 'concrete'}, - {position = {x = 16, y = 25}, name = 'concrete'}, - {position = {x = 16, y = 26}, name = 'refined-concrete'}, - {position = {x = 16, y = 27}, name = 'refined-concrete'}, - {position = {x = 16, y = 28}, name = 'refined-concrete'}, - {position = {x = 16, y = 29}, name = 'concrete'}, - {position = {x = 16, y = 30}, name = 'concrete'}, - {position = {x = 16, y = 31}, name = 'concrete'}, - {position = {x = 17, y = 0}, name = 'sand-2'}, - {position = {x = 17, y = 1}, name = 'sand-2'}, - {position = {x = 17, y = 2}, name = 'sand-2'}, - {position = {x = 17, y = 3}, name = 'sand-2'}, - {position = {x = 17, y = 4}, name = 'sand-2'}, - {position = {x = 17, y = 5}, name = 'sand-2'}, - {position = {x = 17, y = 6}, name = 'sand-2'}, - {position = {x = 17, y = 7}, name = 'sand-2'}, - {position = {x = 17, y = 8}, name = 'sand-2'}, - {position = {x = 17, y = 9}, name = 'sand-2'}, - {position = {x = 17, y = 10}, name = 'sand-2'}, - {position = {x = 17, y = 11}, name = 'sand-2'}, - {position = {x = 17, y = 12}, name = 'sand-2'}, - {position = {x = 17, y = 13}, name = 'sand-2'}, - {position = {x = 17, y = 14}, name = 'sand-2'}, - {position = {x = 17, y = 15}, name = 'sand-2'}, - {position = {x = 17, y = 16}, name = 'sand-2'}, - {position = {x = 17, y = 17}, name = 'sand-2'}, - {position = {x = 17, y = 18}, name = 'sand-2'}, - {position = {x = 17, y = 19}, name = 'sand-2'}, - {position = {x = 17, y = 20}, name = 'sand-2'}, - {position = {x = 17, y = 21}, name = 'sand-2'}, - {position = {x = 17, y = 22}, name = 'sand-2'}, - {position = {x = 17, y = 23}, name = 'concrete'}, - {position = {x = 17, y = 24}, name = 'concrete'}, - {position = {x = 17, y = 25}, name = 'concrete'}, - {position = {x = 17, y = 26}, name = 'sand-2'}, - {position = {x = 17, y = 27}, name = 'stone-path'}, - {position = {x = 17, y = 28}, name = 'stone-path'}, - {position = {x = 17, y = 29}, name = 'concrete'}, - {position = {x = 17, y = 30}, name = 'concrete'}, - {position = {x = 17, y = 31}, name = 'concrete'}, - {position = {x = 18, y = 0}, name = 'sand-2'}, - {position = {x = 18, y = 1}, name = 'sand-2'}, - {position = {x = 18, y = 2}, name = 'sand-2'}, - {position = {x = 18, y = 3}, name = 'sand-2'}, - {position = {x = 18, y = 4}, name = 'sand-2'}, - {position = {x = 18, y = 5}, name = 'sand-2'}, - {position = {x = 18, y = 6}, name = 'deepwater'}, - {position = {x = 18, y = 7}, name = 'deepwater'}, - {position = {x = 18, y = 8}, name = 'sand-2'}, - {position = {x = 18, y = 9}, name = 'sand-2'}, - {position = {x = 18, y = 10}, name = 'sand-2'}, - {position = {x = 18, y = 11}, name = 'sand-2'}, - {position = {x = 18, y = 12}, name = 'sand-2'}, - {position = {x = 18, y = 13}, name = 'sand-2'}, - {position = {x = 18, y = 14}, name = 'sand-2'}, - {position = {x = 18, y = 15}, name = 'sand-2'}, - {position = {x = 18, y = 16}, name = 'sand-2'}, - {position = {x = 18, y = 17}, name = 'sand-2'}, - {position = {x = 18, y = 18}, name = 'sand-2'}, - {position = {x = 18, y = 19}, name = 'sand-2'}, - {position = {x = 18, y = 20}, name = 'sand-2'}, - {position = {x = 18, y = 21}, name = 'sand-2'}, - {position = {x = 18, y = 22}, name = 'sand-2'}, - {position = {x = 18, y = 23}, name = 'concrete'}, - {position = {x = 18, y = 24}, name = 'concrete'}, - {position = {x = 18, y = 25}, name = 'concrete'}, - {position = {x = 18, y = 26}, name = 'sand-2'}, - {position = {x = 18, y = 27}, name = 'stone-path'}, - {position = {x = 18, y = 28}, name = 'stone-path'}, - {position = {x = 18, y = 29}, name = 'concrete'}, - {position = {x = 18, y = 30}, name = 'concrete'}, - {position = {x = 18, y = 31}, name = 'concrete'}, - {position = {x = 19, y = 0}, name = 'sand-2'}, - {position = {x = 19, y = 1}, name = 'sand-2'}, - {position = {x = 19, y = 2}, name = 'sand-2'}, - {position = {x = 19, y = 3}, name = 'sand-2'}, - {position = {x = 19, y = 4}, name = 'sand-2'}, - {position = {x = 19, y = 5}, name = 'sand-2'}, - {position = {x = 19, y = 6}, name = 'deepwater'}, - {position = {x = 19, y = 7}, name = 'deepwater'}, - {position = {x = 19, y = 8}, name = 'deepwater'}, - {position = {x = 19, y = 9}, name = 'deepwater'}, - {position = {x = 19, y = 10}, name = 'sand-2'}, - {position = {x = 19, y = 11}, name = 'sand-2'}, - {position = {x = 19, y = 12}, name = 'sand-2'}, - {position = {x = 19, y = 13}, name = 'sand-2'}, - {position = {x = 19, y = 14}, name = 'sand-2'}, - {position = {x = 19, y = 15}, name = 'sand-2'}, - {position = {x = 19, y = 16}, name = 'sand-2'}, - {position = {x = 19, y = 17}, name = 'sand-2'}, - {position = {x = 19, y = 18}, name = 'sand-2'}, - {position = {x = 19, y = 19}, name = 'sand-2'}, - {position = {x = 19, y = 20}, name = 'sand-2'}, - {position = {x = 19, y = 21}, name = 'sand-2'}, - {position = {x = 19, y = 22}, name = 'sand-2'}, - {position = {x = 19, y = 23}, name = 'sand-2'}, - {position = {x = 19, y = 24}, name = 'sand-2'}, - {position = {x = 19, y = 25}, name = 'sand-2'}, - {position = {x = 19, y = 26}, name = 'sand-2'}, - {position = {x = 19, y = 27}, name = 'stone-path'}, - {position = {x = 19, y = 28}, name = 'stone-path'}, - {position = {x = 19, y = 29}, name = 'stone-path'}, - {position = {x = 19, y = 30}, name = 'sand-2'}, - {position = {x = 19, y = 31}, name = 'sand-2'}, - {position = {x = 20, y = 0}, name = 'sand-2'}, - {position = {x = 20, y = 1}, name = 'sand-2'}, - {position = {x = 20, y = 2}, name = 'sand-2'}, - {position = {x = 20, y = 3}, name = 'sand-2'}, - {position = {x = 20, y = 4}, name = 'sand-2'}, - {position = {x = 20, y = 5}, name = 'sand-2'}, - {position = {x = 20, y = 6}, name = 'deepwater'}, - {position = {x = 20, y = 7}, name = 'deepwater'}, - {position = {x = 20, y = 8}, name = 'deepwater'}, - {position = {x = 20, y = 9}, name = 'deepwater'}, - {position = {x = 20, y = 10}, name = 'sand-2'}, - {position = {x = 20, y = 11}, name = 'sand-2'}, - {position = {x = 20, y = 12}, name = 'sand-2'}, - {position = {x = 20, y = 13}, name = 'sand-2'}, - {position = {x = 20, y = 14}, name = 'sand-2'}, - {position = {x = 20, y = 15}, name = 'sand-2'}, - {position = {x = 20, y = 16}, name = 'sand-2'}, - {position = {x = 20, y = 17}, name = 'sand-2'}, - {position = {x = 20, y = 18}, name = 'sand-2'}, - {position = {x = 20, y = 19}, name = 'sand-2'}, - {position = {x = 20, y = 20}, name = 'sand-2'}, - {position = {x = 20, y = 21}, name = 'sand-2'}, - {position = {x = 20, y = 22}, name = 'sand-2'}, - {position = {x = 20, y = 23}, name = 'sand-2'}, - {position = {x = 20, y = 24}, name = 'sand-2'}, - {position = {x = 20, y = 25}, name = 'sand-2'}, - {position = {x = 20, y = 26}, name = 'sand-2'}, - {position = {x = 20, y = 27}, name = 'sand-2'}, - {position = {x = 20, y = 28}, name = 'sand-2'}, - {position = {x = 20, y = 29}, name = 'sand-2'}, - {position = {x = 20, y = 30}, name = 'sand-2'}, - {position = {x = 20, y = 31}, name = 'sand-2'}, - {position = {x = 21, y = 0}, name = 'sand-2'}, - {position = {x = 21, y = 1}, name = 'sand-2'}, - {position = {x = 21, y = 2}, name = 'sand-2'}, - {position = {x = 21, y = 3}, name = 'sand-2'}, - {position = {x = 21, y = 4}, name = 'sand-2'}, - {position = {x = 21, y = 5}, name = 'sand-2'}, - {position = {x = 21, y = 6}, name = 'deepwater'}, - {position = {x = 21, y = 7}, name = 'deepwater'}, - {position = {x = 21, y = 8}, name = 'deepwater'}, - {position = {x = 21, y = 9}, name = 'deepwater'}, - {position = {x = 21, y = 10}, name = 'sand-2'}, - {position = {x = 21, y = 11}, name = 'sand-2'}, - {position = {x = 21, y = 12}, name = 'sand-2'}, - {position = {x = 21, y = 13}, name = 'sand-2'}, - {position = {x = 21, y = 14}, name = 'sand-2'}, - {position = {x = 21, y = 15}, name = 'sand-2'}, - {position = {x = 21, y = 16}, name = 'sand-2'}, - {position = {x = 21, y = 17}, name = 'sand-2'}, - {position = {x = 21, y = 18}, name = 'sand-2'}, - {position = {x = 21, y = 19}, name = 'sand-2'}, - {position = {x = 21, y = 20}, name = 'sand-2'}, - {position = {x = 21, y = 21}, name = 'sand-2'}, - {position = {x = 21, y = 22}, name = 'sand-2'}, - {position = {x = 21, y = 23}, name = 'sand-2'}, - {position = {x = 21, y = 24}, name = 'sand-2'}, - {position = {x = 21, y = 25}, name = 'sand-2'}, - {position = {x = 21, y = 26}, name = 'sand-2'}, - {position = {x = 21, y = 27}, name = 'sand-2'}, - {position = {x = 21, y = 28}, name = 'sand-2'}, - {position = {x = 21, y = 29}, name = 'sand-2'}, - {position = {x = 21, y = 30}, name = 'sand-2'}, - {position = {x = 21, y = 31}, name = 'sand-2'}, - {position = {x = 22, y = 0}, name = 'sand-2'}, - {position = {x = 22, y = 1}, name = 'sand-2'}, - {position = {x = 22, y = 2}, name = 'sand-2'}, - {position = {x = 22, y = 3}, name = 'sand-2'}, - {position = {x = 22, y = 4}, name = 'sand-2'}, - {position = {x = 22, y = 5}, name = 'sand-2'}, - {position = {x = 22, y = 6}, name = 'sand-2'}, - {position = {x = 22, y = 7}, name = 'deepwater'}, - {position = {x = 22, y = 8}, name = 'deepwater'}, - {position = {x = 22, y = 9}, name = 'deepwater'}, - {position = {x = 22, y = 10}, name = 'sand-2'}, - {position = {x = 22, y = 11}, name = 'sand-2'}, - {position = {x = 22, y = 12}, name = 'sand-2'}, - {position = {x = 22, y = 13}, name = 'sand-2'}, - {position = {x = 22, y = 14}, name = 'sand-2'}, - {position = {x = 22, y = 15}, name = 'sand-2'}, - {position = {x = 22, y = 16}, name = 'sand-2'}, - {position = {x = 22, y = 17}, name = 'sand-2'}, - {position = {x = 22, y = 18}, name = 'sand-2'}, - {position = {x = 22, y = 19}, name = 'sand-2'}, - {position = {x = 22, y = 20}, name = 'sand-2'}, - {position = {x = 22, y = 21}, name = 'sand-2'}, - {position = {x = 22, y = 22}, name = 'sand-2'}, - {position = {x = 22, y = 23}, name = 'sand-2'}, - {position = {x = 22, y = 24}, name = 'sand-2'}, - {position = {x = 22, y = 25}, name = 'sand-2'}, - {position = {x = 22, y = 26}, name = 'sand-2'}, - {position = {x = 22, y = 27}, name = 'sand-2'}, - {position = {x = 22, y = 28}, name = 'sand-2'}, - {position = {x = 22, y = 29}, name = 'sand-2'}, - {position = {x = 22, y = 30}, name = 'sand-2'}, - {position = {x = 22, y = 31}, name = 'sand-2'}, - {position = {x = 23, y = 0}, name = 'sand-2'}, - {position = {x = 23, y = 1}, name = 'sand-2'}, - {position = {x = 23, y = 2}, name = 'sand-2'}, - {position = {x = 23, y = 3}, name = 'sand-2'}, - {position = {x = 23, y = 4}, name = 'sand-2'}, - {position = {x = 23, y = 5}, name = 'sand-2'}, - {position = {x = 23, y = 6}, name = 'sand-2'}, - {position = {x = 23, y = 7}, name = 'deepwater'}, - {position = {x = 23, y = 8}, name = 'deepwater'}, - {position = {x = 23, y = 9}, name = 'deepwater'}, - {position = {x = 23, y = 10}, name = 'deepwater'}, - {position = {x = 23, y = 11}, name = 'sand-2'}, - {position = {x = 23, y = 12}, name = 'sand-2'}, - {position = {x = 23, y = 13}, name = 'sand-2'}, - {position = {x = 23, y = 14}, name = 'sand-2'}, - {position = {x = 23, y = 15}, name = 'sand-2'}, - {position = {x = 23, y = 16}, name = 'sand-2'}, - {position = {x = 23, y = 17}, name = 'sand-2'}, - {position = {x = 23, y = 18}, name = 'sand-2'}, - {position = {x = 23, y = 19}, name = 'sand-2'}, - {position = {x = 23, y = 20}, name = 'sand-2'}, - {position = {x = 23, y = 21}, name = 'sand-2'}, - {position = {x = 23, y = 22}, name = 'sand-2'}, - {position = {x = 23, y = 23}, name = 'sand-2'}, - {position = {x = 23, y = 24}, name = 'sand-2'}, - {position = {x = 23, y = 25}, name = 'sand-2'}, - {position = {x = 23, y = 26}, name = 'sand-2'}, - {position = {x = 23, y = 27}, name = 'sand-2'}, - {position = {x = 23, y = 28}, name = 'sand-2'}, - {position = {x = 23, y = 29}, name = 'sand-2'}, - {position = {x = 23, y = 30}, name = 'sand-2'}, - {position = {x = 23, y = 31}, name = 'sand-2'}, - {position = {x = 24, y = 0}, name = 'sand-2'}, - {position = {x = 24, y = 1}, name = 'sand-2'}, - {position = {x = 24, y = 2}, name = 'sand-2'}, - {position = {x = 24, y = 3}, name = 'sand-2'}, - {position = {x = 24, y = 4}, name = 'sand-2'}, - {position = {x = 24, y = 5}, name = 'sand-2'}, - {position = {x = 24, y = 6}, name = 'sand-2'}, - {position = {x = 24, y = 7}, name = 'sand-2'}, - {position = {x = 24, y = 8}, name = 'deepwater'}, - {position = {x = 24, y = 9}, name = 'deepwater'}, - {position = {x = 24, y = 10}, name = 'deepwater'}, - {position = {x = 24, y = 11}, name = 'sand-2'}, - {position = {x = 24, y = 12}, name = 'sand-2'}, - {position = {x = 24, y = 13}, name = 'sand-2'}, - {position = {x = 24, y = 14}, name = 'sand-2'}, - {position = {x = 24, y = 15}, name = 'sand-2'}, - {position = {x = 24, y = 16}, name = 'sand-2'}, - {position = {x = 24, y = 17}, name = 'sand-2'}, - {position = {x = 24, y = 18}, name = 'sand-2'}, - {position = {x = 24, y = 19}, name = 'sand-2'}, - {position = {x = 24, y = 20}, name = 'sand-2'}, - {position = {x = 24, y = 21}, name = 'sand-2'}, - {position = {x = 24, y = 22}, name = 'sand-2'}, - {position = {x = 24, y = 23}, name = 'sand-2'}, - {position = {x = 24, y = 24}, name = 'sand-2'}, - {position = {x = 24, y = 25}, name = 'sand-2'}, - {position = {x = 24, y = 26}, name = 'sand-2'}, - {position = {x = 24, y = 27}, name = 'sand-2'}, - {position = {x = 24, y = 28}, name = 'sand-2'}, - {position = {x = 24, y = 29}, name = 'sand-2'}, - {position = {x = 24, y = 30}, name = 'sand-2'}, - {position = {x = 24, y = 31}, name = 'sand-2'}, - {position = {x = 25, y = 0}, name = 'sand-2'}, - {position = {x = 25, y = 1}, name = 'sand-2'}, - {position = {x = 25, y = 2}, name = 'sand-2'}, - {position = {x = 25, y = 3}, name = 'sand-2'}, - {position = {x = 25, y = 4}, name = 'sand-2'}, - {position = {x = 25, y = 5}, name = 'sand-2'}, - {position = {x = 25, y = 6}, name = 'sand-2'}, - {position = {x = 25, y = 7}, name = 'sand-2'}, - {position = {x = 25, y = 8}, name = 'deepwater'}, - {position = {x = 25, y = 9}, name = 'deepwater'}, - {position = {x = 25, y = 10}, name = 'deepwater'}, - {position = {x = 25, y = 11}, name = 'deepwater'}, - {position = {x = 25, y = 12}, name = 'sand-2'}, - {position = {x = 25, y = 13}, name = 'sand-2'}, - {position = {x = 25, y = 14}, name = 'sand-2'}, - {position = {x = 25, y = 15}, name = 'sand-2'}, - {position = {x = 25, y = 16}, name = 'sand-2'}, - {position = {x = 25, y = 17}, name = 'sand-2'}, - {position = {x = 25, y = 18}, name = 'sand-2'}, - {position = {x = 25, y = 19}, name = 'sand-2'}, - {position = {x = 25, y = 20}, name = 'sand-2'}, - {position = {x = 25, y = 21}, name = 'sand-2'}, - {position = {x = 25, y = 22}, name = 'sand-2'}, - {position = {x = 25, y = 23}, name = 'sand-2'}, - {position = {x = 25, y = 24}, name = 'sand-2'}, - {position = {x = 25, y = 25}, name = 'sand-2'}, - {position = {x = 25, y = 26}, name = 'sand-2'}, - {position = {x = 25, y = 27}, name = 'sand-2'}, - {position = {x = 25, y = 28}, name = 'sand-2'}, - {position = {x = 25, y = 29}, name = 'sand-2'}, - {position = {x = 25, y = 30}, name = 'sand-2'}, - {position = {x = 25, y = 31}, name = 'sand-2'}, - {position = {x = 26, y = 0}, name = 'sand-2'}, - {position = {x = 26, y = 1}, name = 'sand-2'}, - {position = {x = 26, y = 2}, name = 'sand-2'}, - {position = {x = 26, y = 3}, name = 'sand-2'}, - {position = {x = 26, y = 4}, name = 'sand-2'}, - {position = {x = 26, y = 5}, name = 'sand-2'}, - {position = {x = 26, y = 6}, name = 'sand-2'}, - {position = {x = 26, y = 7}, name = 'sand-2'}, - {position = {x = 26, y = 8}, name = 'sand-2'}, - {position = {x = 26, y = 9}, name = 'sand-2'}, - {position = {x = 26, y = 10}, name = 'sand-3'}, - {position = {x = 26, y = 11}, name = 'deepwater'}, - {position = {x = 26, y = 12}, name = 'sand-2'}, - {position = {x = 26, y = 13}, name = 'sand-2'}, - {position = {x = 26, y = 14}, name = 'sand-2'}, - {position = {x = 26, y = 15}, name = 'sand-2'}, - {position = {x = 26, y = 16}, name = 'sand-2'}, - {position = {x = 26, y = 17}, name = 'sand-2'}, - {position = {x = 26, y = 18}, name = 'sand-2'}, - {position = {x = 26, y = 19}, name = 'sand-2'}, - {position = {x = 26, y = 20}, name = 'sand-2'}, - {position = {x = 26, y = 21}, name = 'sand-2'}, - {position = {x = 26, y = 22}, name = 'sand-2'}, - {position = {x = 26, y = 23}, name = 'sand-2'}, - {position = {x = 26, y = 24}, name = 'sand-2'}, - {position = {x = 26, y = 25}, name = 'sand-2'}, - {position = {x = 26, y = 26}, name = 'sand-2'}, - {position = {x = 26, y = 27}, name = 'sand-2'}, - {position = {x = 26, y = 28}, name = 'sand-2'}, - {position = {x = 26, y = 29}, name = 'sand-2'}, - {position = {x = 26, y = 30}, name = 'sand-2'}, - {position = {x = 26, y = 31}, name = 'sand-2'}, - {position = {x = 27, y = 0}, name = 'sand-2'}, - {position = {x = 27, y = 1}, name = 'sand-2'}, - {position = {x = 27, y = 2}, name = 'sand-2'}, - {position = {x = 27, y = 3}, name = 'sand-2'}, - {position = {x = 27, y = 4}, name = 'sand-2'}, - {position = {x = 27, y = 5}, name = 'sand-2'}, - {position = {x = 27, y = 6}, name = 'sand-2'}, - {position = {x = 27, y = 7}, name = 'sand-2'}, - {position = {x = 27, y = 8}, name = 'sand-2'}, - {position = {x = 27, y = 9}, name = 'sand-2'}, - {position = {x = 27, y = 10}, name = 'sand-3'}, - {position = {x = 27, y = 11}, name = 'sand-3'}, - {position = {x = 27, y = 12}, name = 'sand-2'}, - {position = {x = 27, y = 13}, name = 'sand-2'}, - {position = {x = 27, y = 14}, name = 'sand-2'}, - {position = {x = 27, y = 15}, name = 'sand-2'}, - {position = {x = 27, y = 16}, name = 'sand-2'}, - {position = {x = 27, y = 17}, name = 'sand-2'}, - {position = {x = 27, y = 18}, name = 'sand-2'}, - {position = {x = 27, y = 19}, name = 'sand-2'}, - {position = {x = 27, y = 20}, name = 'sand-2'}, - {position = {x = 27, y = 21}, name = 'sand-2'}, - {position = {x = 27, y = 22}, name = 'sand-2'}, - {position = {x = 27, y = 23}, name = 'sand-2'}, - {position = {x = 27, y = 24}, name = 'sand-2'}, - {position = {x = 27, y = 25}, name = 'sand-2'}, - {position = {x = 27, y = 26}, name = 'sand-2'}, - {position = {x = 27, y = 27}, name = 'sand-2'}, - {position = {x = 27, y = 28}, name = 'sand-2'}, - {position = {x = 27, y = 29}, name = 'sand-2'}, - {position = {x = 27, y = 30}, name = 'sand-2'}, - {position = {x = 27, y = 31}, name = 'sand-2'}, - {position = {x = 28, y = 0}, name = 'sand-2'}, - {position = {x = 28, y = 1}, name = 'sand-2'}, - {position = {x = 28, y = 2}, name = 'sand-2'}, - {position = {x = 28, y = 3}, name = 'sand-2'}, - {position = {x = 28, y = 4}, name = 'sand-2'}, - {position = {x = 28, y = 5}, name = 'sand-2'}, - {position = {x = 28, y = 6}, name = 'sand-2'}, - {position = {x = 28, y = 7}, name = 'sand-2'}, - {position = {x = 28, y = 8}, name = 'sand-2'}, - {position = {x = 28, y = 9}, name = 'sand-2'}, - {position = {x = 28, y = 10}, name = 'sand-2'}, - {position = {x = 28, y = 11}, name = 'sand-3'}, - {position = {x = 28, y = 12}, name = 'sand-2'}, - {position = {x = 28, y = 13}, name = 'sand-2'}, - {position = {x = 28, y = 14}, name = 'sand-2'}, - {position = {x = 28, y = 15}, name = 'sand-2'}, - {position = {x = 28, y = 16}, name = 'sand-2'}, - {position = {x = 28, y = 17}, name = 'sand-2'}, - {position = {x = 28, y = 18}, name = 'sand-2'}, - {position = {x = 28, y = 19}, name = 'sand-2'}, - {position = {x = 28, y = 20}, name = 'sand-2'}, - {position = {x = 28, y = 21}, name = 'sand-2'}, - {position = {x = 28, y = 22}, name = 'sand-2'}, - {position = {x = 28, y = 23}, name = 'sand-2'}, - {position = {x = 28, y = 24}, name = 'sand-2'}, - {position = {x = 28, y = 25}, name = 'sand-2'}, - {position = {x = 28, y = 26}, name = 'sand-2'}, - {position = {x = 28, y = 27}, name = 'sand-2'}, - {position = {x = 28, y = 28}, name = 'sand-2'}, - {position = {x = 28, y = 29}, name = 'sand-2'}, - {position = {x = 28, y = 30}, name = 'sand-1'}, - {position = {x = 28, y = 31}, name = 'sand-1'}, - {position = {x = 29, y = 0}, name = 'sand-2'}, - {position = {x = 29, y = 1}, name = 'sand-2'}, - {position = {x = 29, y = 2}, name = 'sand-2'}, - {position = {x = 29, y = 3}, name = 'sand-2'}, - {position = {x = 29, y = 4}, name = 'sand-2'}, - {position = {x = 29, y = 5}, name = 'sand-2'}, - {position = {x = 29, y = 6}, name = 'sand-2'}, - {position = {x = 29, y = 7}, name = 'sand-2'}, - {position = {x = 29, y = 8}, name = 'sand-2'}, - {position = {x = 29, y = 9}, name = 'sand-2'}, - {position = {x = 29, y = 10}, name = 'sand-2'}, - {position = {x = 29, y = 11}, name = 'sand-3'}, - {position = {x = 29, y = 12}, name = 'sand-2'}, - {position = {x = 29, y = 13}, name = 'sand-2'}, - {position = {x = 29, y = 14}, name = 'sand-2'}, - {position = {x = 29, y = 15}, name = 'sand-2'}, - {position = {x = 29, y = 16}, name = 'sand-2'}, - {position = {x = 29, y = 17}, name = 'sand-2'}, - {position = {x = 29, y = 18}, name = 'sand-2'}, - {position = {x = 29, y = 19}, name = 'sand-2'}, - {position = {x = 29, y = 20}, name = 'sand-2'}, - {position = {x = 29, y = 21}, name = 'sand-2'}, - {position = {x = 29, y = 22}, name = 'sand-2'}, - {position = {x = 29, y = 23}, name = 'sand-2'}, - {position = {x = 29, y = 24}, name = 'sand-2'}, - {position = {x = 29, y = 25}, name = 'sand-2'}, - {position = {x = 29, y = 26}, name = 'sand-2'}, - {position = {x = 29, y = 27}, name = 'sand-2'}, - {position = {x = 29, y = 28}, name = 'sand-1'}, - {position = {x = 29, y = 29}, name = 'sand-1'}, - {position = {x = 29, y = 30}, name = 'sand-1'}, - {position = {x = 29, y = 31}, name = 'sand-1'}, - {position = {x = 30, y = 0}, name = 'sand-2'}, - {position = {x = 30, y = 1}, name = 'sand-2'}, - {position = {x = 30, y = 2}, name = 'sand-2'}, - {position = {x = 30, y = 3}, name = 'sand-2'}, - {position = {x = 30, y = 4}, name = 'sand-2'}, - {position = {x = 30, y = 5}, name = 'sand-2'}, - {position = {x = 30, y = 6}, name = 'sand-2'}, - {position = {x = 30, y = 7}, name = 'sand-2'}, - {position = {x = 30, y = 8}, name = 'sand-2'}, - {position = {x = 30, y = 9}, name = 'sand-2'}, - {position = {x = 30, y = 10}, name = 'sand-2'}, - {position = {x = 30, y = 11}, name = 'sand-2'}, - {position = {x = 30, y = 12}, name = 'sand-2'}, - {position = {x = 30, y = 13}, name = 'sand-2'}, - {position = {x = 30, y = 14}, name = 'sand-2'}, - {position = {x = 30, y = 15}, name = 'sand-2'}, - {position = {x = 30, y = 16}, name = 'sand-2'}, - {position = {x = 30, y = 17}, name = 'sand-2'}, - {position = {x = 30, y = 18}, name = 'sand-2'}, - {position = {x = 30, y = 19}, name = 'sand-2'}, - {position = {x = 30, y = 20}, name = 'sand-2'}, - {position = {x = 30, y = 21}, name = 'sand-2'}, - {position = {x = 30, y = 22}, name = 'sand-2'}, - {position = {x = 30, y = 23}, name = 'sand-2'}, - {position = {x = 30, y = 24}, name = 'sand-2'}, - {position = {x = 30, y = 25}, name = 'sand-2'}, - {position = {x = 30, y = 26}, name = 'sand-1'}, - {position = {x = 30, y = 27}, name = 'sand-1'}, - {position = {x = 30, y = 28}, name = 'sand-1'}, - {position = {x = 30, y = 29}, name = 'sand-1'}, - {position = {x = 30, y = 30}, name = 'sand-1'}, - {position = {x = 30, y = 31}, name = 'sand-1'}, - {position = {x = 31, y = 0}, name = 'sand-2'}, - {position = {x = 31, y = 1}, name = 'sand-2'}, - {position = {x = 31, y = 2}, name = 'sand-2'}, - {position = {x = 31, y = 3}, name = 'sand-2'}, - {position = {x = 31, y = 4}, name = 'sand-2'}, - {position = {x = 31, y = 5}, name = 'sand-2'}, - {position = {x = 31, y = 6}, name = 'sand-2'}, - {position = {x = 31, y = 7}, name = 'sand-2'}, - {position = {x = 31, y = 8}, name = 'sand-2'}, - {position = {x = 31, y = 9}, name = 'sand-2'}, - {position = {x = 31, y = 10}, name = 'sand-2'}, - {position = {x = 31, y = 11}, name = 'sand-2'}, - {position = {x = 31, y = 12}, name = 'sand-2'}, - {position = {x = 31, y = 13}, name = 'sand-2'}, - {position = {x = 31, y = 14}, name = 'sand-2'}, - {position = {x = 31, y = 15}, name = 'sand-2'}, - {position = {x = 31, y = 16}, name = 'sand-2'}, - {position = {x = 31, y = 17}, name = 'sand-2'}, - {position = {x = 31, y = 18}, name = 'sand-2'}, - {position = {x = 31, y = 19}, name = 'sand-2'}, - {position = {x = 31, y = 20}, name = 'sand-2'}, - {position = {x = 31, y = 21}, name = 'sand-2'}, - {position = {x = 31, y = 22}, name = 'sand-2'}, - {position = {x = 31, y = 23}, name = 'sand-2'}, - {position = {x = 31, y = 24}, name = 'sand-2'}, - {position = {x = 31, y = 25}, name = 'sand-2'}, - {position = {x = 31, y = 26}, name = 'sand-1'}, - {position = {x = 31, y = 27}, name = 'sand-1'}, - {position = {x = 31, y = 28}, name = 'sand-1'}, - {position = {x = 31, y = 29}, name = 'sand-1'}, - {position = {x = 31, y = 30}, name = 'sand-1'}, - {position = {x = 31, y = 31}, name = 'sand-1'} + { position = { x = 0, y = 0 }, name = 'sand-2' }, + { position = { x = 0, y = 1 }, name = 'sand-2' }, + { position = { x = 0, y = 2 }, name = 'sand-2' }, + { position = { x = 0, y = 3 }, name = 'sand-2' }, + { position = { x = 0, y = 4 }, name = 'sand-2' }, + { position = { x = 0, y = 5 }, name = 'sand-2' }, + { position = { x = 0, y = 6 }, name = 'sand-2' }, + { position = { x = 0, y = 7 }, name = 'sand-2' }, + { position = { x = 0, y = 8 }, name = 'sand-2' }, + { position = { x = 0, y = 9 }, name = 'sand-2' }, + { position = { x = 0, y = 10 }, name = 'sand-2' }, + { position = { x = 0, y = 11 }, name = 'sand-2' }, + { position = { x = 0, y = 12 }, name = 'sand-2' }, + { position = { x = 0, y = 13 }, name = 'sand-2' }, + { position = { x = 0, y = 14 }, name = 'sand-2' }, + { position = { x = 0, y = 15 }, name = 'sand-2' }, + { position = { x = 0, y = 16 }, name = 'sand-2' }, + { position = { x = 0, y = 17 }, name = 'sand-2' }, + { position = { x = 0, y = 18 }, name = 'sand-2' }, + { position = { x = 0, y = 19 }, name = 'sand-2' }, + { position = { x = 0, y = 20 }, name = 'sand-2' }, + { position = { x = 0, y = 21 }, name = 'sand-2' }, + { position = { x = 0, y = 22 }, name = 'sand-2' }, + { position = { x = 0, y = 23 }, name = 'sand-2' }, + { position = { x = 0, y = 24 }, name = 'sand-2' }, + { position = { x = 0, y = 25 }, name = 'sand-2' }, + { position = { x = 0, y = 26 }, name = 'sand-2' }, + { position = { x = 0, y = 27 }, name = 'sand-2' }, + { position = { x = 0, y = 28 }, name = 'sand-2' }, + { position = { x = 0, y = 29 }, name = 'sand-2' }, + { position = { x = 0, y = 30 }, name = 'sand-2' }, + { position = { x = 0, y = 31 }, name = 'sand-2' }, + { position = { x = 1, y = 0 }, name = 'sand-2' }, + { position = { x = 1, y = 1 }, name = 'sand-2' }, + { position = { x = 1, y = 2 }, name = 'sand-2' }, + { position = { x = 1, y = 3 }, name = 'sand-2' }, + { position = { x = 1, y = 4 }, name = 'sand-2' }, + { position = { x = 1, y = 5 }, name = 'sand-2' }, + { position = { x = 1, y = 6 }, name = 'sand-2' }, + { position = { x = 1, y = 7 }, name = 'sand-2' }, + { position = { x = 1, y = 8 }, name = 'sand-2' }, + { position = { x = 1, y = 9 }, name = 'sand-2' }, + { position = { x = 1, y = 10 }, name = 'sand-2' }, + { position = { x = 1, y = 11 }, name = 'sand-2' }, + { position = { x = 1, y = 12 }, name = 'sand-2' }, + { position = { x = 1, y = 13 }, name = 'sand-2' }, + { position = { x = 1, y = 14 }, name = 'sand-2' }, + { position = { x = 1, y = 15 }, name = 'sand-2' }, + { position = { x = 1, y = 16 }, name = 'sand-2' }, + { position = { x = 1, y = 17 }, name = 'sand-2' }, + { position = { x = 1, y = 18 }, name = 'sand-2' }, + { position = { x = 1, y = 19 }, name = 'sand-2' }, + { position = { x = 1, y = 20 }, name = 'sand-2' }, + { position = { x = 1, y = 21 }, name = 'sand-2' }, + { position = { x = 1, y = 22 }, name = 'sand-2' }, + { position = { x = 1, y = 23 }, name = 'sand-2' }, + { position = { x = 1, y = 24 }, name = 'sand-2' }, + { position = { x = 1, y = 25 }, name = 'sand-2' }, + { position = { x = 1, y = 26 }, name = 'sand-2' }, + { position = { x = 1, y = 27 }, name = 'sand-2' }, + { position = { x = 1, y = 28 }, name = 'sand-2' }, + { position = { x = 1, y = 29 }, name = 'sand-2' }, + { position = { x = 1, y = 30 }, name = 'sand-2' }, + { position = { x = 1, y = 31 }, name = 'sand-2' }, + { position = { x = 2, y = 0 }, name = 'sand-2' }, + { position = { x = 2, y = 1 }, name = 'sand-2' }, + { position = { x = 2, y = 2 }, name = 'sand-2' }, + { position = { x = 2, y = 3 }, name = 'sand-2' }, + { position = { x = 2, y = 4 }, name = 'sand-2' }, + { position = { x = 2, y = 5 }, name = 'sand-2' }, + { position = { x = 2, y = 6 }, name = 'sand-2' }, + { position = { x = 2, y = 7 }, name = 'sand-2' }, + { position = { x = 2, y = 8 }, name = 'sand-2' }, + { position = { x = 2, y = 9 }, name = 'sand-2' }, + { position = { x = 2, y = 10 }, name = 'sand-2' }, + { position = { x = 2, y = 11 }, name = 'sand-2' }, + { position = { x = 2, y = 12 }, name = 'sand-2' }, + { position = { x = 2, y = 13 }, name = 'sand-2' }, + { position = { x = 2, y = 14 }, name = 'sand-2' }, + { position = { x = 2, y = 15 }, name = 'sand-2' }, + { position = { x = 2, y = 16 }, name = 'sand-2' }, + { position = { x = 2, y = 17 }, name = 'sand-2' }, + { position = { x = 2, y = 18 }, name = 'sand-2' }, + { position = { x = 2, y = 19 }, name = 'sand-2' }, + { position = { x = 2, y = 20 }, name = 'sand-2' }, + { position = { x = 2, y = 21 }, name = 'sand-2' }, + { position = { x = 2, y = 22 }, name = 'sand-2' }, + { position = { x = 2, y = 23 }, name = 'sand-2' }, + { position = { x = 2, y = 24 }, name = 'sand-2' }, + { position = { x = 2, y = 25 }, name = 'sand-2' }, + { position = { x = 2, y = 26 }, name = 'sand-2' }, + { position = { x = 2, y = 27 }, name = 'sand-2' }, + { position = { x = 2, y = 28 }, name = 'sand-2' }, + { position = { x = 2, y = 29 }, name = 'sand-2' }, + { position = { x = 2, y = 30 }, name = 'sand-2' }, + { position = { x = 2, y = 31 }, name = 'sand-2' }, + { position = { x = 3, y = 0 }, name = 'sand-2' }, + { position = { x = 3, y = 1 }, name = 'sand-2' }, + { position = { x = 3, y = 2 }, name = 'sand-2' }, + { position = { x = 3, y = 3 }, name = 'sand-2' }, + { position = { x = 3, y = 4 }, name = 'sand-2' }, + { position = { x = 3, y = 5 }, name = 'sand-2' }, + { position = { x = 3, y = 6 }, name = 'sand-2' }, + { position = { x = 3, y = 7 }, name = 'sand-2' }, + { position = { x = 3, y = 8 }, name = 'sand-2' }, + { position = { x = 3, y = 9 }, name = 'sand-2' }, + { position = { x = 3, y = 10 }, name = 'sand-2' }, + { position = { x = 3, y = 11 }, name = 'sand-2' }, + { position = { x = 3, y = 12 }, name = 'sand-2' }, + { position = { x = 3, y = 13 }, name = 'sand-2' }, + { position = { x = 3, y = 14 }, name = 'sand-2' }, + { position = { x = 3, y = 15 }, name = 'sand-2' }, + { position = { x = 3, y = 16 }, name = 'sand-2' }, + { position = { x = 3, y = 17 }, name = 'sand-2' }, + { position = { x = 3, y = 18 }, name = 'sand-2' }, + { position = { x = 3, y = 19 }, name = 'sand-2' }, + { position = { x = 3, y = 20 }, name = 'sand-2' }, + { position = { x = 3, y = 21 }, name = 'sand-2' }, + { position = { x = 3, y = 22 }, name = 'sand-2' }, + { position = { x = 3, y = 23 }, name = 'sand-2' }, + { position = { x = 3, y = 24 }, name = 'sand-2' }, + { position = { x = 3, y = 25 }, name = 'sand-2' }, + { position = { x = 3, y = 26 }, name = 'sand-2' }, + { position = { x = 3, y = 27 }, name = 'sand-2' }, + { position = { x = 3, y = 28 }, name = 'sand-2' }, + { position = { x = 3, y = 29 }, name = 'sand-2' }, + { position = { x = 3, y = 30 }, name = 'sand-2' }, + { position = { x = 3, y = 31 }, name = 'sand-2' }, + { position = { x = 4, y = 0 }, name = 'sand-2' }, + { position = { x = 4, y = 1 }, name = 'sand-2' }, + { position = { x = 4, y = 2 }, name = 'sand-2' }, + { position = { x = 4, y = 3 }, name = 'sand-2' }, + { position = { x = 4, y = 4 }, name = 'sand-2' }, + { position = { x = 4, y = 5 }, name = 'sand-2' }, + { position = { x = 4, y = 6 }, name = 'sand-2' }, + { position = { x = 4, y = 7 }, name = 'sand-2' }, + { position = { x = 4, y = 8 }, name = 'sand-2' }, + { position = { x = 4, y = 9 }, name = 'sand-2' }, + { position = { x = 4, y = 10 }, name = 'sand-2' }, + { position = { x = 4, y = 11 }, name = 'sand-2' }, + { position = { x = 4, y = 12 }, name = 'sand-2' }, + { position = { x = 4, y = 13 }, name = 'sand-2' }, + { position = { x = 4, y = 14 }, name = 'sand-2' }, + { position = { x = 4, y = 15 }, name = 'sand-2' }, + { position = { x = 4, y = 16 }, name = 'sand-2' }, + { position = { x = 4, y = 17 }, name = 'sand-2' }, + { position = { x = 4, y = 18 }, name = 'sand-2' }, + { position = { x = 4, y = 19 }, name = 'sand-2' }, + { position = { x = 4, y = 20 }, name = 'sand-2' }, + { position = { x = 4, y = 21 }, name = 'sand-2' }, + { position = { x = 4, y = 22 }, name = 'sand-2' }, + { position = { x = 4, y = 23 }, name = 'sand-2' }, + { position = { x = 4, y = 24 }, name = 'sand-2' }, + { position = { x = 4, y = 25 }, name = 'sand-2' }, + { position = { x = 4, y = 26 }, name = 'sand-2' }, + { position = { x = 4, y = 27 }, name = 'sand-2' }, + { position = { x = 4, y = 28 }, name = 'sand-2' }, + { position = { x = 4, y = 29 }, name = 'sand-2' }, + { position = { x = 4, y = 30 }, name = 'sand-2' }, + { position = { x = 4, y = 31 }, name = 'sand-2' }, + { position = { x = 5, y = 0 }, name = 'sand-2' }, + { position = { x = 5, y = 1 }, name = 'sand-2' }, + { position = { x = 5, y = 2 }, name = 'sand-2' }, + { position = { x = 5, y = 3 }, name = 'sand-2' }, + { position = { x = 5, y = 4 }, name = 'sand-2' }, + { position = { x = 5, y = 5 }, name = 'sand-2' }, + { position = { x = 5, y = 6 }, name = 'sand-2' }, + { position = { x = 5, y = 7 }, name = 'sand-2' }, + { position = { x = 5, y = 8 }, name = 'sand-2' }, + { position = { x = 5, y = 9 }, name = 'sand-2' }, + { position = { x = 5, y = 10 }, name = 'sand-2' }, + { position = { x = 5, y = 11 }, name = 'sand-2' }, + { position = { x = 5, y = 12 }, name = 'sand-2' }, + { position = { x = 5, y = 13 }, name = 'sand-2' }, + { position = { x = 5, y = 14 }, name = 'sand-2' }, + { position = { x = 5, y = 15 }, name = 'sand-2' }, + { position = { x = 5, y = 16 }, name = 'sand-2' }, + { position = { x = 5, y = 17 }, name = 'sand-2' }, + { position = { x = 5, y = 18 }, name = 'sand-2' }, + { position = { x = 5, y = 19 }, name = 'sand-2' }, + { position = { x = 5, y = 20 }, name = 'sand-2' }, + { position = { x = 5, y = 21 }, name = 'sand-2' }, + { position = { x = 5, y = 22 }, name = 'sand-2' }, + { position = { x = 5, y = 23 }, name = 'sand-2' }, + { position = { x = 5, y = 24 }, name = 'sand-2' }, + { position = { x = 5, y = 25 }, name = 'sand-2' }, + { position = { x = 5, y = 26 }, name = 'sand-2' }, + { position = { x = 5, y = 27 }, name = 'sand-2' }, + { position = { x = 5, y = 28 }, name = 'sand-2' }, + { position = { x = 5, y = 29 }, name = 'sand-2' }, + { position = { x = 5, y = 30 }, name = 'sand-2' }, + { position = { x = 5, y = 31 }, name = 'sand-2' }, + { position = { x = 6, y = 0 }, name = 'sand-2' }, + { position = { x = 6, y = 1 }, name = 'sand-2' }, + { position = { x = 6, y = 2 }, name = 'sand-2' }, + { position = { x = 6, y = 3 }, name = 'sand-2' }, + { position = { x = 6, y = 4 }, name = 'sand-2' }, + { position = { x = 6, y = 5 }, name = 'sand-2' }, + { position = { x = 6, y = 6 }, name = 'sand-2' }, + { position = { x = 6, y = 7 }, name = 'sand-2' }, + { position = { x = 6, y = 8 }, name = 'sand-2' }, + { position = { x = 6, y = 9 }, name = 'sand-2' }, + { position = { x = 6, y = 10 }, name = 'sand-2' }, + { position = { x = 6, y = 11 }, name = 'sand-2' }, + { position = { x = 6, y = 12 }, name = 'sand-2' }, + { position = { x = 6, y = 13 }, name = 'sand-2' }, + { position = { x = 6, y = 14 }, name = 'sand-2' }, + { position = { x = 6, y = 15 }, name = 'sand-2' }, + { position = { x = 6, y = 16 }, name = 'sand-2' }, + { position = { x = 6, y = 17 }, name = 'sand-2' }, + { position = { x = 6, y = 18 }, name = 'sand-2' }, + { position = { x = 6, y = 19 }, name = 'sand-2' }, + { position = { x = 6, y = 20 }, name = 'sand-2' }, + { position = { x = 6, y = 21 }, name = 'sand-2' }, + { position = { x = 6, y = 22 }, name = 'sand-2' }, + { position = { x = 6, y = 23 }, name = 'sand-2' }, + { position = { x = 6, y = 24 }, name = 'sand-2' }, + { position = { x = 6, y = 25 }, name = 'sand-2' }, + { position = { x = 6, y = 26 }, name = 'sand-2' }, + { position = { x = 6, y = 27 }, name = 'sand-2' }, + { position = { x = 6, y = 28 }, name = 'sand-2' }, + { position = { x = 6, y = 29 }, name = 'sand-2' }, + { position = { x = 6, y = 30 }, name = 'sand-2' }, + { position = { x = 6, y = 31 }, name = 'sand-2' }, + { position = { x = 7, y = 0 }, name = 'sand-2' }, + { position = { x = 7, y = 1 }, name = 'sand-2' }, + { position = { x = 7, y = 2 }, name = 'sand-2' }, + { position = { x = 7, y = 3 }, name = 'sand-2' }, + { position = { x = 7, y = 4 }, name = 'sand-2' }, + { position = { x = 7, y = 5 }, name = 'sand-2' }, + { position = { x = 7, y = 6 }, name = 'sand-2' }, + { position = { x = 7, y = 7 }, name = 'sand-2' }, + { position = { x = 7, y = 8 }, name = 'sand-2' }, + { position = { x = 7, y = 9 }, name = 'sand-2' }, + { position = { x = 7, y = 10 }, name = 'sand-2' }, + { position = { x = 7, y = 11 }, name = 'sand-2' }, + { position = { x = 7, y = 12 }, name = 'sand-2' }, + { position = { x = 7, y = 13 }, name = 'sand-2' }, + { position = { x = 7, y = 14 }, name = 'sand-2' }, + { position = { x = 7, y = 15 }, name = 'sand-2' }, + { position = { x = 7, y = 16 }, name = 'sand-2' }, + { position = { x = 7, y = 17 }, name = 'sand-2' }, + { position = { x = 7, y = 18 }, name = 'sand-2' }, + { position = { x = 7, y = 19 }, name = 'sand-2' }, + { position = { x = 7, y = 20 }, name = 'sand-2' }, + { position = { x = 7, y = 21 }, name = 'sand-2' }, + { position = { x = 7, y = 22 }, name = 'sand-2' }, + { position = { x = 7, y = 23 }, name = 'sand-2' }, + { position = { x = 7, y = 24 }, name = 'sand-2' }, + { position = { x = 7, y = 25 }, name = 'sand-2' }, + { position = { x = 7, y = 26 }, name = 'sand-2' }, + { position = { x = 7, y = 27 }, name = 'sand-2' }, + { position = { x = 7, y = 28 }, name = 'sand-2' }, + { position = { x = 7, y = 29 }, name = 'sand-2' }, + { position = { x = 7, y = 30 }, name = 'sand-2' }, + { position = { x = 7, y = 31 }, name = 'sand-2' }, + { position = { x = 8, y = 0 }, name = 'sand-2' }, + { position = { x = 8, y = 1 }, name = 'sand-2' }, + { position = { x = 8, y = 2 }, name = 'sand-2' }, + { position = { x = 8, y = 3 }, name = 'sand-2' }, + { position = { x = 8, y = 4 }, name = 'sand-2' }, + { position = { x = 8, y = 5 }, name = 'sand-2' }, + { position = { x = 8, y = 6 }, name = 'sand-2' }, + { position = { x = 8, y = 7 }, name = 'sand-2' }, + { position = { x = 8, y = 8 }, name = 'sand-2' }, + { position = { x = 8, y = 9 }, name = 'sand-2' }, + { position = { x = 8, y = 10 }, name = 'sand-2' }, + { position = { x = 8, y = 11 }, name = 'sand-2' }, + { position = { x = 8, y = 12 }, name = 'sand-2' }, + { position = { x = 8, y = 13 }, name = 'sand-2' }, + { position = { x = 8, y = 14 }, name = 'sand-2' }, + { position = { x = 8, y = 15 }, name = 'sand-2' }, + { position = { x = 8, y = 16 }, name = 'sand-2' }, + { position = { x = 8, y = 17 }, name = 'sand-2' }, + { position = { x = 8, y = 18 }, name = 'sand-2' }, + { position = { x = 8, y = 19 }, name = 'sand-2' }, + { position = { x = 8, y = 20 }, name = 'sand-2' }, + { position = { x = 8, y = 21 }, name = 'sand-2' }, + { position = { x = 8, y = 22 }, name = 'sand-2' }, + { position = { x = 8, y = 23 }, name = 'sand-2' }, + { position = { x = 8, y = 24 }, name = 'sand-2' }, + { position = { x = 8, y = 25 }, name = 'sand-2' }, + { position = { x = 8, y = 26 }, name = 'sand-2' }, + { position = { x = 8, y = 27 }, name = 'sand-2' }, + { position = { x = 8, y = 28 }, name = 'sand-2' }, + { position = { x = 8, y = 29 }, name = 'sand-2' }, + { position = { x = 8, y = 30 }, name = 'sand-2' }, + { position = { x = 8, y = 31 }, name = 'sand-2' }, + { position = { x = 9, y = 0 }, name = 'sand-2' }, + { position = { x = 9, y = 1 }, name = 'sand-2' }, + { position = { x = 9, y = 2 }, name = 'sand-2' }, + { position = { x = 9, y = 3 }, name = 'sand-2' }, + { position = { x = 9, y = 4 }, name = 'sand-2' }, + { position = { x = 9, y = 5 }, name = 'sand-2' }, + { position = { x = 9, y = 6 }, name = 'sand-2' }, + { position = { x = 9, y = 7 }, name = 'sand-2' }, + { position = { x = 9, y = 8 }, name = 'sand-2' }, + { position = { x = 9, y = 9 }, name = 'sand-2' }, + { position = { x = 9, y = 10 }, name = 'sand-2' }, + { position = { x = 9, y = 11 }, name = 'sand-2' }, + { position = { x = 9, y = 12 }, name = 'sand-2' }, + { position = { x = 9, y = 13 }, name = 'sand-2' }, + { position = { x = 9, y = 14 }, name = 'sand-2' }, + { position = { x = 9, y = 15 }, name = 'sand-2' }, + { position = { x = 9, y = 16 }, name = 'sand-2' }, + { position = { x = 9, y = 17 }, name = 'sand-2' }, + { position = { x = 9, y = 18 }, name = 'sand-2' }, + { position = { x = 9, y = 19 }, name = 'sand-2' }, + { position = { x = 9, y = 20 }, name = 'sand-2' }, + { position = { x = 9, y = 21 }, name = 'sand-2' }, + { position = { x = 9, y = 22 }, name = 'concrete' }, + { position = { x = 9, y = 23 }, name = 'concrete' }, + { position = { x = 9, y = 24 }, name = 'concrete' }, + { position = { x = 9, y = 25 }, name = 'stone-path' }, + { position = { x = 9, y = 26 }, name = 'stone-path' }, + { position = { x = 9, y = 27 }, name = 'stone-path' }, + { position = { x = 9, y = 28 }, name = 'sand-2' }, + { position = { x = 9, y = 29 }, name = 'sand-2' }, + { position = { x = 9, y = 30 }, name = 'sand-2' }, + { position = { x = 9, y = 31 }, name = 'sand-2' }, + { position = { x = 10, y = 0 }, name = 'sand-2' }, + { position = { x = 10, y = 1 }, name = 'sand-2' }, + { position = { x = 10, y = 2 }, name = 'sand-2' }, + { position = { x = 10, y = 3 }, name = 'sand-2' }, + { position = { x = 10, y = 4 }, name = 'sand-2' }, + { position = { x = 10, y = 5 }, name = 'sand-2' }, + { position = { x = 10, y = 6 }, name = 'sand-2' }, + { position = { x = 10, y = 7 }, name = 'sand-2' }, + { position = { x = 10, y = 8 }, name = 'sand-2' }, + { position = { x = 10, y = 9 }, name = 'sand-2' }, + { position = { x = 10, y = 10 }, name = 'sand-2' }, + { position = { x = 10, y = 11 }, name = 'sand-2' }, + { position = { x = 10, y = 12 }, name = 'sand-2' }, + { position = { x = 10, y = 13 }, name = 'sand-2' }, + { position = { x = 10, y = 14 }, name = 'sand-2' }, + { position = { x = 10, y = 15 }, name = 'sand-2' }, + { position = { x = 10, y = 16 }, name = 'sand-2' }, + { position = { x = 10, y = 17 }, name = 'sand-2' }, + { position = { x = 10, y = 18 }, name = 'sand-2' }, + { position = { x = 10, y = 19 }, name = 'sand-2' }, + { position = { x = 10, y = 20 }, name = 'sand-2' }, + { position = { x = 10, y = 21 }, name = 'sand-2' }, + { position = { x = 10, y = 22 }, name = 'concrete' }, + { position = { x = 10, y = 23 }, name = 'concrete' }, + { position = { x = 10, y = 24 }, name = 'concrete' }, + { position = { x = 10, y = 25 }, name = 'stone-path' }, + { position = { x = 10, y = 26 }, name = 'stone-path' }, + { position = { x = 10, y = 27 }, name = 'stone-path' }, + { position = { x = 10, y = 28 }, name = 'sand-2' }, + { position = { x = 10, y = 29 }, name = 'sand-2' }, + { position = { x = 10, y = 30 }, name = 'sand-2' }, + { position = { x = 10, y = 31 }, name = 'sand-2' }, + { position = { x = 11, y = 0 }, name = 'sand-2' }, + { position = { x = 11, y = 1 }, name = 'sand-2' }, + { position = { x = 11, y = 2 }, name = 'sand-2' }, + { position = { x = 11, y = 3 }, name = 'sand-2' }, + { position = { x = 11, y = 4 }, name = 'sand-2' }, + { position = { x = 11, y = 5 }, name = 'sand-2' }, + { position = { x = 11, y = 6 }, name = 'sand-2' }, + { position = { x = 11, y = 7 }, name = 'sand-2' }, + { position = { x = 11, y = 8 }, name = 'sand-2' }, + { position = { x = 11, y = 9 }, name = 'sand-2' }, + { position = { x = 11, y = 10 }, name = 'sand-2' }, + { position = { x = 11, y = 11 }, name = 'sand-2' }, + { position = { x = 11, y = 12 }, name = 'sand-2' }, + { position = { x = 11, y = 13 }, name = 'sand-2' }, + { position = { x = 11, y = 14 }, name = 'sand-2' }, + { position = { x = 11, y = 15 }, name = 'sand-2' }, + { position = { x = 11, y = 16 }, name = 'sand-2' }, + { position = { x = 11, y = 17 }, name = 'sand-2' }, + { position = { x = 11, y = 18 }, name = 'sand-2' }, + { position = { x = 11, y = 19 }, name = 'sand-2' }, + { position = { x = 11, y = 20 }, name = 'sand-2' }, + { position = { x = 11, y = 21 }, name = 'sand-2' }, + { position = { x = 11, y = 22 }, name = 'concrete' }, + { position = { x = 11, y = 23 }, name = 'concrete' }, + { position = { x = 11, y = 24 }, name = 'concrete' }, + { position = { x = 11, y = 25 }, name = 'stone-path' }, + { position = { x = 11, y = 26 }, name = 'stone-path' }, + { position = { x = 11, y = 27 }, name = 'stone-path' }, + { position = { x = 11, y = 28 }, name = 'sand-2' }, + { position = { x = 11, y = 29 }, name = 'stone-path' }, + { position = { x = 11, y = 30 }, name = 'stone-path' }, + { position = { x = 11, y = 31 }, name = 'stone-path' }, + { position = { x = 12, y = 0 }, name = 'sand-2' }, + { position = { x = 12, y = 1 }, name = 'sand-2' }, + { position = { x = 12, y = 2 }, name = 'sand-2' }, + { position = { x = 12, y = 3 }, name = 'sand-2' }, + { position = { x = 12, y = 4 }, name = 'sand-2' }, + { position = { x = 12, y = 5 }, name = 'sand-2' }, + { position = { x = 12, y = 6 }, name = 'sand-2' }, + { position = { x = 12, y = 7 }, name = 'sand-2' }, + { position = { x = 12, y = 8 }, name = 'sand-2' }, + { position = { x = 12, y = 9 }, name = 'sand-2' }, + { position = { x = 12, y = 10 }, name = 'sand-2' }, + { position = { x = 12, y = 11 }, name = 'sand-2' }, + { position = { x = 12, y = 12 }, name = 'sand-2' }, + { position = { x = 12, y = 13 }, name = 'sand-2' }, + { position = { x = 12, y = 14 }, name = 'sand-2' }, + { position = { x = 12, y = 15 }, name = 'sand-2' }, + { position = { x = 12, y = 16 }, name = 'sand-2' }, + { position = { x = 12, y = 17 }, name = 'sand-2' }, + { position = { x = 12, y = 18 }, name = 'sand-2' }, + { position = { x = 12, y = 19 }, name = 'sand-2' }, + { position = { x = 12, y = 20 }, name = 'sand-2' }, + { position = { x = 12, y = 21 }, name = 'sand-2' }, + { position = { x = 12, y = 22 }, name = 'sand-2' }, + { position = { x = 12, y = 23 }, name = 'sand-2' }, + { position = { x = 12, y = 24 }, name = 'sand-2' }, + { position = { x = 12, y = 25 }, name = 'sand-2' }, + { position = { x = 12, y = 26 }, name = 'refined-concrete' }, + { position = { x = 12, y = 27 }, name = 'refined-concrete' }, + { position = { x = 12, y = 28 }, name = 'refined-concrete' }, + { position = { x = 12, y = 29 }, name = 'stone-path' }, + { position = { x = 12, y = 30 }, name = 'stone-path' }, + { position = { x = 12, y = 31 }, name = 'stone-path' }, + { position = { x = 13, y = 0 }, name = 'sand-2' }, + { position = { x = 13, y = 1 }, name = 'sand-2' }, + { position = { x = 13, y = 2 }, name = 'sand-2' }, + { position = { x = 13, y = 3 }, name = 'sand-2' }, + { position = { x = 13, y = 4 }, name = 'sand-2' }, + { position = { x = 13, y = 5 }, name = 'sand-2' }, + { position = { x = 13, y = 6 }, name = 'sand-2' }, + { position = { x = 13, y = 7 }, name = 'sand-2' }, + { position = { x = 13, y = 8 }, name = 'sand-2' }, + { position = { x = 13, y = 9 }, name = 'sand-2' }, + { position = { x = 13, y = 10 }, name = 'sand-2' }, + { position = { x = 13, y = 11 }, name = 'sand-2' }, + { position = { x = 13, y = 12 }, name = 'sand-2' }, + { position = { x = 13, y = 13 }, name = 'sand-2' }, + { position = { x = 13, y = 14 }, name = 'sand-2' }, + { position = { x = 13, y = 15 }, name = 'sand-2' }, + { position = { x = 13, y = 16 }, name = 'sand-2' }, + { position = { x = 13, y = 17 }, name = 'sand-2' }, + { position = { x = 13, y = 18 }, name = 'sand-2' }, + { position = { x = 13, y = 19 }, name = 'sand-2' }, + { position = { x = 13, y = 20 }, name = 'sand-2' }, + { position = { x = 13, y = 21 }, name = 'sand-2' }, + { position = { x = 13, y = 22 }, name = 'sand-2' }, + { position = { x = 13, y = 23 }, name = 'sand-2' }, + { position = { x = 13, y = 24 }, name = 'sand-2' }, + { position = { x = 13, y = 25 }, name = 'stone-path' }, + { position = { x = 13, y = 26 }, name = 'stone-path' }, + { position = { x = 13, y = 27 }, name = 'stone-path' }, + { position = { x = 13, y = 28 }, name = 'refined-concrete' }, + { position = { x = 13, y = 29 }, name = 'stone-path' }, + { position = { x = 13, y = 30 }, name = 'stone-path' }, + { position = { x = 13, y = 31 }, name = 'stone-path' }, + { position = { x = 14, y = 0 }, name = 'sand-2' }, + { position = { x = 14, y = 1 }, name = 'sand-2' }, + { position = { x = 14, y = 2 }, name = 'sand-2' }, + { position = { x = 14, y = 3 }, name = 'sand-2' }, + { position = { x = 14, y = 4 }, name = 'sand-2' }, + { position = { x = 14, y = 5 }, name = 'sand-2' }, + { position = { x = 14, y = 6 }, name = 'sand-2' }, + { position = { x = 14, y = 7 }, name = 'sand-2' }, + { position = { x = 14, y = 8 }, name = 'sand-2' }, + { position = { x = 14, y = 9 }, name = 'sand-2' }, + { position = { x = 14, y = 10 }, name = 'sand-2' }, + { position = { x = 14, y = 11 }, name = 'sand-2' }, + { position = { x = 14, y = 12 }, name = 'sand-2' }, + { position = { x = 14, y = 13 }, name = 'sand-2' }, + { position = { x = 14, y = 14 }, name = 'sand-2' }, + { position = { x = 14, y = 15 }, name = 'sand-2' }, + { position = { x = 14, y = 16 }, name = 'sand-2' }, + { position = { x = 14, y = 17 }, name = 'sand-2' }, + { position = { x = 14, y = 18 }, name = 'sand-2' }, + { position = { x = 14, y = 19 }, name = 'sand-2' }, + { position = { x = 14, y = 20 }, name = 'sand-2' }, + { position = { x = 14, y = 21 }, name = 'sand-2' }, + { position = { x = 14, y = 22 }, name = 'sand-2' }, + { position = { x = 14, y = 23 }, name = 'sand-2' }, + { position = { x = 14, y = 24 }, name = 'sand-2' }, + { position = { x = 14, y = 25 }, name = 'stone-path' }, + { position = { x = 14, y = 26 }, name = 'stone-path' }, + { position = { x = 14, y = 27 }, name = 'stone-path' }, + { position = { x = 14, y = 28 }, name = 'refined-concrete' }, + { position = { x = 14, y = 29 }, name = 'refined-concrete' }, + { position = { x = 14, y = 30 }, name = 'refined-concrete' }, + { position = { x = 14, y = 31 }, name = 'refined-concrete' }, + { position = { x = 15, y = 0 }, name = 'sand-2' }, + { position = { x = 15, y = 1 }, name = 'sand-2' }, + { position = { x = 15, y = 2 }, name = 'sand-2' }, + { position = { x = 15, y = 3 }, name = 'sand-2' }, + { position = { x = 15, y = 4 }, name = 'sand-2' }, + { position = { x = 15, y = 5 }, name = 'sand-2' }, + { position = { x = 15, y = 6 }, name = 'sand-2' }, + { position = { x = 15, y = 7 }, name = 'sand-2' }, + { position = { x = 15, y = 8 }, name = 'sand-2' }, + { position = { x = 15, y = 9 }, name = 'sand-2' }, + { position = { x = 15, y = 10 }, name = 'sand-2' }, + { position = { x = 15, y = 11 }, name = 'sand-2' }, + { position = { x = 15, y = 12 }, name = 'sand-2' }, + { position = { x = 15, y = 13 }, name = 'sand-2' }, + { position = { x = 15, y = 14 }, name = 'sand-2' }, + { position = { x = 15, y = 15 }, name = 'sand-2' }, + { position = { x = 15, y = 16 }, name = 'sand-2' }, + { position = { x = 15, y = 17 }, name = 'sand-2' }, + { position = { x = 15, y = 18 }, name = 'sand-2' }, + { position = { x = 15, y = 19 }, name = 'sand-2' }, + { position = { x = 15, y = 20 }, name = 'sand-2' }, + { position = { x = 15, y = 21 }, name = 'sand-2' }, + { position = { x = 15, y = 22 }, name = 'sand-2' }, + { position = { x = 15, y = 23 }, name = 'sand-2' }, + { position = { x = 15, y = 24 }, name = 'sand-2' }, + { position = { x = 15, y = 25 }, name = 'stone-path' }, + { position = { x = 15, y = 26 }, name = 'stone-path' }, + { position = { x = 15, y = 27 }, name = 'stone-path' }, + { position = { x = 15, y = 28 }, name = 'refined-concrete' }, + { position = { x = 15, y = 29 }, name = 'refined-concrete' }, + { position = { x = 15, y = 30 }, name = 'refined-concrete' }, + { position = { x = 15, y = 31 }, name = 'refined-concrete' }, + { position = { x = 16, y = 0 }, name = 'sand-2' }, + { position = { x = 16, y = 1 }, name = 'sand-2' }, + { position = { x = 16, y = 2 }, name = 'sand-2' }, + { position = { x = 16, y = 3 }, name = 'sand-2' }, + { position = { x = 16, y = 4 }, name = 'sand-2' }, + { position = { x = 16, y = 5 }, name = 'sand-2' }, + { position = { x = 16, y = 6 }, name = 'sand-2' }, + { position = { x = 16, y = 7 }, name = 'sand-2' }, + { position = { x = 16, y = 8 }, name = 'sand-2' }, + { position = { x = 16, y = 9 }, name = 'sand-2' }, + { position = { x = 16, y = 10 }, name = 'sand-2' }, + { position = { x = 16, y = 11 }, name = 'sand-2' }, + { position = { x = 16, y = 12 }, name = 'sand-2' }, + { position = { x = 16, y = 13 }, name = 'sand-2' }, + { position = { x = 16, y = 14 }, name = 'sand-2' }, + { position = { x = 16, y = 15 }, name = 'sand-2' }, + { position = { x = 16, y = 16 }, name = 'sand-2' }, + { position = { x = 16, y = 17 }, name = 'sand-2' }, + { position = { x = 16, y = 18 }, name = 'sand-2' }, + { position = { x = 16, y = 19 }, name = 'sand-2' }, + { position = { x = 16, y = 20 }, name = 'sand-2' }, + { position = { x = 16, y = 21 }, name = 'sand-2' }, + { position = { x = 16, y = 22 }, name = 'sand-2' }, + { position = { x = 16, y = 23 }, name = 'concrete' }, + { position = { x = 16, y = 24 }, name = 'concrete' }, + { position = { x = 16, y = 25 }, name = 'concrete' }, + { position = { x = 16, y = 26 }, name = 'refined-concrete' }, + { position = { x = 16, y = 27 }, name = 'refined-concrete' }, + { position = { x = 16, y = 28 }, name = 'refined-concrete' }, + { position = { x = 16, y = 29 }, name = 'concrete' }, + { position = { x = 16, y = 30 }, name = 'concrete' }, + { position = { x = 16, y = 31 }, name = 'concrete' }, + { position = { x = 17, y = 0 }, name = 'sand-2' }, + { position = { x = 17, y = 1 }, name = 'sand-2' }, + { position = { x = 17, y = 2 }, name = 'sand-2' }, + { position = { x = 17, y = 3 }, name = 'sand-2' }, + { position = { x = 17, y = 4 }, name = 'sand-2' }, + { position = { x = 17, y = 5 }, name = 'sand-2' }, + { position = { x = 17, y = 6 }, name = 'sand-2' }, + { position = { x = 17, y = 7 }, name = 'sand-2' }, + { position = { x = 17, y = 8 }, name = 'sand-2' }, + { position = { x = 17, y = 9 }, name = 'sand-2' }, + { position = { x = 17, y = 10 }, name = 'sand-2' }, + { position = { x = 17, y = 11 }, name = 'sand-2' }, + { position = { x = 17, y = 12 }, name = 'sand-2' }, + { position = { x = 17, y = 13 }, name = 'sand-2' }, + { position = { x = 17, y = 14 }, name = 'sand-2' }, + { position = { x = 17, y = 15 }, name = 'sand-2' }, + { position = { x = 17, y = 16 }, name = 'sand-2' }, + { position = { x = 17, y = 17 }, name = 'sand-2' }, + { position = { x = 17, y = 18 }, name = 'sand-2' }, + { position = { x = 17, y = 19 }, name = 'sand-2' }, + { position = { x = 17, y = 20 }, name = 'sand-2' }, + { position = { x = 17, y = 21 }, name = 'sand-2' }, + { position = { x = 17, y = 22 }, name = 'sand-2' }, + { position = { x = 17, y = 23 }, name = 'concrete' }, + { position = { x = 17, y = 24 }, name = 'concrete' }, + { position = { x = 17, y = 25 }, name = 'concrete' }, + { position = { x = 17, y = 26 }, name = 'sand-2' }, + { position = { x = 17, y = 27 }, name = 'stone-path' }, + { position = { x = 17, y = 28 }, name = 'stone-path' }, + { position = { x = 17, y = 29 }, name = 'concrete' }, + { position = { x = 17, y = 30 }, name = 'concrete' }, + { position = { x = 17, y = 31 }, name = 'concrete' }, + { position = { x = 18, y = 0 }, name = 'sand-2' }, + { position = { x = 18, y = 1 }, name = 'sand-2' }, + { position = { x = 18, y = 2 }, name = 'sand-2' }, + { position = { x = 18, y = 3 }, name = 'sand-2' }, + { position = { x = 18, y = 4 }, name = 'sand-2' }, + { position = { x = 18, y = 5 }, name = 'sand-2' }, + { position = { x = 18, y = 6 }, name = 'deepwater' }, + { position = { x = 18, y = 7 }, name = 'deepwater' }, + { position = { x = 18, y = 8 }, name = 'sand-2' }, + { position = { x = 18, y = 9 }, name = 'sand-2' }, + { position = { x = 18, y = 10 }, name = 'sand-2' }, + { position = { x = 18, y = 11 }, name = 'sand-2' }, + { position = { x = 18, y = 12 }, name = 'sand-2' }, + { position = { x = 18, y = 13 }, name = 'sand-2' }, + { position = { x = 18, y = 14 }, name = 'sand-2' }, + { position = { x = 18, y = 15 }, name = 'sand-2' }, + { position = { x = 18, y = 16 }, name = 'sand-2' }, + { position = { x = 18, y = 17 }, name = 'sand-2' }, + { position = { x = 18, y = 18 }, name = 'sand-2' }, + { position = { x = 18, y = 19 }, name = 'sand-2' }, + { position = { x = 18, y = 20 }, name = 'sand-2' }, + { position = { x = 18, y = 21 }, name = 'sand-2' }, + { position = { x = 18, y = 22 }, name = 'sand-2' }, + { position = { x = 18, y = 23 }, name = 'concrete' }, + { position = { x = 18, y = 24 }, name = 'concrete' }, + { position = { x = 18, y = 25 }, name = 'concrete' }, + { position = { x = 18, y = 26 }, name = 'sand-2' }, + { position = { x = 18, y = 27 }, name = 'stone-path' }, + { position = { x = 18, y = 28 }, name = 'stone-path' }, + { position = { x = 18, y = 29 }, name = 'concrete' }, + { position = { x = 18, y = 30 }, name = 'concrete' }, + { position = { x = 18, y = 31 }, name = 'concrete' }, + { position = { x = 19, y = 0 }, name = 'sand-2' }, + { position = { x = 19, y = 1 }, name = 'sand-2' }, + { position = { x = 19, y = 2 }, name = 'sand-2' }, + { position = { x = 19, y = 3 }, name = 'sand-2' }, + { position = { x = 19, y = 4 }, name = 'sand-2' }, + { position = { x = 19, y = 5 }, name = 'sand-2' }, + { position = { x = 19, y = 6 }, name = 'deepwater' }, + { position = { x = 19, y = 7 }, name = 'deepwater' }, + { position = { x = 19, y = 8 }, name = 'deepwater' }, + { position = { x = 19, y = 9 }, name = 'deepwater' }, + { position = { x = 19, y = 10 }, name = 'sand-2' }, + { position = { x = 19, y = 11 }, name = 'sand-2' }, + { position = { x = 19, y = 12 }, name = 'sand-2' }, + { position = { x = 19, y = 13 }, name = 'sand-2' }, + { position = { x = 19, y = 14 }, name = 'sand-2' }, + { position = { x = 19, y = 15 }, name = 'sand-2' }, + { position = { x = 19, y = 16 }, name = 'sand-2' }, + { position = { x = 19, y = 17 }, name = 'sand-2' }, + { position = { x = 19, y = 18 }, name = 'sand-2' }, + { position = { x = 19, y = 19 }, name = 'sand-2' }, + { position = { x = 19, y = 20 }, name = 'sand-2' }, + { position = { x = 19, y = 21 }, name = 'sand-2' }, + { position = { x = 19, y = 22 }, name = 'sand-2' }, + { position = { x = 19, y = 23 }, name = 'sand-2' }, + { position = { x = 19, y = 24 }, name = 'sand-2' }, + { position = { x = 19, y = 25 }, name = 'sand-2' }, + { position = { x = 19, y = 26 }, name = 'sand-2' }, + { position = { x = 19, y = 27 }, name = 'stone-path' }, + { position = { x = 19, y = 28 }, name = 'stone-path' }, + { position = { x = 19, y = 29 }, name = 'stone-path' }, + { position = { x = 19, y = 30 }, name = 'sand-2' }, + { position = { x = 19, y = 31 }, name = 'sand-2' }, + { position = { x = 20, y = 0 }, name = 'sand-2' }, + { position = { x = 20, y = 1 }, name = 'sand-2' }, + { position = { x = 20, y = 2 }, name = 'sand-2' }, + { position = { x = 20, y = 3 }, name = 'sand-2' }, + { position = { x = 20, y = 4 }, name = 'sand-2' }, + { position = { x = 20, y = 5 }, name = 'sand-2' }, + { position = { x = 20, y = 6 }, name = 'deepwater' }, + { position = { x = 20, y = 7 }, name = 'deepwater' }, + { position = { x = 20, y = 8 }, name = 'deepwater' }, + { position = { x = 20, y = 9 }, name = 'deepwater' }, + { position = { x = 20, y = 10 }, name = 'sand-2' }, + { position = { x = 20, y = 11 }, name = 'sand-2' }, + { position = { x = 20, y = 12 }, name = 'sand-2' }, + { position = { x = 20, y = 13 }, name = 'sand-2' }, + { position = { x = 20, y = 14 }, name = 'sand-2' }, + { position = { x = 20, y = 15 }, name = 'sand-2' }, + { position = { x = 20, y = 16 }, name = 'sand-2' }, + { position = { x = 20, y = 17 }, name = 'sand-2' }, + { position = { x = 20, y = 18 }, name = 'sand-2' }, + { position = { x = 20, y = 19 }, name = 'sand-2' }, + { position = { x = 20, y = 20 }, name = 'sand-2' }, + { position = { x = 20, y = 21 }, name = 'sand-2' }, + { position = { x = 20, y = 22 }, name = 'sand-2' }, + { position = { x = 20, y = 23 }, name = 'sand-2' }, + { position = { x = 20, y = 24 }, name = 'sand-2' }, + { position = { x = 20, y = 25 }, name = 'sand-2' }, + { position = { x = 20, y = 26 }, name = 'sand-2' }, + { position = { x = 20, y = 27 }, name = 'sand-2' }, + { position = { x = 20, y = 28 }, name = 'sand-2' }, + { position = { x = 20, y = 29 }, name = 'sand-2' }, + { position = { x = 20, y = 30 }, name = 'sand-2' }, + { position = { x = 20, y = 31 }, name = 'sand-2' }, + { position = { x = 21, y = 0 }, name = 'sand-2' }, + { position = { x = 21, y = 1 }, name = 'sand-2' }, + { position = { x = 21, y = 2 }, name = 'sand-2' }, + { position = { x = 21, y = 3 }, name = 'sand-2' }, + { position = { x = 21, y = 4 }, name = 'sand-2' }, + { position = { x = 21, y = 5 }, name = 'sand-2' }, + { position = { x = 21, y = 6 }, name = 'deepwater' }, + { position = { x = 21, y = 7 }, name = 'deepwater' }, + { position = { x = 21, y = 8 }, name = 'deepwater' }, + { position = { x = 21, y = 9 }, name = 'deepwater' }, + { position = { x = 21, y = 10 }, name = 'sand-2' }, + { position = { x = 21, y = 11 }, name = 'sand-2' }, + { position = { x = 21, y = 12 }, name = 'sand-2' }, + { position = { x = 21, y = 13 }, name = 'sand-2' }, + { position = { x = 21, y = 14 }, name = 'sand-2' }, + { position = { x = 21, y = 15 }, name = 'sand-2' }, + { position = { x = 21, y = 16 }, name = 'sand-2' }, + { position = { x = 21, y = 17 }, name = 'sand-2' }, + { position = { x = 21, y = 18 }, name = 'sand-2' }, + { position = { x = 21, y = 19 }, name = 'sand-2' }, + { position = { x = 21, y = 20 }, name = 'sand-2' }, + { position = { x = 21, y = 21 }, name = 'sand-2' }, + { position = { x = 21, y = 22 }, name = 'sand-2' }, + { position = { x = 21, y = 23 }, name = 'sand-2' }, + { position = { x = 21, y = 24 }, name = 'sand-2' }, + { position = { x = 21, y = 25 }, name = 'sand-2' }, + { position = { x = 21, y = 26 }, name = 'sand-2' }, + { position = { x = 21, y = 27 }, name = 'sand-2' }, + { position = { x = 21, y = 28 }, name = 'sand-2' }, + { position = { x = 21, y = 29 }, name = 'sand-2' }, + { position = { x = 21, y = 30 }, name = 'sand-2' }, + { position = { x = 21, y = 31 }, name = 'sand-2' }, + { position = { x = 22, y = 0 }, name = 'sand-2' }, + { position = { x = 22, y = 1 }, name = 'sand-2' }, + { position = { x = 22, y = 2 }, name = 'sand-2' }, + { position = { x = 22, y = 3 }, name = 'sand-2' }, + { position = { x = 22, y = 4 }, name = 'sand-2' }, + { position = { x = 22, y = 5 }, name = 'sand-2' }, + { position = { x = 22, y = 6 }, name = 'sand-2' }, + { position = { x = 22, y = 7 }, name = 'deepwater' }, + { position = { x = 22, y = 8 }, name = 'deepwater' }, + { position = { x = 22, y = 9 }, name = 'deepwater' }, + { position = { x = 22, y = 10 }, name = 'sand-2' }, + { position = { x = 22, y = 11 }, name = 'sand-2' }, + { position = { x = 22, y = 12 }, name = 'sand-2' }, + { position = { x = 22, y = 13 }, name = 'sand-2' }, + { position = { x = 22, y = 14 }, name = 'sand-2' }, + { position = { x = 22, y = 15 }, name = 'sand-2' }, + { position = { x = 22, y = 16 }, name = 'sand-2' }, + { position = { x = 22, y = 17 }, name = 'sand-2' }, + { position = { x = 22, y = 18 }, name = 'sand-2' }, + { position = { x = 22, y = 19 }, name = 'sand-2' }, + { position = { x = 22, y = 20 }, name = 'sand-2' }, + { position = { x = 22, y = 21 }, name = 'sand-2' }, + { position = { x = 22, y = 22 }, name = 'sand-2' }, + { position = { x = 22, y = 23 }, name = 'sand-2' }, + { position = { x = 22, y = 24 }, name = 'sand-2' }, + { position = { x = 22, y = 25 }, name = 'sand-2' }, + { position = { x = 22, y = 26 }, name = 'sand-2' }, + { position = { x = 22, y = 27 }, name = 'sand-2' }, + { position = { x = 22, y = 28 }, name = 'sand-2' }, + { position = { x = 22, y = 29 }, name = 'sand-2' }, + { position = { x = 22, y = 30 }, name = 'sand-2' }, + { position = { x = 22, y = 31 }, name = 'sand-2' }, + { position = { x = 23, y = 0 }, name = 'sand-2' }, + { position = { x = 23, y = 1 }, name = 'sand-2' }, + { position = { x = 23, y = 2 }, name = 'sand-2' }, + { position = { x = 23, y = 3 }, name = 'sand-2' }, + { position = { x = 23, y = 4 }, name = 'sand-2' }, + { position = { x = 23, y = 5 }, name = 'sand-2' }, + { position = { x = 23, y = 6 }, name = 'sand-2' }, + { position = { x = 23, y = 7 }, name = 'deepwater' }, + { position = { x = 23, y = 8 }, name = 'deepwater' }, + { position = { x = 23, y = 9 }, name = 'deepwater' }, + { position = { x = 23, y = 10 }, name = 'deepwater' }, + { position = { x = 23, y = 11 }, name = 'sand-2' }, + { position = { x = 23, y = 12 }, name = 'sand-2' }, + { position = { x = 23, y = 13 }, name = 'sand-2' }, + { position = { x = 23, y = 14 }, name = 'sand-2' }, + { position = { x = 23, y = 15 }, name = 'sand-2' }, + { position = { x = 23, y = 16 }, name = 'sand-2' }, + { position = { x = 23, y = 17 }, name = 'sand-2' }, + { position = { x = 23, y = 18 }, name = 'sand-2' }, + { position = { x = 23, y = 19 }, name = 'sand-2' }, + { position = { x = 23, y = 20 }, name = 'sand-2' }, + { position = { x = 23, y = 21 }, name = 'sand-2' }, + { position = { x = 23, y = 22 }, name = 'sand-2' }, + { position = { x = 23, y = 23 }, name = 'sand-2' }, + { position = { x = 23, y = 24 }, name = 'sand-2' }, + { position = { x = 23, y = 25 }, name = 'sand-2' }, + { position = { x = 23, y = 26 }, name = 'sand-2' }, + { position = { x = 23, y = 27 }, name = 'sand-2' }, + { position = { x = 23, y = 28 }, name = 'sand-2' }, + { position = { x = 23, y = 29 }, name = 'sand-2' }, + { position = { x = 23, y = 30 }, name = 'sand-2' }, + { position = { x = 23, y = 31 }, name = 'sand-2' }, + { position = { x = 24, y = 0 }, name = 'sand-2' }, + { position = { x = 24, y = 1 }, name = 'sand-2' }, + { position = { x = 24, y = 2 }, name = 'sand-2' }, + { position = { x = 24, y = 3 }, name = 'sand-2' }, + { position = { x = 24, y = 4 }, name = 'sand-2' }, + { position = { x = 24, y = 5 }, name = 'sand-2' }, + { position = { x = 24, y = 6 }, name = 'sand-2' }, + { position = { x = 24, y = 7 }, name = 'sand-2' }, + { position = { x = 24, y = 8 }, name = 'deepwater' }, + { position = { x = 24, y = 9 }, name = 'deepwater' }, + { position = { x = 24, y = 10 }, name = 'deepwater' }, + { position = { x = 24, y = 11 }, name = 'sand-2' }, + { position = { x = 24, y = 12 }, name = 'sand-2' }, + { position = { x = 24, y = 13 }, name = 'sand-2' }, + { position = { x = 24, y = 14 }, name = 'sand-2' }, + { position = { x = 24, y = 15 }, name = 'sand-2' }, + { position = { x = 24, y = 16 }, name = 'sand-2' }, + { position = { x = 24, y = 17 }, name = 'sand-2' }, + { position = { x = 24, y = 18 }, name = 'sand-2' }, + { position = { x = 24, y = 19 }, name = 'sand-2' }, + { position = { x = 24, y = 20 }, name = 'sand-2' }, + { position = { x = 24, y = 21 }, name = 'sand-2' }, + { position = { x = 24, y = 22 }, name = 'sand-2' }, + { position = { x = 24, y = 23 }, name = 'sand-2' }, + { position = { x = 24, y = 24 }, name = 'sand-2' }, + { position = { x = 24, y = 25 }, name = 'sand-2' }, + { position = { x = 24, y = 26 }, name = 'sand-2' }, + { position = { x = 24, y = 27 }, name = 'sand-2' }, + { position = { x = 24, y = 28 }, name = 'sand-2' }, + { position = { x = 24, y = 29 }, name = 'sand-2' }, + { position = { x = 24, y = 30 }, name = 'sand-2' }, + { position = { x = 24, y = 31 }, name = 'sand-2' }, + { position = { x = 25, y = 0 }, name = 'sand-2' }, + { position = { x = 25, y = 1 }, name = 'sand-2' }, + { position = { x = 25, y = 2 }, name = 'sand-2' }, + { position = { x = 25, y = 3 }, name = 'sand-2' }, + { position = { x = 25, y = 4 }, name = 'sand-2' }, + { position = { x = 25, y = 5 }, name = 'sand-2' }, + { position = { x = 25, y = 6 }, name = 'sand-2' }, + { position = { x = 25, y = 7 }, name = 'sand-2' }, + { position = { x = 25, y = 8 }, name = 'deepwater' }, + { position = { x = 25, y = 9 }, name = 'deepwater' }, + { position = { x = 25, y = 10 }, name = 'deepwater' }, + { position = { x = 25, y = 11 }, name = 'deepwater' }, + { position = { x = 25, y = 12 }, name = 'sand-2' }, + { position = { x = 25, y = 13 }, name = 'sand-2' }, + { position = { x = 25, y = 14 }, name = 'sand-2' }, + { position = { x = 25, y = 15 }, name = 'sand-2' }, + { position = { x = 25, y = 16 }, name = 'sand-2' }, + { position = { x = 25, y = 17 }, name = 'sand-2' }, + { position = { x = 25, y = 18 }, name = 'sand-2' }, + { position = { x = 25, y = 19 }, name = 'sand-2' }, + { position = { x = 25, y = 20 }, name = 'sand-2' }, + { position = { x = 25, y = 21 }, name = 'sand-2' }, + { position = { x = 25, y = 22 }, name = 'sand-2' }, + { position = { x = 25, y = 23 }, name = 'sand-2' }, + { position = { x = 25, y = 24 }, name = 'sand-2' }, + { position = { x = 25, y = 25 }, name = 'sand-2' }, + { position = { x = 25, y = 26 }, name = 'sand-2' }, + { position = { x = 25, y = 27 }, name = 'sand-2' }, + { position = { x = 25, y = 28 }, name = 'sand-2' }, + { position = { x = 25, y = 29 }, name = 'sand-2' }, + { position = { x = 25, y = 30 }, name = 'sand-2' }, + { position = { x = 25, y = 31 }, name = 'sand-2' }, + { position = { x = 26, y = 0 }, name = 'sand-2' }, + { position = { x = 26, y = 1 }, name = 'sand-2' }, + { position = { x = 26, y = 2 }, name = 'sand-2' }, + { position = { x = 26, y = 3 }, name = 'sand-2' }, + { position = { x = 26, y = 4 }, name = 'sand-2' }, + { position = { x = 26, y = 5 }, name = 'sand-2' }, + { position = { x = 26, y = 6 }, name = 'sand-2' }, + { position = { x = 26, y = 7 }, name = 'sand-2' }, + { position = { x = 26, y = 8 }, name = 'sand-2' }, + { position = { x = 26, y = 9 }, name = 'sand-2' }, + { position = { x = 26, y = 10 }, name = 'sand-3' }, + { position = { x = 26, y = 11 }, name = 'deepwater' }, + { position = { x = 26, y = 12 }, name = 'sand-2' }, + { position = { x = 26, y = 13 }, name = 'sand-2' }, + { position = { x = 26, y = 14 }, name = 'sand-2' }, + { position = { x = 26, y = 15 }, name = 'sand-2' }, + { position = { x = 26, y = 16 }, name = 'sand-2' }, + { position = { x = 26, y = 17 }, name = 'sand-2' }, + { position = { x = 26, y = 18 }, name = 'sand-2' }, + { position = { x = 26, y = 19 }, name = 'sand-2' }, + { position = { x = 26, y = 20 }, name = 'sand-2' }, + { position = { x = 26, y = 21 }, name = 'sand-2' }, + { position = { x = 26, y = 22 }, name = 'sand-2' }, + { position = { x = 26, y = 23 }, name = 'sand-2' }, + { position = { x = 26, y = 24 }, name = 'sand-2' }, + { position = { x = 26, y = 25 }, name = 'sand-2' }, + { position = { x = 26, y = 26 }, name = 'sand-2' }, + { position = { x = 26, y = 27 }, name = 'sand-2' }, + { position = { x = 26, y = 28 }, name = 'sand-2' }, + { position = { x = 26, y = 29 }, name = 'sand-2' }, + { position = { x = 26, y = 30 }, name = 'sand-2' }, + { position = { x = 26, y = 31 }, name = 'sand-2' }, + { position = { x = 27, y = 0 }, name = 'sand-2' }, + { position = { x = 27, y = 1 }, name = 'sand-2' }, + { position = { x = 27, y = 2 }, name = 'sand-2' }, + { position = { x = 27, y = 3 }, name = 'sand-2' }, + { position = { x = 27, y = 4 }, name = 'sand-2' }, + { position = { x = 27, y = 5 }, name = 'sand-2' }, + { position = { x = 27, y = 6 }, name = 'sand-2' }, + { position = { x = 27, y = 7 }, name = 'sand-2' }, + { position = { x = 27, y = 8 }, name = 'sand-2' }, + { position = { x = 27, y = 9 }, name = 'sand-2' }, + { position = { x = 27, y = 10 }, name = 'sand-3' }, + { position = { x = 27, y = 11 }, name = 'sand-3' }, + { position = { x = 27, y = 12 }, name = 'sand-2' }, + { position = { x = 27, y = 13 }, name = 'sand-2' }, + { position = { x = 27, y = 14 }, name = 'sand-2' }, + { position = { x = 27, y = 15 }, name = 'sand-2' }, + { position = { x = 27, y = 16 }, name = 'sand-2' }, + { position = { x = 27, y = 17 }, name = 'sand-2' }, + { position = { x = 27, y = 18 }, name = 'sand-2' }, + { position = { x = 27, y = 19 }, name = 'sand-2' }, + { position = { x = 27, y = 20 }, name = 'sand-2' }, + { position = { x = 27, y = 21 }, name = 'sand-2' }, + { position = { x = 27, y = 22 }, name = 'sand-2' }, + { position = { x = 27, y = 23 }, name = 'sand-2' }, + { position = { x = 27, y = 24 }, name = 'sand-2' }, + { position = { x = 27, y = 25 }, name = 'sand-2' }, + { position = { x = 27, y = 26 }, name = 'sand-2' }, + { position = { x = 27, y = 27 }, name = 'sand-2' }, + { position = { x = 27, y = 28 }, name = 'sand-2' }, + { position = { x = 27, y = 29 }, name = 'sand-2' }, + { position = { x = 27, y = 30 }, name = 'sand-2' }, + { position = { x = 27, y = 31 }, name = 'sand-2' }, + { position = { x = 28, y = 0 }, name = 'sand-2' }, + { position = { x = 28, y = 1 }, name = 'sand-2' }, + { position = { x = 28, y = 2 }, name = 'sand-2' }, + { position = { x = 28, y = 3 }, name = 'sand-2' }, + { position = { x = 28, y = 4 }, name = 'sand-2' }, + { position = { x = 28, y = 5 }, name = 'sand-2' }, + { position = { x = 28, y = 6 }, name = 'sand-2' }, + { position = { x = 28, y = 7 }, name = 'sand-2' }, + { position = { x = 28, y = 8 }, name = 'sand-2' }, + { position = { x = 28, y = 9 }, name = 'sand-2' }, + { position = { x = 28, y = 10 }, name = 'sand-2' }, + { position = { x = 28, y = 11 }, name = 'sand-3' }, + { position = { x = 28, y = 12 }, name = 'sand-2' }, + { position = { x = 28, y = 13 }, name = 'sand-2' }, + { position = { x = 28, y = 14 }, name = 'sand-2' }, + { position = { x = 28, y = 15 }, name = 'sand-2' }, + { position = { x = 28, y = 16 }, name = 'sand-2' }, + { position = { x = 28, y = 17 }, name = 'sand-2' }, + { position = { x = 28, y = 18 }, name = 'sand-2' }, + { position = { x = 28, y = 19 }, name = 'sand-2' }, + { position = { x = 28, y = 20 }, name = 'sand-2' }, + { position = { x = 28, y = 21 }, name = 'sand-2' }, + { position = { x = 28, y = 22 }, name = 'sand-2' }, + { position = { x = 28, y = 23 }, name = 'sand-2' }, + { position = { x = 28, y = 24 }, name = 'sand-2' }, + { position = { x = 28, y = 25 }, name = 'sand-2' }, + { position = { x = 28, y = 26 }, name = 'sand-2' }, + { position = { x = 28, y = 27 }, name = 'sand-2' }, + { position = { x = 28, y = 28 }, name = 'sand-2' }, + { position = { x = 28, y = 29 }, name = 'sand-2' }, + { position = { x = 28, y = 30 }, name = 'sand-1' }, + { position = { x = 28, y = 31 }, name = 'sand-1' }, + { position = { x = 29, y = 0 }, name = 'sand-2' }, + { position = { x = 29, y = 1 }, name = 'sand-2' }, + { position = { x = 29, y = 2 }, name = 'sand-2' }, + { position = { x = 29, y = 3 }, name = 'sand-2' }, + { position = { x = 29, y = 4 }, name = 'sand-2' }, + { position = { x = 29, y = 5 }, name = 'sand-2' }, + { position = { x = 29, y = 6 }, name = 'sand-2' }, + { position = { x = 29, y = 7 }, name = 'sand-2' }, + { position = { x = 29, y = 8 }, name = 'sand-2' }, + { position = { x = 29, y = 9 }, name = 'sand-2' }, + { position = { x = 29, y = 10 }, name = 'sand-2' }, + { position = { x = 29, y = 11 }, name = 'sand-3' }, + { position = { x = 29, y = 12 }, name = 'sand-2' }, + { position = { x = 29, y = 13 }, name = 'sand-2' }, + { position = { x = 29, y = 14 }, name = 'sand-2' }, + { position = { x = 29, y = 15 }, name = 'sand-2' }, + { position = { x = 29, y = 16 }, name = 'sand-2' }, + { position = { x = 29, y = 17 }, name = 'sand-2' }, + { position = { x = 29, y = 18 }, name = 'sand-2' }, + { position = { x = 29, y = 19 }, name = 'sand-2' }, + { position = { x = 29, y = 20 }, name = 'sand-2' }, + { position = { x = 29, y = 21 }, name = 'sand-2' }, + { position = { x = 29, y = 22 }, name = 'sand-2' }, + { position = { x = 29, y = 23 }, name = 'sand-2' }, + { position = { x = 29, y = 24 }, name = 'sand-2' }, + { position = { x = 29, y = 25 }, name = 'sand-2' }, + { position = { x = 29, y = 26 }, name = 'sand-2' }, + { position = { x = 29, y = 27 }, name = 'sand-2' }, + { position = { x = 29, y = 28 }, name = 'sand-1' }, + { position = { x = 29, y = 29 }, name = 'sand-1' }, + { position = { x = 29, y = 30 }, name = 'sand-1' }, + { position = { x = 29, y = 31 }, name = 'sand-1' }, + { position = { x = 30, y = 0 }, name = 'sand-2' }, + { position = { x = 30, y = 1 }, name = 'sand-2' }, + { position = { x = 30, y = 2 }, name = 'sand-2' }, + { position = { x = 30, y = 3 }, name = 'sand-2' }, + { position = { x = 30, y = 4 }, name = 'sand-2' }, + { position = { x = 30, y = 5 }, name = 'sand-2' }, + { position = { x = 30, y = 6 }, name = 'sand-2' }, + { position = { x = 30, y = 7 }, name = 'sand-2' }, + { position = { x = 30, y = 8 }, name = 'sand-2' }, + { position = { x = 30, y = 9 }, name = 'sand-2' }, + { position = { x = 30, y = 10 }, name = 'sand-2' }, + { position = { x = 30, y = 11 }, name = 'sand-2' }, + { position = { x = 30, y = 12 }, name = 'sand-2' }, + { position = { x = 30, y = 13 }, name = 'sand-2' }, + { position = { x = 30, y = 14 }, name = 'sand-2' }, + { position = { x = 30, y = 15 }, name = 'sand-2' }, + { position = { x = 30, y = 16 }, name = 'sand-2' }, + { position = { x = 30, y = 17 }, name = 'sand-2' }, + { position = { x = 30, y = 18 }, name = 'sand-2' }, + { position = { x = 30, y = 19 }, name = 'sand-2' }, + { position = { x = 30, y = 20 }, name = 'sand-2' }, + { position = { x = 30, y = 21 }, name = 'sand-2' }, + { position = { x = 30, y = 22 }, name = 'sand-2' }, + { position = { x = 30, y = 23 }, name = 'sand-2' }, + { position = { x = 30, y = 24 }, name = 'sand-2' }, + { position = { x = 30, y = 25 }, name = 'sand-2' }, + { position = { x = 30, y = 26 }, name = 'sand-1' }, + { position = { x = 30, y = 27 }, name = 'sand-1' }, + { position = { x = 30, y = 28 }, name = 'sand-1' }, + { position = { x = 30, y = 29 }, name = 'sand-1' }, + { position = { x = 30, y = 30 }, name = 'sand-1' }, + { position = { x = 30, y = 31 }, name = 'sand-1' }, + { position = { x = 31, y = 0 }, name = 'sand-2' }, + { position = { x = 31, y = 1 }, name = 'sand-2' }, + { position = { x = 31, y = 2 }, name = 'sand-2' }, + { position = { x = 31, y = 3 }, name = 'sand-2' }, + { position = { x = 31, y = 4 }, name = 'sand-2' }, + { position = { x = 31, y = 5 }, name = 'sand-2' }, + { position = { x = 31, y = 6 }, name = 'sand-2' }, + { position = { x = 31, y = 7 }, name = 'sand-2' }, + { position = { x = 31, y = 8 }, name = 'sand-2' }, + { position = { x = 31, y = 9 }, name = 'sand-2' }, + { position = { x = 31, y = 10 }, name = 'sand-2' }, + { position = { x = 31, y = 11 }, name = 'sand-2' }, + { position = { x = 31, y = 12 }, name = 'sand-2' }, + { position = { x = 31, y = 13 }, name = 'sand-2' }, + { position = { x = 31, y = 14 }, name = 'sand-2' }, + { position = { x = 31, y = 15 }, name = 'sand-2' }, + { position = { x = 31, y = 16 }, name = 'sand-2' }, + { position = { x = 31, y = 17 }, name = 'sand-2' }, + { position = { x = 31, y = 18 }, name = 'sand-2' }, + { position = { x = 31, y = 19 }, name = 'sand-2' }, + { position = { x = 31, y = 20 }, name = 'sand-2' }, + { position = { x = 31, y = 21 }, name = 'sand-2' }, + { position = { x = 31, y = 22 }, name = 'sand-2' }, + { position = { x = 31, y = 23 }, name = 'sand-2' }, + { position = { x = 31, y = 24 }, name = 'sand-2' }, + { position = { x = 31, y = 25 }, name = 'sand-2' }, + { position = { x = 31, y = 26 }, name = 'sand-1' }, + { position = { x = 31, y = 27 }, name = 'sand-1' }, + { position = { x = 31, y = 28 }, name = 'sand-1' }, + { position = { x = 31, y = 29 }, name = 'sand-1' }, + { position = { x = 31, y = 30 }, name = 'sand-1' }, + { position = { x = 31, y = 31 }, name = 'sand-1' } } }, flamethrower_cross = { entities = { - {position = {x = 2, y = 2}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 1.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5, y = 2}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 5.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8, y = 2}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 6.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11, y = 2}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 11.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 1.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 14.5, y = 1.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 15.5, y = 1.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 16.5, y = 1.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 17.5, y = 1.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 19.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 1.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 21, y = 2}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 20.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24, y = 2}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 22.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27, y = 2}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 26.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30, y = 2}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 28.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2, y = 5}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 0.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30, y = 5}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 31.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2, y = 8}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 0.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10, y = 8}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 8.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14, y = 8}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 12.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16, y = 8}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 14.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18, y = 8}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 17.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22, y = 8}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 20.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30, y = 8}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 31.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8, y = 10}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 6.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24, y = 10}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 23.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2, y = 11}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 0.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30, y = 11}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 31.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 13.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8, y = 14}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 6.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 13.5}, name = 'storage-tank', direction = 0, force = 'enemy'}, - {position = {x = 16, y = 13.5}, name = 'flamethrower-turret', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 13.5}, name = 'storage-tank', direction = 2, force = 'enemy'}, - {position = {x = 24, y = 14}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 22.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 13.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 13.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 15.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 14.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 8, y = 16}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 6.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 16}, name = 'flamethrower-turret', direction = 6, force = 'enemy'}, - {position = {x = 18.5, y = 16}, name = 'flamethrower-turret', direction = 2, force = 'enemy'}, - {position = {x = 24, y = 16}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 22.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 14.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 15.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 14.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 15.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 17.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 16.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 8, y = 18}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 6.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 18.5}, name = 'storage-tank', direction = 2, force = 'enemy'}, - {position = {x = 16, y = 18.5}, name = 'flamethrower-turret', direction = 4, force = 'enemy'}, - {position = {x = 18.5, y = 18.5}, name = 'storage-tank', direction = 0, force = 'enemy'}, - {position = {x = 24, y = 18}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 22.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 16.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 17.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 16.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 17.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 18.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 18.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 18.5}, name = 'gate', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2, y = 21}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 0.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8, y = 22}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 7.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24, y = 22}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 22.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30, y = 21}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 31.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2, y = 24}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 0.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10, y = 24}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 9.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14, y = 24}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 12.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16, y = 24}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 14.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18, y = 24}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 17.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22, y = 24}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 21.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30, y = 24}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 31.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 15.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 17.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 16.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 18.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2, y = 27}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 0.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30, y = 27}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 31.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2, y = 30}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 0.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5, y = 30}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 8, y = 30}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 11, y = 30}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 12.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21, y = 30}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 24, y = 30}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 27, y = 30}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 30, y = 30}, name = 'gun-turret', direction = 6, force = 'enemy'}, - {position = {x = 31.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 1.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 0.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 3.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 2.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 5.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 4.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 6.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 7.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 8.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 9.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 10.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 11.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 12.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 13.5, y = 30.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 12.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 14.5, y = 30.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 15.5, y = 30.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 16.5, y = 30.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 17.5, y = 30.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 18.5, y = 30.5}, name = 'gate', direction = 2, force = 'enemy'}, - {position = {x = 19.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 19.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 21.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 20.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 23.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 22.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 24.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 25.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 27.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 26.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 29.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 28.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 30.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'enemy'}, - {position = {x = 31.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'enemy'} + { position = { x = 2, y = 2 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 1.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5, y = 2 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 5.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8, y = 2 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 6.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11, y = 2 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 11.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 1.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 14.5, y = 1.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 15.5, y = 1.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 16.5, y = 1.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 17.5, y = 1.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 19.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 1.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 21, y = 2 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 20.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24, y = 2 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 22.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27, y = 2 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 26.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30, y = 2 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 28.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2, y = 5 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 0.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30, y = 5 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 31.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2, y = 8 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 0.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10, y = 8 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 8.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14, y = 8 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 12.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16, y = 8 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 14.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18, y = 8 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 17.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22, y = 8 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 20.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30, y = 8 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 31.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8, y = 10 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 6.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24, y = 10 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 23.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2, y = 11 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 0.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30, y = 11 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 31.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 13.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8, y = 14 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 6.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 13.5 }, name = 'storage-tank', direction = 0, force = 'enemy' }, + { position = { x = 16, y = 13.5 }, name = 'flamethrower-turret', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 13.5 }, name = 'storage-tank', direction = 2, force = 'enemy' }, + { position = { x = 24, y = 14 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 22.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 13.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 13.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 15.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 14.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 8, y = 16 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 6.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 16 }, name = 'flamethrower-turret', direction = 6, force = 'enemy' }, + { position = { x = 18.5, y = 16 }, name = 'flamethrower-turret', direction = 2, force = 'enemy' }, + { position = { x = 24, y = 16 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 22.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 14.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 15.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 14.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 15.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 17.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 16.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 8, y = 18 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 6.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 18.5 }, name = 'storage-tank', direction = 2, force = 'enemy' }, + { position = { x = 16, y = 18.5 }, name = 'flamethrower-turret', direction = 4, force = 'enemy' }, + { position = { x = 18.5, y = 18.5 }, name = 'storage-tank', direction = 0, force = 'enemy' }, + { position = { x = 24, y = 18 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 22.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 16.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 17.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 16.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 17.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 18.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 18.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 18.5 }, name = 'gate', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2, y = 21 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 0.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8, y = 22 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 7.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24, y = 22 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 22.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30, y = 21 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 31.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2, y = 24 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 0.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10, y = 24 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 9.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14, y = 24 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 12.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16, y = 24 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 14.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18, y = 24 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 17.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22, y = 24 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 21.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30, y = 24 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 31.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 15.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 17.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 16.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 18.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2, y = 27 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 0.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30, y = 27 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 31.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2, y = 30 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 0.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5, y = 30 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 8, y = 30 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 11, y = 30 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 12.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21, y = 30 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 24, y = 30 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 27, y = 30 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 30, y = 30 }, name = 'gun-turret', direction = 6, force = 'enemy' }, + { position = { x = 31.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 1.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 0.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 3.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 2.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 5.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 4.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 6.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 7.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 8.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 9.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 10.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 11.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 12.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 13.5, y = 30.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 12.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 14.5, y = 30.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 15.5, y = 30.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 16.5, y = 30.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 17.5, y = 30.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 18.5, y = 30.5 }, name = 'gate', direction = 2, force = 'enemy' }, + { position = { x = 19.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 19.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 21.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 20.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 23.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 22.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 24.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 25.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 27.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 26.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 29.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 28.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 30.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'enemy' }, + { position = { x = 31.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'enemy' } }, tiles = { - {position = {x = 0, y = 0}, name = 'dirt-5'}, - {position = {x = 0, y = 1}, name = 'dirt-5'}, - {position = {x = 0, y = 2}, name = 'dirt-5'}, - {position = {x = 0, y = 3}, name = 'dirt-5'}, - {position = {x = 0, y = 4}, name = 'dirt-5'}, - {position = {x = 0, y = 5}, name = 'dirt-5'}, - {position = {x = 0, y = 6}, name = 'dirt-5'}, - {position = {x = 0, y = 7}, name = 'dirt-5'}, - {position = {x = 0, y = 8}, name = 'dirt-5'}, - {position = {x = 0, y = 9}, name = 'dirt-5'}, - {position = {x = 0, y = 10}, name = 'dirt-5'}, - {position = {x = 0, y = 11}, name = 'dirt-5'}, - {position = {x = 0, y = 12}, name = 'dirt-5'}, - {position = {x = 0, y = 13}, name = 'dirt-5'}, - {position = {x = 0, y = 14}, name = 'dirt-5'}, - {position = {x = 0, y = 15}, name = 'dirt-5'}, - {position = {x = 0, y = 16}, name = 'dirt-5'}, - {position = {x = 0, y = 17}, name = 'dirt-5'}, - {position = {x = 0, y = 18}, name = 'dirt-5'}, - {position = {x = 0, y = 19}, name = 'dirt-5'}, - {position = {x = 0, y = 20}, name = 'dirt-5'}, - {position = {x = 0, y = 21}, name = 'dirt-5'}, - {position = {x = 0, y = 22}, name = 'dirt-5'}, - {position = {x = 0, y = 23}, name = 'dirt-5'}, - {position = {x = 0, y = 24}, name = 'dirt-5'}, - {position = {x = 0, y = 25}, name = 'dirt-5'}, - {position = {x = 0, y = 26}, name = 'dirt-5'}, - {position = {x = 0, y = 27}, name = 'dirt-5'}, - {position = {x = 0, y = 28}, name = 'dirt-5'}, - {position = {x = 0, y = 29}, name = 'dirt-5'}, - {position = {x = 0, y = 30}, name = 'dirt-5'}, - {position = {x = 0, y = 31}, name = 'dirt-5'}, - {position = {x = 1, y = 0}, name = 'dirt-5'}, - {position = {x = 1, y = 1}, name = 'stone-path'}, - {position = {x = 1, y = 2}, name = 'stone-path'}, - {position = {x = 1, y = 3}, name = 'stone-path'}, - {position = {x = 1, y = 4}, name = 'stone-path'}, - {position = {x = 1, y = 5}, name = 'stone-path'}, - {position = {x = 1, y = 6}, name = 'stone-path'}, - {position = {x = 1, y = 7}, name = 'stone-path'}, - {position = {x = 1, y = 8}, name = 'stone-path'}, - {position = {x = 1, y = 9}, name = 'stone-path'}, - {position = {x = 1, y = 10}, name = 'stone-path'}, - {position = {x = 1, y = 11}, name = 'stone-path'}, - {position = {x = 1, y = 12}, name = 'dirt-5'}, - {position = {x = 1, y = 13}, name = 'dirt-5'}, - {position = {x = 1, y = 14}, name = 'dirt-5'}, - {position = {x = 1, y = 15}, name = 'dirt-5'}, - {position = {x = 1, y = 16}, name = 'dirt-5'}, - {position = {x = 1, y = 17}, name = 'dirt-5'}, - {position = {x = 1, y = 18}, name = 'dirt-5'}, - {position = {x = 1, y = 19}, name = 'dirt-5'}, - {position = {x = 1, y = 20}, name = 'stone-path'}, - {position = {x = 1, y = 21}, name = 'stone-path'}, - {position = {x = 1, y = 22}, name = 'stone-path'}, - {position = {x = 1, y = 23}, name = 'stone-path'}, - {position = {x = 1, y = 24}, name = 'stone-path'}, - {position = {x = 1, y = 25}, name = 'stone-path'}, - {position = {x = 1, y = 26}, name = 'stone-path'}, - {position = {x = 1, y = 27}, name = 'stone-path'}, - {position = {x = 1, y = 28}, name = 'stone-path'}, - {position = {x = 1, y = 29}, name = 'stone-path'}, - {position = {x = 1, y = 30}, name = 'stone-path'}, - {position = {x = 1, y = 31}, name = 'dirt-5'}, - {position = {x = 2, y = 0}, name = 'dirt-5'}, - {position = {x = 2, y = 1}, name = 'stone-path'}, - {position = {x = 2, y = 2}, name = 'stone-path'}, - {position = {x = 2, y = 3}, name = 'stone-path'}, - {position = {x = 2, y = 4}, name = 'stone-path'}, - {position = {x = 2, y = 5}, name = 'stone-path'}, - {position = {x = 2, y = 6}, name = 'stone-path'}, - {position = {x = 2, y = 7}, name = 'stone-path'}, - {position = {x = 2, y = 8}, name = 'stone-path'}, - {position = {x = 2, y = 9}, name = 'stone-path'}, - {position = {x = 2, y = 10}, name = 'stone-path'}, - {position = {x = 2, y = 11}, name = 'stone-path'}, - {position = {x = 2, y = 12}, name = 'stone-path'}, - {position = {x = 2, y = 13}, name = 'stone-path'}, - {position = {x = 2, y = 14}, name = 'stone-path'}, - {position = {x = 2, y = 15}, name = 'stone-path'}, - {position = {x = 2, y = 16}, name = 'stone-path'}, - {position = {x = 2, y = 17}, name = 'stone-path'}, - {position = {x = 2, y = 18}, name = 'stone-path'}, - {position = {x = 2, y = 19}, name = 'stone-path'}, - {position = {x = 2, y = 20}, name = 'stone-path'}, - {position = {x = 2, y = 21}, name = 'stone-path'}, - {position = {x = 2, y = 22}, name = 'stone-path'}, - {position = {x = 2, y = 23}, name = 'stone-path'}, - {position = {x = 2, y = 24}, name = 'stone-path'}, - {position = {x = 2, y = 25}, name = 'stone-path'}, - {position = {x = 2, y = 26}, name = 'stone-path'}, - {position = {x = 2, y = 27}, name = 'stone-path'}, - {position = {x = 2, y = 28}, name = 'stone-path'}, - {position = {x = 2, y = 29}, name = 'stone-path'}, - {position = {x = 2, y = 30}, name = 'stone-path'}, - {position = {x = 2, y = 31}, name = 'dirt-5'}, - {position = {x = 3, y = 0}, name = 'dirt-5'}, - {position = {x = 3, y = 1}, name = 'stone-path'}, - {position = {x = 3, y = 2}, name = 'stone-path'}, - {position = {x = 3, y = 3}, name = 'stone-path'}, - {position = {x = 3, y = 4}, name = 'stone-path'}, - {position = {x = 3, y = 5}, name = 'stone-path'}, - {position = {x = 3, y = 6}, name = 'stone-path'}, - {position = {x = 3, y = 7}, name = 'stone-path'}, - {position = {x = 3, y = 8}, name = 'stone-path'}, - {position = {x = 3, y = 9}, name = 'stone-path'}, - {position = {x = 3, y = 10}, name = 'stone-path'}, - {position = {x = 3, y = 11}, name = 'stone-path'}, - {position = {x = 3, y = 12}, name = 'stone-path'}, - {position = {x = 3, y = 13}, name = 'stone-path'}, - {position = {x = 3, y = 14}, name = 'stone-path'}, - {position = {x = 3, y = 15}, name = 'stone-path'}, - {position = {x = 3, y = 16}, name = 'stone-path'}, - {position = {x = 3, y = 17}, name = 'stone-path'}, - {position = {x = 3, y = 18}, name = 'stone-path'}, - {position = {x = 3, y = 19}, name = 'stone-path'}, - {position = {x = 3, y = 20}, name = 'stone-path'}, - {position = {x = 3, y = 21}, name = 'stone-path'}, - {position = {x = 3, y = 22}, name = 'stone-path'}, - {position = {x = 3, y = 23}, name = 'stone-path'}, - {position = {x = 3, y = 24}, name = 'stone-path'}, - {position = {x = 3, y = 25}, name = 'stone-path'}, - {position = {x = 3, y = 26}, name = 'stone-path'}, - {position = {x = 3, y = 27}, name = 'stone-path'}, - {position = {x = 3, y = 28}, name = 'stone-path'}, - {position = {x = 3, y = 29}, name = 'stone-path'}, - {position = {x = 3, y = 30}, name = 'stone-path'}, - {position = {x = 3, y = 31}, name = 'dirt-5'}, - {position = {x = 4, y = 0}, name = 'dirt-5'}, - {position = {x = 4, y = 1}, name = 'stone-path'}, - {position = {x = 4, y = 2}, name = 'stone-path'}, - {position = {x = 4, y = 3}, name = 'stone-path'}, - {position = {x = 4, y = 4}, name = 'stone-path'}, - {position = {x = 4, y = 5}, name = 'stone-path'}, - {position = {x = 4, y = 6}, name = 'stone-path'}, - {position = {x = 4, y = 7}, name = 'stone-path'}, - {position = {x = 4, y = 8}, name = 'stone-path'}, - {position = {x = 4, y = 9}, name = 'stone-path'}, - {position = {x = 4, y = 10}, name = 'stone-path'}, - {position = {x = 4, y = 11}, name = 'stone-path'}, - {position = {x = 4, y = 12}, name = 'stone-path'}, - {position = {x = 4, y = 13}, name = 'stone-path'}, - {position = {x = 4, y = 14}, name = 'stone-path'}, - {position = {x = 4, y = 15}, name = 'stone-path'}, - {position = {x = 4, y = 16}, name = 'stone-path'}, - {position = {x = 4, y = 17}, name = 'stone-path'}, - {position = {x = 4, y = 18}, name = 'stone-path'}, - {position = {x = 4, y = 19}, name = 'stone-path'}, - {position = {x = 4, y = 20}, name = 'stone-path'}, - {position = {x = 4, y = 21}, name = 'stone-path'}, - {position = {x = 4, y = 22}, name = 'stone-path'}, - {position = {x = 4, y = 23}, name = 'stone-path'}, - {position = {x = 4, y = 24}, name = 'stone-path'}, - {position = {x = 4, y = 25}, name = 'stone-path'}, - {position = {x = 4, y = 26}, name = 'stone-path'}, - {position = {x = 4, y = 27}, name = 'stone-path'}, - {position = {x = 4, y = 28}, name = 'stone-path'}, - {position = {x = 4, y = 29}, name = 'stone-path'}, - {position = {x = 4, y = 30}, name = 'stone-path'}, - {position = {x = 4, y = 31}, name = 'dirt-5'}, - {position = {x = 5, y = 0}, name = 'dirt-5'}, - {position = {x = 5, y = 1}, name = 'stone-path'}, - {position = {x = 5, y = 2}, name = 'stone-path'}, - {position = {x = 5, y = 3}, name = 'stone-path'}, - {position = {x = 5, y = 4}, name = 'stone-path'}, - {position = {x = 5, y = 5}, name = 'stone-path'}, - {position = {x = 5, y = 6}, name = 'stone-path'}, - {position = {x = 5, y = 7}, name = 'stone-path'}, - {position = {x = 5, y = 8}, name = 'stone-path'}, - {position = {x = 5, y = 9}, name = 'stone-path'}, - {position = {x = 5, y = 10}, name = 'stone-path'}, - {position = {x = 5, y = 11}, name = 'stone-path'}, - {position = {x = 5, y = 12}, name = 'stone-path'}, - {position = {x = 5, y = 13}, name = 'stone-path'}, - {position = {x = 5, y = 14}, name = 'stone-path'}, - {position = {x = 5, y = 15}, name = 'stone-path'}, - {position = {x = 5, y = 16}, name = 'stone-path'}, - {position = {x = 5, y = 17}, name = 'stone-path'}, - {position = {x = 5, y = 18}, name = 'stone-path'}, - {position = {x = 5, y = 19}, name = 'stone-path'}, - {position = {x = 5, y = 20}, name = 'stone-path'}, - {position = {x = 5, y = 21}, name = 'stone-path'}, - {position = {x = 5, y = 22}, name = 'stone-path'}, - {position = {x = 5, y = 23}, name = 'stone-path'}, - {position = {x = 5, y = 24}, name = 'stone-path'}, - {position = {x = 5, y = 25}, name = 'stone-path'}, - {position = {x = 5, y = 26}, name = 'stone-path'}, - {position = {x = 5, y = 27}, name = 'stone-path'}, - {position = {x = 5, y = 28}, name = 'stone-path'}, - {position = {x = 5, y = 29}, name = 'stone-path'}, - {position = {x = 5, y = 30}, name = 'stone-path'}, - {position = {x = 5, y = 31}, name = 'dirt-5'}, - {position = {x = 6, y = 0}, name = 'dirt-5'}, - {position = {x = 6, y = 1}, name = 'stone-path'}, - {position = {x = 6, y = 2}, name = 'stone-path'}, - {position = {x = 6, y = 3}, name = 'stone-path'}, - {position = {x = 6, y = 4}, name = 'stone-path'}, - {position = {x = 6, y = 5}, name = 'stone-path'}, - {position = {x = 6, y = 6}, name = 'stone-path'}, - {position = {x = 6, y = 7}, name = 'stone-path'}, - {position = {x = 6, y = 8}, name = 'stone-path'}, - {position = {x = 6, y = 9}, name = 'stone-path'}, - {position = {x = 6, y = 10}, name = 'stone-path'}, - {position = {x = 6, y = 11}, name = 'stone-path'}, - {position = {x = 6, y = 12}, name = 'stone-path'}, - {position = {x = 6, y = 13}, name = 'stone-path'}, - {position = {x = 6, y = 14}, name = 'stone-path'}, - {position = {x = 6, y = 15}, name = 'stone-path'}, - {position = {x = 6, y = 16}, name = 'stone-path'}, - {position = {x = 6, y = 17}, name = 'stone-path'}, - {position = {x = 6, y = 18}, name = 'stone-path'}, - {position = {x = 6, y = 19}, name = 'stone-path'}, - {position = {x = 6, y = 20}, name = 'stone-path'}, - {position = {x = 6, y = 21}, name = 'stone-path'}, - {position = {x = 6, y = 22}, name = 'stone-path'}, - {position = {x = 6, y = 23}, name = 'stone-path'}, - {position = {x = 6, y = 24}, name = 'stone-path'}, - {position = {x = 6, y = 25}, name = 'stone-path'}, - {position = {x = 6, y = 26}, name = 'stone-path'}, - {position = {x = 6, y = 27}, name = 'stone-path'}, - {position = {x = 6, y = 28}, name = 'stone-path'}, - {position = {x = 6, y = 29}, name = 'stone-path'}, - {position = {x = 6, y = 30}, name = 'stone-path'}, - {position = {x = 6, y = 31}, name = 'dirt-5'}, - {position = {x = 7, y = 0}, name = 'dirt-5'}, - {position = {x = 7, y = 1}, name = 'dirt-5'}, - {position = {x = 7, y = 2}, name = 'dirt-5'}, - {position = {x = 7, y = 3}, name = 'stone-path'}, - {position = {x = 7, y = 4}, name = 'stone-path'}, - {position = {x = 7, y = 5}, name = 'stone-path'}, - {position = {x = 7, y = 6}, name = 'stone-path'}, - {position = {x = 7, y = 7}, name = 'stone-path'}, - {position = {x = 7, y = 8}, name = 'stone-path'}, - {position = {x = 7, y = 9}, name = 'stone-path'}, - {position = {x = 7, y = 10}, name = 'stone-path'}, - {position = {x = 7, y = 11}, name = 'stone-path'}, - {position = {x = 7, y = 12}, name = 'stone-path'}, - {position = {x = 7, y = 13}, name = 'stone-path'}, - {position = {x = 7, y = 14}, name = 'stone-path'}, - {position = {x = 7, y = 15}, name = 'stone-path'}, - {position = {x = 7, y = 16}, name = 'stone-path'}, - {position = {x = 7, y = 17}, name = 'stone-path'}, - {position = {x = 7, y = 18}, name = 'stone-path'}, - {position = {x = 7, y = 19}, name = 'stone-path'}, - {position = {x = 7, y = 20}, name = 'stone-path'}, - {position = {x = 7, y = 21}, name = 'stone-path'}, - {position = {x = 7, y = 22}, name = 'stone-path'}, - {position = {x = 7, y = 23}, name = 'stone-path'}, - {position = {x = 7, y = 24}, name = 'stone-path'}, - {position = {x = 7, y = 25}, name = 'stone-path'}, - {position = {x = 7, y = 26}, name = 'stone-path'}, - {position = {x = 7, y = 27}, name = 'stone-path'}, - {position = {x = 7, y = 28}, name = 'stone-path'}, - {position = {x = 7, y = 29}, name = 'stone-path'}, - {position = {x = 7, y = 30}, name = 'stone-path'}, - {position = {x = 7, y = 31}, name = 'dirt-5'}, - {position = {x = 8, y = 0}, name = 'dirt-5'}, - {position = {x = 8, y = 1}, name = 'stone-path'}, - {position = {x = 8, y = 2}, name = 'stone-path'}, - {position = {x = 8, y = 3}, name = 'stone-path'}, - {position = {x = 8, y = 4}, name = 'stone-path'}, - {position = {x = 8, y = 5}, name = 'stone-path'}, - {position = {x = 8, y = 6}, name = 'stone-path'}, - {position = {x = 8, y = 7}, name = 'stone-path'}, - {position = {x = 8, y = 8}, name = 'stone-path'}, - {position = {x = 8, y = 9}, name = 'stone-path'}, - {position = {x = 8, y = 10}, name = 'stone-path'}, - {position = {x = 8, y = 11}, name = 'stone-path'}, - {position = {x = 8, y = 12}, name = 'stone-path'}, - {position = {x = 8, y = 13}, name = 'stone-path'}, - {position = {x = 8, y = 14}, name = 'stone-path'}, - {position = {x = 8, y = 15}, name = 'stone-path'}, - {position = {x = 8, y = 16}, name = 'stone-path'}, - {position = {x = 8, y = 17}, name = 'stone-path'}, - {position = {x = 8, y = 18}, name = 'stone-path'}, - {position = {x = 8, y = 19}, name = 'stone-path'}, - {position = {x = 8, y = 20}, name = 'stone-path'}, - {position = {x = 8, y = 21}, name = 'stone-path'}, - {position = {x = 8, y = 22}, name = 'stone-path'}, - {position = {x = 8, y = 23}, name = 'stone-path'}, - {position = {x = 8, y = 24}, name = 'stone-path'}, - {position = {x = 8, y = 25}, name = 'stone-path'}, - {position = {x = 8, y = 26}, name = 'stone-path'}, - {position = {x = 8, y = 27}, name = 'stone-path'}, - {position = {x = 8, y = 28}, name = 'stone-path'}, - {position = {x = 8, y = 29}, name = 'stone-path'}, - {position = {x = 8, y = 30}, name = 'stone-path'}, - {position = {x = 8, y = 31}, name = 'dirt-5'}, - {position = {x = 9, y = 0}, name = 'dirt-5'}, - {position = {x = 9, y = 1}, name = 'stone-path'}, - {position = {x = 9, y = 2}, name = 'stone-path'}, - {position = {x = 9, y = 3}, name = 'stone-path'}, - {position = {x = 9, y = 4}, name = 'stone-path'}, - {position = {x = 9, y = 5}, name = 'stone-path'}, - {position = {x = 9, y = 6}, name = 'stone-path'}, - {position = {x = 9, y = 7}, name = 'stone-path'}, - {position = {x = 9, y = 8}, name = 'stone-path'}, - {position = {x = 9, y = 9}, name = 'stone-path'}, - {position = {x = 9, y = 10}, name = 'stone-path'}, - {position = {x = 9, y = 11}, name = 'stone-path'}, - {position = {x = 9, y = 12}, name = 'stone-path'}, - {position = {x = 9, y = 13}, name = 'stone-path'}, - {position = {x = 9, y = 14}, name = 'stone-path'}, - {position = {x = 9, y = 15}, name = 'stone-path'}, - {position = {x = 9, y = 16}, name = 'stone-path'}, - {position = {x = 9, y = 17}, name = 'stone-path'}, - {position = {x = 9, y = 18}, name = 'stone-path'}, - {position = {x = 9, y = 19}, name = 'stone-path'}, - {position = {x = 9, y = 20}, name = 'stone-path'}, - {position = {x = 9, y = 21}, name = 'stone-path'}, - {position = {x = 9, y = 22}, name = 'stone-path'}, - {position = {x = 9, y = 23}, name = 'stone-path'}, - {position = {x = 9, y = 24}, name = 'stone-path'}, - {position = {x = 9, y = 25}, name = 'stone-path'}, - {position = {x = 9, y = 26}, name = 'stone-path'}, - {position = {x = 9, y = 27}, name = 'stone-path'}, - {position = {x = 9, y = 28}, name = 'stone-path'}, - {position = {x = 9, y = 29}, name = 'stone-path'}, - {position = {x = 9, y = 30}, name = 'stone-path'}, - {position = {x = 9, y = 31}, name = 'dirt-5'}, - {position = {x = 10, y = 0}, name = 'dirt-5'}, - {position = {x = 10, y = 1}, name = 'stone-path'}, - {position = {x = 10, y = 2}, name = 'stone-path'}, - {position = {x = 10, y = 3}, name = 'stone-path'}, - {position = {x = 10, y = 4}, name = 'stone-path'}, - {position = {x = 10, y = 5}, name = 'stone-path'}, - {position = {x = 10, y = 6}, name = 'stone-path'}, - {position = {x = 10, y = 7}, name = 'stone-path'}, - {position = {x = 10, y = 8}, name = 'stone-path'}, - {position = {x = 10, y = 9}, name = 'dirt-5'}, - {position = {x = 10, y = 10}, name = 'dirt-5'}, - {position = {x = 10, y = 11}, name = 'dirt-5'}, - {position = {x = 10, y = 12}, name = 'refined-concrete'}, - {position = {x = 10, y = 13}, name = 'refined-concrete'}, - {position = {x = 10, y = 14}, name = 'refined-concrete'}, - {position = {x = 10, y = 15}, name = 'refined-concrete'}, - {position = {x = 10, y = 16}, name = 'refined-concrete'}, - {position = {x = 10, y = 17}, name = 'refined-concrete'}, - {position = {x = 10, y = 18}, name = 'refined-concrete'}, - {position = {x = 10, y = 19}, name = 'refined-concrete'}, - {position = {x = 10, y = 20}, name = 'dirt-5'}, - {position = {x = 10, y = 21}, name = 'dirt-5'}, - {position = {x = 10, y = 22}, name = 'stone-path'}, - {position = {x = 10, y = 23}, name = 'stone-path'}, - {position = {x = 10, y = 24}, name = 'stone-path'}, - {position = {x = 10, y = 25}, name = 'stone-path'}, - {position = {x = 10, y = 26}, name = 'stone-path'}, - {position = {x = 10, y = 27}, name = 'stone-path'}, - {position = {x = 10, y = 28}, name = 'stone-path'}, - {position = {x = 10, y = 29}, name = 'stone-path'}, - {position = {x = 10, y = 30}, name = 'stone-path'}, - {position = {x = 10, y = 31}, name = 'dirt-5'}, - {position = {x = 11, y = 0}, name = 'dirt-5'}, - {position = {x = 11, y = 1}, name = 'stone-path'}, - {position = {x = 11, y = 2}, name = 'stone-path'}, - {position = {x = 11, y = 3}, name = 'stone-path'}, - {position = {x = 11, y = 4}, name = 'stone-path'}, - {position = {x = 11, y = 5}, name = 'stone-path'}, - {position = {x = 11, y = 6}, name = 'stone-path'}, - {position = {x = 11, y = 7}, name = 'stone-path'}, - {position = {x = 11, y = 8}, name = 'stone-path'}, - {position = {x = 11, y = 9}, name = 'dirt-5'}, - {position = {x = 11, y = 10}, name = 'dirt-5'}, - {position = {x = 11, y = 11}, name = 'refined-concrete'}, - {position = {x = 11, y = 12}, name = 'refined-concrete'}, - {position = {x = 11, y = 13}, name = 'refined-concrete'}, - {position = {x = 11, y = 14}, name = 'refined-concrete'}, - {position = {x = 11, y = 15}, name = 'refined-concrete'}, - {position = {x = 11, y = 16}, name = 'refined-concrete'}, - {position = {x = 11, y = 17}, name = 'refined-concrete'}, - {position = {x = 11, y = 18}, name = 'refined-concrete'}, - {position = {x = 11, y = 19}, name = 'refined-concrete'}, - {position = {x = 11, y = 20}, name = 'refined-concrete'}, - {position = {x = 11, y = 21}, name = 'dirt-5'}, - {position = {x = 11, y = 22}, name = 'stone-path'}, - {position = {x = 11, y = 23}, name = 'stone-path'}, - {position = {x = 11, y = 24}, name = 'stone-path'}, - {position = {x = 11, y = 25}, name = 'stone-path'}, - {position = {x = 11, y = 26}, name = 'stone-path'}, - {position = {x = 11, y = 27}, name = 'stone-path'}, - {position = {x = 11, y = 28}, name = 'stone-path'}, - {position = {x = 11, y = 29}, name = 'stone-path'}, - {position = {x = 11, y = 30}, name = 'stone-path'}, - {position = {x = 11, y = 31}, name = 'dirt-5'}, - {position = {x = 12, y = 0}, name = 'dirt-5'}, - {position = {x = 12, y = 1}, name = 'dirt-5'}, - {position = {x = 12, y = 2}, name = 'dirt-5'}, - {position = {x = 12, y = 3}, name = 'stone-path'}, - {position = {x = 12, y = 4}, name = 'stone-path'}, - {position = {x = 12, y = 5}, name = 'stone-path'}, - {position = {x = 12, y = 6}, name = 'stone-path'}, - {position = {x = 12, y = 7}, name = 'stone-path'}, - {position = {x = 12, y = 8}, name = 'stone-path'}, - {position = {x = 12, y = 9}, name = 'stone-path'}, - {position = {x = 12, y = 10}, name = 'refined-concrete'}, - {position = {x = 12, y = 11}, name = 'refined-concrete'}, - {position = {x = 12, y = 12}, name = 'refined-concrete'}, - {position = {x = 12, y = 13}, name = 'refined-concrete'}, - {position = {x = 12, y = 14}, name = 'refined-concrete'}, - {position = {x = 12, y = 15}, name = 'refined-concrete'}, - {position = {x = 12, y = 16}, name = 'refined-concrete'}, - {position = {x = 12, y = 17}, name = 'refined-concrete'}, - {position = {x = 12, y = 18}, name = 'refined-concrete'}, - {position = {x = 12, y = 19}, name = 'refined-concrete'}, - {position = {x = 12, y = 20}, name = 'refined-concrete'}, - {position = {x = 12, y = 21}, name = 'refined-concrete'}, - {position = {x = 12, y = 22}, name = 'stone-path'}, - {position = {x = 12, y = 23}, name = 'stone-path'}, - {position = {x = 12, y = 24}, name = 'stone-path'}, - {position = {x = 12, y = 25}, name = 'stone-path'}, - {position = {x = 12, y = 26}, name = 'stone-path'}, - {position = {x = 12, y = 27}, name = 'stone-path'}, - {position = {x = 12, y = 28}, name = 'stone-path'}, - {position = {x = 12, y = 29}, name = 'stone-path'}, - {position = {x = 12, y = 30}, name = 'dirt-5'}, - {position = {x = 12, y = 31}, name = 'dirt-5'}, - {position = {x = 13, y = 0}, name = 'dirt-5'}, - {position = {x = 13, y = 1}, name = 'dirt-5'}, - {position = {x = 13, y = 2}, name = 'stone-path'}, - {position = {x = 13, y = 3}, name = 'stone-path'}, - {position = {x = 13, y = 4}, name = 'stone-path'}, - {position = {x = 13, y = 5}, name = 'stone-path'}, - {position = {x = 13, y = 6}, name = 'stone-path'}, - {position = {x = 13, y = 7}, name = 'stone-path'}, - {position = {x = 13, y = 8}, name = 'stone-path'}, - {position = {x = 13, y = 9}, name = 'stone-path'}, - {position = {x = 13, y = 10}, name = 'refined-concrete'}, - {position = {x = 13, y = 11}, name = 'refined-concrete'}, - {position = {x = 13, y = 12}, name = 'refined-concrete'}, - {position = {x = 13, y = 13}, name = 'refined-concrete'}, - {position = {x = 13, y = 14}, name = 'refined-concrete'}, - {position = {x = 13, y = 15}, name = 'refined-concrete'}, - {position = {x = 13, y = 16}, name = 'refined-concrete'}, - {position = {x = 13, y = 17}, name = 'refined-concrete'}, - {position = {x = 13, y = 18}, name = 'refined-concrete'}, - {position = {x = 13, y = 19}, name = 'refined-concrete'}, - {position = {x = 13, y = 20}, name = 'refined-concrete'}, - {position = {x = 13, y = 21}, name = 'refined-concrete'}, - {position = {x = 13, y = 22}, name = 'stone-path'}, - {position = {x = 13, y = 23}, name = 'stone-path'}, - {position = {x = 13, y = 24}, name = 'stone-path'}, - {position = {x = 13, y = 25}, name = 'stone-path'}, - {position = {x = 13, y = 26}, name = 'stone-path'}, - {position = {x = 13, y = 27}, name = 'stone-path'}, - {position = {x = 13, y = 28}, name = 'stone-path'}, - {position = {x = 13, y = 29}, name = 'stone-path'}, - {position = {x = 13, y = 30}, name = 'dirt-5'}, - {position = {x = 13, y = 31}, name = 'dirt-5'}, - {position = {x = 14, y = 0}, name = 'dirt-5'}, - {position = {x = 14, y = 1}, name = 'dirt-5'}, - {position = {x = 14, y = 2}, name = 'stone-path'}, - {position = {x = 14, y = 3}, name = 'stone-path'}, - {position = {x = 14, y = 4}, name = 'stone-path'}, - {position = {x = 14, y = 5}, name = 'stone-path'}, - {position = {x = 14, y = 6}, name = 'stone-path'}, - {position = {x = 14, y = 7}, name = 'stone-path'}, - {position = {x = 14, y = 8}, name = 'stone-path'}, - {position = {x = 14, y = 9}, name = 'stone-path'}, - {position = {x = 14, y = 10}, name = 'refined-concrete'}, - {position = {x = 14, y = 11}, name = 'refined-concrete'}, - {position = {x = 14, y = 12}, name = 'refined-concrete'}, - {position = {x = 14, y = 13}, name = 'refined-concrete'}, - {position = {x = 14, y = 14}, name = 'refined-concrete'}, - {position = {x = 14, y = 15}, name = 'refined-concrete'}, - {position = {x = 14, y = 16}, name = 'refined-concrete'}, - {position = {x = 14, y = 17}, name = 'refined-concrete'}, - {position = {x = 14, y = 18}, name = 'refined-concrete'}, - {position = {x = 14, y = 19}, name = 'refined-concrete'}, - {position = {x = 14, y = 20}, name = 'refined-concrete'}, - {position = {x = 14, y = 21}, name = 'refined-concrete'}, - {position = {x = 14, y = 22}, name = 'stone-path'}, - {position = {x = 14, y = 23}, name = 'stone-path'}, - {position = {x = 14, y = 24}, name = 'stone-path'}, - {position = {x = 14, y = 25}, name = 'stone-path'}, - {position = {x = 14, y = 26}, name = 'stone-path'}, - {position = {x = 14, y = 27}, name = 'stone-path'}, - {position = {x = 14, y = 28}, name = 'stone-path'}, - {position = {x = 14, y = 29}, name = 'stone-path'}, - {position = {x = 14, y = 30}, name = 'dirt-5'}, - {position = {x = 14, y = 31}, name = 'dirt-5'}, - {position = {x = 15, y = 0}, name = 'dirt-5'}, - {position = {x = 15, y = 1}, name = 'dirt-5'}, - {position = {x = 15, y = 2}, name = 'stone-path'}, - {position = {x = 15, y = 3}, name = 'stone-path'}, - {position = {x = 15, y = 4}, name = 'stone-path'}, - {position = {x = 15, y = 5}, name = 'stone-path'}, - {position = {x = 15, y = 6}, name = 'stone-path'}, - {position = {x = 15, y = 7}, name = 'stone-path'}, - {position = {x = 15, y = 8}, name = 'stone-path'}, - {position = {x = 15, y = 9}, name = 'stone-path'}, - {position = {x = 15, y = 10}, name = 'refined-concrete'}, - {position = {x = 15, y = 11}, name = 'refined-concrete'}, - {position = {x = 15, y = 12}, name = 'refined-concrete'}, - {position = {x = 15, y = 13}, name = 'refined-concrete'}, - {position = {x = 15, y = 14}, name = 'refined-concrete'}, - {position = {x = 15, y = 15}, name = 'refined-concrete'}, - {position = {x = 15, y = 16}, name = 'refined-concrete'}, - {position = {x = 15, y = 17}, name = 'refined-concrete'}, - {position = {x = 15, y = 18}, name = 'refined-concrete'}, - {position = {x = 15, y = 19}, name = 'refined-concrete'}, - {position = {x = 15, y = 20}, name = 'refined-concrete'}, - {position = {x = 15, y = 21}, name = 'refined-concrete'}, - {position = {x = 15, y = 22}, name = 'stone-path'}, - {position = {x = 15, y = 23}, name = 'stone-path'}, - {position = {x = 15, y = 24}, name = 'stone-path'}, - {position = {x = 15, y = 25}, name = 'stone-path'}, - {position = {x = 15, y = 26}, name = 'stone-path'}, - {position = {x = 15, y = 27}, name = 'stone-path'}, - {position = {x = 15, y = 28}, name = 'stone-path'}, - {position = {x = 15, y = 29}, name = 'stone-path'}, - {position = {x = 15, y = 30}, name = 'dirt-5'}, - {position = {x = 15, y = 31}, name = 'dirt-5'}, - {position = {x = 16, y = 0}, name = 'dirt-5'}, - {position = {x = 16, y = 1}, name = 'dirt-5'}, - {position = {x = 16, y = 2}, name = 'stone-path'}, - {position = {x = 16, y = 3}, name = 'stone-path'}, - {position = {x = 16, y = 4}, name = 'stone-path'}, - {position = {x = 16, y = 5}, name = 'stone-path'}, - {position = {x = 16, y = 6}, name = 'stone-path'}, - {position = {x = 16, y = 7}, name = 'stone-path'}, - {position = {x = 16, y = 8}, name = 'stone-path'}, - {position = {x = 16, y = 9}, name = 'stone-path'}, - {position = {x = 16, y = 10}, name = 'refined-concrete'}, - {position = {x = 16, y = 11}, name = 'refined-concrete'}, - {position = {x = 16, y = 12}, name = 'refined-concrete'}, - {position = {x = 16, y = 13}, name = 'refined-concrete'}, - {position = {x = 16, y = 14}, name = 'refined-concrete'}, - {position = {x = 16, y = 15}, name = 'refined-concrete'}, - {position = {x = 16, y = 16}, name = 'refined-concrete'}, - {position = {x = 16, y = 17}, name = 'refined-concrete'}, - {position = {x = 16, y = 18}, name = 'refined-concrete'}, - {position = {x = 16, y = 19}, name = 'refined-concrete'}, - {position = {x = 16, y = 20}, name = 'refined-concrete'}, - {position = {x = 16, y = 21}, name = 'refined-concrete'}, - {position = {x = 16, y = 22}, name = 'stone-path'}, - {position = {x = 16, y = 23}, name = 'stone-path'}, - {position = {x = 16, y = 24}, name = 'stone-path'}, - {position = {x = 16, y = 25}, name = 'stone-path'}, - {position = {x = 16, y = 26}, name = 'stone-path'}, - {position = {x = 16, y = 27}, name = 'stone-path'}, - {position = {x = 16, y = 28}, name = 'stone-path'}, - {position = {x = 16, y = 29}, name = 'stone-path'}, - {position = {x = 16, y = 30}, name = 'dirt-5'}, - {position = {x = 16, y = 31}, name = 'dirt-5'}, - {position = {x = 17, y = 0}, name = 'dirt-5'}, - {position = {x = 17, y = 1}, name = 'dirt-5'}, - {position = {x = 17, y = 2}, name = 'stone-path'}, - {position = {x = 17, y = 3}, name = 'stone-path'}, - {position = {x = 17, y = 4}, name = 'stone-path'}, - {position = {x = 17, y = 5}, name = 'stone-path'}, - {position = {x = 17, y = 6}, name = 'stone-path'}, - {position = {x = 17, y = 7}, name = 'stone-path'}, - {position = {x = 17, y = 8}, name = 'stone-path'}, - {position = {x = 17, y = 9}, name = 'stone-path'}, - {position = {x = 17, y = 10}, name = 'refined-concrete'}, - {position = {x = 17, y = 11}, name = 'refined-concrete'}, - {position = {x = 17, y = 12}, name = 'refined-concrete'}, - {position = {x = 17, y = 13}, name = 'refined-concrete'}, - {position = {x = 17, y = 14}, name = 'refined-concrete'}, - {position = {x = 17, y = 15}, name = 'refined-concrete'}, - {position = {x = 17, y = 16}, name = 'refined-concrete'}, - {position = {x = 17, y = 17}, name = 'refined-concrete'}, - {position = {x = 17, y = 18}, name = 'refined-concrete'}, - {position = {x = 17, y = 19}, name = 'refined-concrete'}, - {position = {x = 17, y = 20}, name = 'refined-concrete'}, - {position = {x = 17, y = 21}, name = 'refined-concrete'}, - {position = {x = 17, y = 22}, name = 'stone-path'}, - {position = {x = 17, y = 23}, name = 'stone-path'}, - {position = {x = 17, y = 24}, name = 'stone-path'}, - {position = {x = 17, y = 25}, name = 'stone-path'}, - {position = {x = 17, y = 26}, name = 'stone-path'}, - {position = {x = 17, y = 27}, name = 'stone-path'}, - {position = {x = 17, y = 28}, name = 'stone-path'}, - {position = {x = 17, y = 29}, name = 'stone-path'}, - {position = {x = 17, y = 30}, name = 'dirt-5'}, - {position = {x = 17, y = 31}, name = 'dirt-5'}, - {position = {x = 18, y = 0}, name = 'dirt-5'}, - {position = {x = 18, y = 1}, name = 'dirt-5'}, - {position = {x = 18, y = 2}, name = 'stone-path'}, - {position = {x = 18, y = 3}, name = 'stone-path'}, - {position = {x = 18, y = 4}, name = 'stone-path'}, - {position = {x = 18, y = 5}, name = 'stone-path'}, - {position = {x = 18, y = 6}, name = 'stone-path'}, - {position = {x = 18, y = 7}, name = 'stone-path'}, - {position = {x = 18, y = 8}, name = 'stone-path'}, - {position = {x = 18, y = 9}, name = 'stone-path'}, - {position = {x = 18, y = 10}, name = 'refined-concrete'}, - {position = {x = 18, y = 11}, name = 'refined-concrete'}, - {position = {x = 18, y = 12}, name = 'refined-concrete'}, - {position = {x = 18, y = 13}, name = 'refined-concrete'}, - {position = {x = 18, y = 14}, name = 'refined-concrete'}, - {position = {x = 18, y = 15}, name = 'refined-concrete'}, - {position = {x = 18, y = 16}, name = 'refined-concrete'}, - {position = {x = 18, y = 17}, name = 'refined-concrete'}, - {position = {x = 18, y = 18}, name = 'refined-concrete'}, - {position = {x = 18, y = 19}, name = 'refined-concrete'}, - {position = {x = 18, y = 20}, name = 'refined-concrete'}, - {position = {x = 18, y = 21}, name = 'refined-concrete'}, - {position = {x = 18, y = 22}, name = 'stone-path'}, - {position = {x = 18, y = 23}, name = 'stone-path'}, - {position = {x = 18, y = 24}, name = 'stone-path'}, - {position = {x = 18, y = 25}, name = 'stone-path'}, - {position = {x = 18, y = 26}, name = 'stone-path'}, - {position = {x = 18, y = 27}, name = 'stone-path'}, - {position = {x = 18, y = 28}, name = 'stone-path'}, - {position = {x = 18, y = 29}, name = 'stone-path'}, - {position = {x = 18, y = 30}, name = 'dirt-5'}, - {position = {x = 18, y = 31}, name = 'dirt-5'}, - {position = {x = 19, y = 0}, name = 'dirt-5'}, - {position = {x = 19, y = 1}, name = 'dirt-5'}, - {position = {x = 19, y = 2}, name = 'dirt-5'}, - {position = {x = 19, y = 3}, name = 'stone-path'}, - {position = {x = 19, y = 4}, name = 'stone-path'}, - {position = {x = 19, y = 5}, name = 'stone-path'}, - {position = {x = 19, y = 6}, name = 'stone-path'}, - {position = {x = 19, y = 7}, name = 'stone-path'}, - {position = {x = 19, y = 8}, name = 'stone-path'}, - {position = {x = 19, y = 9}, name = 'stone-path'}, - {position = {x = 19, y = 10}, name = 'refined-concrete'}, - {position = {x = 19, y = 11}, name = 'refined-concrete'}, - {position = {x = 19, y = 12}, name = 'refined-concrete'}, - {position = {x = 19, y = 13}, name = 'refined-concrete'}, - {position = {x = 19, y = 14}, name = 'refined-concrete'}, - {position = {x = 19, y = 15}, name = 'refined-concrete'}, - {position = {x = 19, y = 16}, name = 'refined-concrete'}, - {position = {x = 19, y = 17}, name = 'refined-concrete'}, - {position = {x = 19, y = 18}, name = 'refined-concrete'}, - {position = {x = 19, y = 19}, name = 'refined-concrete'}, - {position = {x = 19, y = 20}, name = 'refined-concrete'}, - {position = {x = 19, y = 21}, name = 'refined-concrete'}, - {position = {x = 19, y = 22}, name = 'stone-path'}, - {position = {x = 19, y = 23}, name = 'stone-path'}, - {position = {x = 19, y = 24}, name = 'stone-path'}, - {position = {x = 19, y = 25}, name = 'stone-path'}, - {position = {x = 19, y = 26}, name = 'stone-path'}, - {position = {x = 19, y = 27}, name = 'stone-path'}, - {position = {x = 19, y = 28}, name = 'stone-path'}, - {position = {x = 19, y = 29}, name = 'stone-path'}, - {position = {x = 19, y = 30}, name = 'dirt-5'}, - {position = {x = 19, y = 31}, name = 'dirt-5'}, - {position = {x = 20, y = 0}, name = 'dirt-5'}, - {position = {x = 20, y = 1}, name = 'stone-path'}, - {position = {x = 20, y = 2}, name = 'stone-path'}, - {position = {x = 20, y = 3}, name = 'stone-path'}, - {position = {x = 20, y = 4}, name = 'stone-path'}, - {position = {x = 20, y = 5}, name = 'stone-path'}, - {position = {x = 20, y = 6}, name = 'stone-path'}, - {position = {x = 20, y = 7}, name = 'stone-path'}, - {position = {x = 20, y = 8}, name = 'stone-path'}, - {position = {x = 20, y = 9}, name = 'stone-path'}, - {position = {x = 20, y = 10}, name = 'stone-path'}, - {position = {x = 20, y = 11}, name = 'refined-concrete'}, - {position = {x = 20, y = 12}, name = 'refined-concrete'}, - {position = {x = 20, y = 13}, name = 'refined-concrete'}, - {position = {x = 20, y = 14}, name = 'refined-concrete'}, - {position = {x = 20, y = 15}, name = 'refined-concrete'}, - {position = {x = 20, y = 16}, name = 'refined-concrete'}, - {position = {x = 20, y = 17}, name = 'refined-concrete'}, - {position = {x = 20, y = 18}, name = 'refined-concrete'}, - {position = {x = 20, y = 19}, name = 'refined-concrete'}, - {position = {x = 20, y = 20}, name = 'refined-concrete'}, - {position = {x = 20, y = 21}, name = 'dirt-5'}, - {position = {x = 20, y = 22}, name = 'stone-path'}, - {position = {x = 20, y = 23}, name = 'stone-path'}, - {position = {x = 20, y = 24}, name = 'stone-path'}, - {position = {x = 20, y = 25}, name = 'stone-path'}, - {position = {x = 20, y = 26}, name = 'stone-path'}, - {position = {x = 20, y = 27}, name = 'stone-path'}, - {position = {x = 20, y = 28}, name = 'stone-path'}, - {position = {x = 20, y = 29}, name = 'stone-path'}, - {position = {x = 20, y = 30}, name = 'stone-path'}, - {position = {x = 20, y = 31}, name = 'dirt-5'}, - {position = {x = 21, y = 0}, name = 'dirt-5'}, - {position = {x = 21, y = 1}, name = 'stone-path'}, - {position = {x = 21, y = 2}, name = 'stone-path'}, - {position = {x = 21, y = 3}, name = 'stone-path'}, - {position = {x = 21, y = 4}, name = 'stone-path'}, - {position = {x = 21, y = 5}, name = 'stone-path'}, - {position = {x = 21, y = 6}, name = 'stone-path'}, - {position = {x = 21, y = 7}, name = 'stone-path'}, - {position = {x = 21, y = 8}, name = 'stone-path'}, - {position = {x = 21, y = 9}, name = 'stone-path'}, - {position = {x = 21, y = 10}, name = 'stone-path'}, - {position = {x = 21, y = 11}, name = 'stone-path'}, - {position = {x = 21, y = 12}, name = 'refined-concrete'}, - {position = {x = 21, y = 13}, name = 'refined-concrete'}, - {position = {x = 21, y = 14}, name = 'refined-concrete'}, - {position = {x = 21, y = 15}, name = 'refined-concrete'}, - {position = {x = 21, y = 16}, name = 'refined-concrete'}, - {position = {x = 21, y = 17}, name = 'refined-concrete'}, - {position = {x = 21, y = 18}, name = 'refined-concrete'}, - {position = {x = 21, y = 19}, name = 'refined-concrete'}, - {position = {x = 21, y = 20}, name = 'dirt-5'}, - {position = {x = 21, y = 21}, name = 'stone-path'}, - {position = {x = 21, y = 22}, name = 'stone-path'}, - {position = {x = 21, y = 23}, name = 'stone-path'}, - {position = {x = 21, y = 24}, name = 'stone-path'}, - {position = {x = 21, y = 25}, name = 'stone-path'}, - {position = {x = 21, y = 26}, name = 'stone-path'}, - {position = {x = 21, y = 27}, name = 'stone-path'}, - {position = {x = 21, y = 28}, name = 'stone-path'}, - {position = {x = 21, y = 29}, name = 'stone-path'}, - {position = {x = 21, y = 30}, name = 'stone-path'}, - {position = {x = 21, y = 31}, name = 'dirt-5'}, - {position = {x = 22, y = 0}, name = 'dirt-5'}, - {position = {x = 22, y = 1}, name = 'stone-path'}, - {position = {x = 22, y = 2}, name = 'stone-path'}, - {position = {x = 22, y = 3}, name = 'stone-path'}, - {position = {x = 22, y = 4}, name = 'stone-path'}, - {position = {x = 22, y = 5}, name = 'stone-path'}, - {position = {x = 22, y = 6}, name = 'stone-path'}, - {position = {x = 22, y = 7}, name = 'stone-path'}, - {position = {x = 22, y = 8}, name = 'stone-path'}, - {position = {x = 22, y = 9}, name = 'stone-path'}, - {position = {x = 22, y = 10}, name = 'stone-path'}, - {position = {x = 22, y = 11}, name = 'stone-path'}, - {position = {x = 22, y = 12}, name = 'stone-path'}, - {position = {x = 22, y = 13}, name = 'stone-path'}, - {position = {x = 22, y = 14}, name = 'stone-path'}, - {position = {x = 22, y = 15}, name = 'stone-path'}, - {position = {x = 22, y = 16}, name = 'stone-path'}, - {position = {x = 22, y = 17}, name = 'stone-path'}, - {position = {x = 22, y = 18}, name = 'stone-path'}, - {position = {x = 22, y = 19}, name = 'stone-path'}, - {position = {x = 22, y = 20}, name = 'stone-path'}, - {position = {x = 22, y = 21}, name = 'stone-path'}, - {position = {x = 22, y = 22}, name = 'stone-path'}, - {position = {x = 22, y = 23}, name = 'stone-path'}, - {position = {x = 22, y = 24}, name = 'stone-path'}, - {position = {x = 22, y = 25}, name = 'stone-path'}, - {position = {x = 22, y = 26}, name = 'stone-path'}, - {position = {x = 22, y = 27}, name = 'stone-path'}, - {position = {x = 22, y = 28}, name = 'stone-path'}, - {position = {x = 22, y = 29}, name = 'stone-path'}, - {position = {x = 22, y = 30}, name = 'stone-path'}, - {position = {x = 22, y = 31}, name = 'dirt-5'}, - {position = {x = 23, y = 0}, name = 'dirt-5'}, - {position = {x = 23, y = 1}, name = 'stone-path'}, - {position = {x = 23, y = 2}, name = 'stone-path'}, - {position = {x = 23, y = 3}, name = 'stone-path'}, - {position = {x = 23, y = 4}, name = 'stone-path'}, - {position = {x = 23, y = 5}, name = 'stone-path'}, - {position = {x = 23, y = 6}, name = 'stone-path'}, - {position = {x = 23, y = 7}, name = 'stone-path'}, - {position = {x = 23, y = 8}, name = 'stone-path'}, - {position = {x = 23, y = 9}, name = 'stone-path'}, - {position = {x = 23, y = 10}, name = 'stone-path'}, - {position = {x = 23, y = 11}, name = 'stone-path'}, - {position = {x = 23, y = 12}, name = 'stone-path'}, - {position = {x = 23, y = 13}, name = 'stone-path'}, - {position = {x = 23, y = 14}, name = 'stone-path'}, - {position = {x = 23, y = 15}, name = 'stone-path'}, - {position = {x = 23, y = 16}, name = 'stone-path'}, - {position = {x = 23, y = 17}, name = 'stone-path'}, - {position = {x = 23, y = 18}, name = 'stone-path'}, - {position = {x = 23, y = 19}, name = 'stone-path'}, - {position = {x = 23, y = 20}, name = 'stone-path'}, - {position = {x = 23, y = 21}, name = 'stone-path'}, - {position = {x = 23, y = 22}, name = 'stone-path'}, - {position = {x = 23, y = 23}, name = 'stone-path'}, - {position = {x = 23, y = 24}, name = 'stone-path'}, - {position = {x = 23, y = 25}, name = 'stone-path'}, - {position = {x = 23, y = 26}, name = 'stone-path'}, - {position = {x = 23, y = 27}, name = 'stone-path'}, - {position = {x = 23, y = 28}, name = 'stone-path'}, - {position = {x = 23, y = 29}, name = 'stone-path'}, - {position = {x = 23, y = 30}, name = 'stone-path'}, - {position = {x = 23, y = 31}, name = 'dirt-5'}, - {position = {x = 24, y = 0}, name = 'dirt-5'}, - {position = {x = 24, y = 1}, name = 'stone-path'}, - {position = {x = 24, y = 2}, name = 'stone-path'}, - {position = {x = 24, y = 3}, name = 'stone-path'}, - {position = {x = 24, y = 4}, name = 'stone-path'}, - {position = {x = 24, y = 5}, name = 'stone-path'}, - {position = {x = 24, y = 6}, name = 'stone-path'}, - {position = {x = 24, y = 7}, name = 'stone-path'}, - {position = {x = 24, y = 8}, name = 'stone-path'}, - {position = {x = 24, y = 9}, name = 'stone-path'}, - {position = {x = 24, y = 10}, name = 'stone-path'}, - {position = {x = 24, y = 11}, name = 'stone-path'}, - {position = {x = 24, y = 12}, name = 'stone-path'}, - {position = {x = 24, y = 13}, name = 'stone-path'}, - {position = {x = 24, y = 14}, name = 'stone-path'}, - {position = {x = 24, y = 15}, name = 'stone-path'}, - {position = {x = 24, y = 16}, name = 'stone-path'}, - {position = {x = 24, y = 17}, name = 'stone-path'}, - {position = {x = 24, y = 18}, name = 'stone-path'}, - {position = {x = 24, y = 19}, name = 'stone-path'}, - {position = {x = 24, y = 20}, name = 'stone-path'}, - {position = {x = 24, y = 21}, name = 'stone-path'}, - {position = {x = 24, y = 22}, name = 'stone-path'}, - {position = {x = 24, y = 23}, name = 'stone-path'}, - {position = {x = 24, y = 24}, name = 'stone-path'}, - {position = {x = 24, y = 25}, name = 'stone-path'}, - {position = {x = 24, y = 26}, name = 'stone-path'}, - {position = {x = 24, y = 27}, name = 'stone-path'}, - {position = {x = 24, y = 28}, name = 'stone-path'}, - {position = {x = 24, y = 29}, name = 'stone-path'}, - {position = {x = 24, y = 30}, name = 'stone-path'}, - {position = {x = 24, y = 31}, name = 'dirt-5'}, - {position = {x = 25, y = 0}, name = 'dirt-5'}, - {position = {x = 25, y = 1}, name = 'stone-path'}, - {position = {x = 25, y = 2}, name = 'stone-path'}, - {position = {x = 25, y = 3}, name = 'stone-path'}, - {position = {x = 25, y = 4}, name = 'stone-path'}, - {position = {x = 25, y = 5}, name = 'stone-path'}, - {position = {x = 25, y = 6}, name = 'stone-path'}, - {position = {x = 25, y = 7}, name = 'stone-path'}, - {position = {x = 25, y = 8}, name = 'stone-path'}, - {position = {x = 25, y = 9}, name = 'stone-path'}, - {position = {x = 25, y = 10}, name = 'stone-path'}, - {position = {x = 25, y = 11}, name = 'stone-path'}, - {position = {x = 25, y = 12}, name = 'stone-path'}, - {position = {x = 25, y = 13}, name = 'stone-path'}, - {position = {x = 25, y = 14}, name = 'stone-path'}, - {position = {x = 25, y = 15}, name = 'stone-path'}, - {position = {x = 25, y = 16}, name = 'stone-path'}, - {position = {x = 25, y = 17}, name = 'stone-path'}, - {position = {x = 25, y = 18}, name = 'stone-path'}, - {position = {x = 25, y = 19}, name = 'stone-path'}, - {position = {x = 25, y = 20}, name = 'stone-path'}, - {position = {x = 25, y = 21}, name = 'stone-path'}, - {position = {x = 25, y = 22}, name = 'stone-path'}, - {position = {x = 25, y = 23}, name = 'stone-path'}, - {position = {x = 25, y = 24}, name = 'stone-path'}, - {position = {x = 25, y = 25}, name = 'stone-path'}, - {position = {x = 25, y = 26}, name = 'stone-path'}, - {position = {x = 25, y = 27}, name = 'stone-path'}, - {position = {x = 25, y = 28}, name = 'stone-path'}, - {position = {x = 25, y = 29}, name = 'stone-path'}, - {position = {x = 25, y = 30}, name = 'stone-path'}, - {position = {x = 25, y = 31}, name = 'dirt-5'}, - {position = {x = 26, y = 0}, name = 'dirt-5'}, - {position = {x = 26, y = 1}, name = 'stone-path'}, - {position = {x = 26, y = 2}, name = 'stone-path'}, - {position = {x = 26, y = 3}, name = 'stone-path'}, - {position = {x = 26, y = 4}, name = 'stone-path'}, - {position = {x = 26, y = 5}, name = 'stone-path'}, - {position = {x = 26, y = 6}, name = 'stone-path'}, - {position = {x = 26, y = 7}, name = 'stone-path'}, - {position = {x = 26, y = 8}, name = 'stone-path'}, - {position = {x = 26, y = 9}, name = 'stone-path'}, - {position = {x = 26, y = 10}, name = 'stone-path'}, - {position = {x = 26, y = 11}, name = 'stone-path'}, - {position = {x = 26, y = 12}, name = 'stone-path'}, - {position = {x = 26, y = 13}, name = 'stone-path'}, - {position = {x = 26, y = 14}, name = 'stone-path'}, - {position = {x = 26, y = 15}, name = 'stone-path'}, - {position = {x = 26, y = 16}, name = 'stone-path'}, - {position = {x = 26, y = 17}, name = 'stone-path'}, - {position = {x = 26, y = 18}, name = 'stone-path'}, - {position = {x = 26, y = 19}, name = 'stone-path'}, - {position = {x = 26, y = 20}, name = 'stone-path'}, - {position = {x = 26, y = 21}, name = 'stone-path'}, - {position = {x = 26, y = 22}, name = 'stone-path'}, - {position = {x = 26, y = 23}, name = 'stone-path'}, - {position = {x = 26, y = 24}, name = 'stone-path'}, - {position = {x = 26, y = 25}, name = 'stone-path'}, - {position = {x = 26, y = 26}, name = 'stone-path'}, - {position = {x = 26, y = 27}, name = 'stone-path'}, - {position = {x = 26, y = 28}, name = 'stone-path'}, - {position = {x = 26, y = 29}, name = 'stone-path'}, - {position = {x = 26, y = 30}, name = 'stone-path'}, - {position = {x = 26, y = 31}, name = 'dirt-5'}, - {position = {x = 27, y = 0}, name = 'dirt-5'}, - {position = {x = 27, y = 1}, name = 'stone-path'}, - {position = {x = 27, y = 2}, name = 'stone-path'}, - {position = {x = 27, y = 3}, name = 'stone-path'}, - {position = {x = 27, y = 4}, name = 'stone-path'}, - {position = {x = 27, y = 5}, name = 'stone-path'}, - {position = {x = 27, y = 6}, name = 'stone-path'}, - {position = {x = 27, y = 7}, name = 'stone-path'}, - {position = {x = 27, y = 8}, name = 'stone-path'}, - {position = {x = 27, y = 9}, name = 'stone-path'}, - {position = {x = 27, y = 10}, name = 'stone-path'}, - {position = {x = 27, y = 11}, name = 'stone-path'}, - {position = {x = 27, y = 12}, name = 'stone-path'}, - {position = {x = 27, y = 13}, name = 'stone-path'}, - {position = {x = 27, y = 14}, name = 'stone-path'}, - {position = {x = 27, y = 15}, name = 'stone-path'}, - {position = {x = 27, y = 16}, name = 'stone-path'}, - {position = {x = 27, y = 17}, name = 'stone-path'}, - {position = {x = 27, y = 18}, name = 'stone-path'}, - {position = {x = 27, y = 19}, name = 'stone-path'}, - {position = {x = 27, y = 20}, name = 'stone-path'}, - {position = {x = 27, y = 21}, name = 'stone-path'}, - {position = {x = 27, y = 22}, name = 'stone-path'}, - {position = {x = 27, y = 23}, name = 'stone-path'}, - {position = {x = 27, y = 24}, name = 'stone-path'}, - {position = {x = 27, y = 25}, name = 'stone-path'}, - {position = {x = 27, y = 26}, name = 'stone-path'}, - {position = {x = 27, y = 27}, name = 'stone-path'}, - {position = {x = 27, y = 28}, name = 'stone-path'}, - {position = {x = 27, y = 29}, name = 'stone-path'}, - {position = {x = 27, y = 30}, name = 'stone-path'}, - {position = {x = 27, y = 31}, name = 'dirt-5'}, - {position = {x = 28, y = 0}, name = 'dirt-5'}, - {position = {x = 28, y = 1}, name = 'stone-path'}, - {position = {x = 28, y = 2}, name = 'stone-path'}, - {position = {x = 28, y = 3}, name = 'stone-path'}, - {position = {x = 28, y = 4}, name = 'stone-path'}, - {position = {x = 28, y = 5}, name = 'stone-path'}, - {position = {x = 28, y = 6}, name = 'stone-path'}, - {position = {x = 28, y = 7}, name = 'stone-path'}, - {position = {x = 28, y = 8}, name = 'stone-path'}, - {position = {x = 28, y = 9}, name = 'stone-path'}, - {position = {x = 28, y = 10}, name = 'stone-path'}, - {position = {x = 28, y = 11}, name = 'stone-path'}, - {position = {x = 28, y = 12}, name = 'stone-path'}, - {position = {x = 28, y = 13}, name = 'stone-path'}, - {position = {x = 28, y = 14}, name = 'stone-path'}, - {position = {x = 28, y = 15}, name = 'stone-path'}, - {position = {x = 28, y = 16}, name = 'stone-path'}, - {position = {x = 28, y = 17}, name = 'stone-path'}, - {position = {x = 28, y = 18}, name = 'stone-path'}, - {position = {x = 28, y = 19}, name = 'stone-path'}, - {position = {x = 28, y = 20}, name = 'stone-path'}, - {position = {x = 28, y = 21}, name = 'stone-path'}, - {position = {x = 28, y = 22}, name = 'stone-path'}, - {position = {x = 28, y = 23}, name = 'stone-path'}, - {position = {x = 28, y = 24}, name = 'stone-path'}, - {position = {x = 28, y = 25}, name = 'stone-path'}, - {position = {x = 28, y = 26}, name = 'stone-path'}, - {position = {x = 28, y = 27}, name = 'stone-path'}, - {position = {x = 28, y = 28}, name = 'stone-path'}, - {position = {x = 28, y = 29}, name = 'stone-path'}, - {position = {x = 28, y = 30}, name = 'stone-path'}, - {position = {x = 28, y = 31}, name = 'dirt-5'}, - {position = {x = 29, y = 0}, name = 'dirt-5'}, - {position = {x = 29, y = 1}, name = 'stone-path'}, - {position = {x = 29, y = 2}, name = 'stone-path'}, - {position = {x = 29, y = 3}, name = 'stone-path'}, - {position = {x = 29, y = 4}, name = 'stone-path'}, - {position = {x = 29, y = 5}, name = 'stone-path'}, - {position = {x = 29, y = 6}, name = 'stone-path'}, - {position = {x = 29, y = 7}, name = 'stone-path'}, - {position = {x = 29, y = 8}, name = 'stone-path'}, - {position = {x = 29, y = 9}, name = 'stone-path'}, - {position = {x = 29, y = 10}, name = 'stone-path'}, - {position = {x = 29, y = 11}, name = 'stone-path'}, - {position = {x = 29, y = 12}, name = 'dirt-5'}, - {position = {x = 29, y = 13}, name = 'stone-path'}, - {position = {x = 29, y = 14}, name = 'stone-path'}, - {position = {x = 29, y = 15}, name = 'stone-path'}, - {position = {x = 29, y = 16}, name = 'stone-path'}, - {position = {x = 29, y = 17}, name = 'stone-path'}, - {position = {x = 29, y = 18}, name = 'stone-path'}, - {position = {x = 29, y = 19}, name = 'dirt-5'}, - {position = {x = 29, y = 20}, name = 'stone-path'}, - {position = {x = 29, y = 21}, name = 'stone-path'}, - {position = {x = 29, y = 22}, name = 'stone-path'}, - {position = {x = 29, y = 23}, name = 'stone-path'}, - {position = {x = 29, y = 24}, name = 'stone-path'}, - {position = {x = 29, y = 25}, name = 'stone-path'}, - {position = {x = 29, y = 26}, name = 'stone-path'}, - {position = {x = 29, y = 27}, name = 'stone-path'}, - {position = {x = 29, y = 28}, name = 'stone-path'}, - {position = {x = 29, y = 29}, name = 'stone-path'}, - {position = {x = 29, y = 30}, name = 'stone-path'}, - {position = {x = 29, y = 31}, name = 'dirt-5'}, - {position = {x = 30, y = 0}, name = 'dirt-5'}, - {position = {x = 30, y = 1}, name = 'stone-path'}, - {position = {x = 30, y = 2}, name = 'stone-path'}, - {position = {x = 30, y = 3}, name = 'stone-path'}, - {position = {x = 30, y = 4}, name = 'stone-path'}, - {position = {x = 30, y = 5}, name = 'stone-path'}, - {position = {x = 30, y = 6}, name = 'stone-path'}, - {position = {x = 30, y = 7}, name = 'stone-path'}, - {position = {x = 30, y = 8}, name = 'stone-path'}, - {position = {x = 30, y = 9}, name = 'stone-path'}, - {position = {x = 30, y = 10}, name = 'stone-path'}, - {position = {x = 30, y = 11}, name = 'stone-path'}, - {position = {x = 30, y = 12}, name = 'dirt-5'}, - {position = {x = 30, y = 13}, name = 'dirt-5'}, - {position = {x = 30, y = 14}, name = 'dirt-5'}, - {position = {x = 30, y = 15}, name = 'dirt-5'}, - {position = {x = 30, y = 16}, name = 'dirt-5'}, - {position = {x = 30, y = 17}, name = 'dirt-5'}, - {position = {x = 30, y = 18}, name = 'dirt-5'}, - {position = {x = 30, y = 19}, name = 'dirt-5'}, - {position = {x = 30, y = 20}, name = 'stone-path'}, - {position = {x = 30, y = 21}, name = 'stone-path'}, - {position = {x = 30, y = 22}, name = 'stone-path'}, - {position = {x = 30, y = 23}, name = 'stone-path'}, - {position = {x = 30, y = 24}, name = 'stone-path'}, - {position = {x = 30, y = 25}, name = 'stone-path'}, - {position = {x = 30, y = 26}, name = 'stone-path'}, - {position = {x = 30, y = 27}, name = 'stone-path'}, - {position = {x = 30, y = 28}, name = 'stone-path'}, - {position = {x = 30, y = 29}, name = 'stone-path'}, - {position = {x = 30, y = 30}, name = 'stone-path'}, - {position = {x = 30, y = 31}, name = 'dirt-5'}, - {position = {x = 31, y = 0}, name = 'dirt-5'}, - {position = {x = 31, y = 1}, name = 'dirt-5'}, - {position = {x = 31, y = 2}, name = 'dirt-5'}, - {position = {x = 31, y = 3}, name = 'dirt-5'}, - {position = {x = 31, y = 4}, name = 'dirt-5'}, - {position = {x = 31, y = 5}, name = 'dirt-5'}, - {position = {x = 31, y = 6}, name = 'dirt-5'}, - {position = {x = 31, y = 7}, name = 'dirt-5'}, - {position = {x = 31, y = 8}, name = 'dirt-5'}, - {position = {x = 31, y = 9}, name = 'dirt-5'}, - {position = {x = 31, y = 10}, name = 'dirt-5'}, - {position = {x = 31, y = 11}, name = 'dirt-5'}, - {position = {x = 31, y = 12}, name = 'dirt-5'}, - {position = {x = 31, y = 13}, name = 'dirt-5'}, - {position = {x = 31, y = 14}, name = 'dirt-5'}, - {position = {x = 31, y = 15}, name = 'dirt-5'}, - {position = {x = 31, y = 16}, name = 'dirt-5'}, - {position = {x = 31, y = 17}, name = 'dirt-5'}, - {position = {x = 31, y = 18}, name = 'dirt-5'}, - {position = {x = 31, y = 19}, name = 'dirt-5'}, - {position = {x = 31, y = 20}, name = 'dirt-5'}, - {position = {x = 31, y = 21}, name = 'dirt-5'}, - {position = {x = 31, y = 22}, name = 'dirt-5'}, - {position = {x = 31, y = 23}, name = 'dirt-5'}, - {position = {x = 31, y = 24}, name = 'dirt-5'}, - {position = {x = 31, y = 25}, name = 'dirt-5'}, - {position = {x = 31, y = 26}, name = 'dirt-5'}, - {position = {x = 31, y = 27}, name = 'dirt-5'}, - {position = {x = 31, y = 28}, name = 'dirt-5'}, - {position = {x = 31, y = 29}, name = 'dirt-5'}, - {position = {x = 31, y = 30}, name = 'dirt-5'}, - {position = {x = 31, y = 31}, name = 'dirt-5'} + { position = { x = 0, y = 0 }, name = 'dirt-5' }, + { position = { x = 0, y = 1 }, name = 'dirt-5' }, + { position = { x = 0, y = 2 }, name = 'dirt-5' }, + { position = { x = 0, y = 3 }, name = 'dirt-5' }, + { position = { x = 0, y = 4 }, name = 'dirt-5' }, + { position = { x = 0, y = 5 }, name = 'dirt-5' }, + { position = { x = 0, y = 6 }, name = 'dirt-5' }, + { position = { x = 0, y = 7 }, name = 'dirt-5' }, + { position = { x = 0, y = 8 }, name = 'dirt-5' }, + { position = { x = 0, y = 9 }, name = 'dirt-5' }, + { position = { x = 0, y = 10 }, name = 'dirt-5' }, + { position = { x = 0, y = 11 }, name = 'dirt-5' }, + { position = { x = 0, y = 12 }, name = 'dirt-5' }, + { position = { x = 0, y = 13 }, name = 'dirt-5' }, + { position = { x = 0, y = 14 }, name = 'dirt-5' }, + { position = { x = 0, y = 15 }, name = 'dirt-5' }, + { position = { x = 0, y = 16 }, name = 'dirt-5' }, + { position = { x = 0, y = 17 }, name = 'dirt-5' }, + { position = { x = 0, y = 18 }, name = 'dirt-5' }, + { position = { x = 0, y = 19 }, name = 'dirt-5' }, + { position = { x = 0, y = 20 }, name = 'dirt-5' }, + { position = { x = 0, y = 21 }, name = 'dirt-5' }, + { position = { x = 0, y = 22 }, name = 'dirt-5' }, + { position = { x = 0, y = 23 }, name = 'dirt-5' }, + { position = { x = 0, y = 24 }, name = 'dirt-5' }, + { position = { x = 0, y = 25 }, name = 'dirt-5' }, + { position = { x = 0, y = 26 }, name = 'dirt-5' }, + { position = { x = 0, y = 27 }, name = 'dirt-5' }, + { position = { x = 0, y = 28 }, name = 'dirt-5' }, + { position = { x = 0, y = 29 }, name = 'dirt-5' }, + { position = { x = 0, y = 30 }, name = 'dirt-5' }, + { position = { x = 0, y = 31 }, name = 'dirt-5' }, + { position = { x = 1, y = 0 }, name = 'dirt-5' }, + { position = { x = 1, y = 1 }, name = 'stone-path' }, + { position = { x = 1, y = 2 }, name = 'stone-path' }, + { position = { x = 1, y = 3 }, name = 'stone-path' }, + { position = { x = 1, y = 4 }, name = 'stone-path' }, + { position = { x = 1, y = 5 }, name = 'stone-path' }, + { position = { x = 1, y = 6 }, name = 'stone-path' }, + { position = { x = 1, y = 7 }, name = 'stone-path' }, + { position = { x = 1, y = 8 }, name = 'stone-path' }, + { position = { x = 1, y = 9 }, name = 'stone-path' }, + { position = { x = 1, y = 10 }, name = 'stone-path' }, + { position = { x = 1, y = 11 }, name = 'stone-path' }, + { position = { x = 1, y = 12 }, name = 'dirt-5' }, + { position = { x = 1, y = 13 }, name = 'dirt-5' }, + { position = { x = 1, y = 14 }, name = 'dirt-5' }, + { position = { x = 1, y = 15 }, name = 'dirt-5' }, + { position = { x = 1, y = 16 }, name = 'dirt-5' }, + { position = { x = 1, y = 17 }, name = 'dirt-5' }, + { position = { x = 1, y = 18 }, name = 'dirt-5' }, + { position = { x = 1, y = 19 }, name = 'dirt-5' }, + { position = { x = 1, y = 20 }, name = 'stone-path' }, + { position = { x = 1, y = 21 }, name = 'stone-path' }, + { position = { x = 1, y = 22 }, name = 'stone-path' }, + { position = { x = 1, y = 23 }, name = 'stone-path' }, + { position = { x = 1, y = 24 }, name = 'stone-path' }, + { position = { x = 1, y = 25 }, name = 'stone-path' }, + { position = { x = 1, y = 26 }, name = 'stone-path' }, + { position = { x = 1, y = 27 }, name = 'stone-path' }, + { position = { x = 1, y = 28 }, name = 'stone-path' }, + { position = { x = 1, y = 29 }, name = 'stone-path' }, + { position = { x = 1, y = 30 }, name = 'stone-path' }, + { position = { x = 1, y = 31 }, name = 'dirt-5' }, + { position = { x = 2, y = 0 }, name = 'dirt-5' }, + { position = { x = 2, y = 1 }, name = 'stone-path' }, + { position = { x = 2, y = 2 }, name = 'stone-path' }, + { position = { x = 2, y = 3 }, name = 'stone-path' }, + { position = { x = 2, y = 4 }, name = 'stone-path' }, + { position = { x = 2, y = 5 }, name = 'stone-path' }, + { position = { x = 2, y = 6 }, name = 'stone-path' }, + { position = { x = 2, y = 7 }, name = 'stone-path' }, + { position = { x = 2, y = 8 }, name = 'stone-path' }, + { position = { x = 2, y = 9 }, name = 'stone-path' }, + { position = { x = 2, y = 10 }, name = 'stone-path' }, + { position = { x = 2, y = 11 }, name = 'stone-path' }, + { position = { x = 2, y = 12 }, name = 'stone-path' }, + { position = { x = 2, y = 13 }, name = 'stone-path' }, + { position = { x = 2, y = 14 }, name = 'stone-path' }, + { position = { x = 2, y = 15 }, name = 'stone-path' }, + { position = { x = 2, y = 16 }, name = 'stone-path' }, + { position = { x = 2, y = 17 }, name = 'stone-path' }, + { position = { x = 2, y = 18 }, name = 'stone-path' }, + { position = { x = 2, y = 19 }, name = 'stone-path' }, + { position = { x = 2, y = 20 }, name = 'stone-path' }, + { position = { x = 2, y = 21 }, name = 'stone-path' }, + { position = { x = 2, y = 22 }, name = 'stone-path' }, + { position = { x = 2, y = 23 }, name = 'stone-path' }, + { position = { x = 2, y = 24 }, name = 'stone-path' }, + { position = { x = 2, y = 25 }, name = 'stone-path' }, + { position = { x = 2, y = 26 }, name = 'stone-path' }, + { position = { x = 2, y = 27 }, name = 'stone-path' }, + { position = { x = 2, y = 28 }, name = 'stone-path' }, + { position = { x = 2, y = 29 }, name = 'stone-path' }, + { position = { x = 2, y = 30 }, name = 'stone-path' }, + { position = { x = 2, y = 31 }, name = 'dirt-5' }, + { position = { x = 3, y = 0 }, name = 'dirt-5' }, + { position = { x = 3, y = 1 }, name = 'stone-path' }, + { position = { x = 3, y = 2 }, name = 'stone-path' }, + { position = { x = 3, y = 3 }, name = 'stone-path' }, + { position = { x = 3, y = 4 }, name = 'stone-path' }, + { position = { x = 3, y = 5 }, name = 'stone-path' }, + { position = { x = 3, y = 6 }, name = 'stone-path' }, + { position = { x = 3, y = 7 }, name = 'stone-path' }, + { position = { x = 3, y = 8 }, name = 'stone-path' }, + { position = { x = 3, y = 9 }, name = 'stone-path' }, + { position = { x = 3, y = 10 }, name = 'stone-path' }, + { position = { x = 3, y = 11 }, name = 'stone-path' }, + { position = { x = 3, y = 12 }, name = 'stone-path' }, + { position = { x = 3, y = 13 }, name = 'stone-path' }, + { position = { x = 3, y = 14 }, name = 'stone-path' }, + { position = { x = 3, y = 15 }, name = 'stone-path' }, + { position = { x = 3, y = 16 }, name = 'stone-path' }, + { position = { x = 3, y = 17 }, name = 'stone-path' }, + { position = { x = 3, y = 18 }, name = 'stone-path' }, + { position = { x = 3, y = 19 }, name = 'stone-path' }, + { position = { x = 3, y = 20 }, name = 'stone-path' }, + { position = { x = 3, y = 21 }, name = 'stone-path' }, + { position = { x = 3, y = 22 }, name = 'stone-path' }, + { position = { x = 3, y = 23 }, name = 'stone-path' }, + { position = { x = 3, y = 24 }, name = 'stone-path' }, + { position = { x = 3, y = 25 }, name = 'stone-path' }, + { position = { x = 3, y = 26 }, name = 'stone-path' }, + { position = { x = 3, y = 27 }, name = 'stone-path' }, + { position = { x = 3, y = 28 }, name = 'stone-path' }, + { position = { x = 3, y = 29 }, name = 'stone-path' }, + { position = { x = 3, y = 30 }, name = 'stone-path' }, + { position = { x = 3, y = 31 }, name = 'dirt-5' }, + { position = { x = 4, y = 0 }, name = 'dirt-5' }, + { position = { x = 4, y = 1 }, name = 'stone-path' }, + { position = { x = 4, y = 2 }, name = 'stone-path' }, + { position = { x = 4, y = 3 }, name = 'stone-path' }, + { position = { x = 4, y = 4 }, name = 'stone-path' }, + { position = { x = 4, y = 5 }, name = 'stone-path' }, + { position = { x = 4, y = 6 }, name = 'stone-path' }, + { position = { x = 4, y = 7 }, name = 'stone-path' }, + { position = { x = 4, y = 8 }, name = 'stone-path' }, + { position = { x = 4, y = 9 }, name = 'stone-path' }, + { position = { x = 4, y = 10 }, name = 'stone-path' }, + { position = { x = 4, y = 11 }, name = 'stone-path' }, + { position = { x = 4, y = 12 }, name = 'stone-path' }, + { position = { x = 4, y = 13 }, name = 'stone-path' }, + { position = { x = 4, y = 14 }, name = 'stone-path' }, + { position = { x = 4, y = 15 }, name = 'stone-path' }, + { position = { x = 4, y = 16 }, name = 'stone-path' }, + { position = { x = 4, y = 17 }, name = 'stone-path' }, + { position = { x = 4, y = 18 }, name = 'stone-path' }, + { position = { x = 4, y = 19 }, name = 'stone-path' }, + { position = { x = 4, y = 20 }, name = 'stone-path' }, + { position = { x = 4, y = 21 }, name = 'stone-path' }, + { position = { x = 4, y = 22 }, name = 'stone-path' }, + { position = { x = 4, y = 23 }, name = 'stone-path' }, + { position = { x = 4, y = 24 }, name = 'stone-path' }, + { position = { x = 4, y = 25 }, name = 'stone-path' }, + { position = { x = 4, y = 26 }, name = 'stone-path' }, + { position = { x = 4, y = 27 }, name = 'stone-path' }, + { position = { x = 4, y = 28 }, name = 'stone-path' }, + { position = { x = 4, y = 29 }, name = 'stone-path' }, + { position = { x = 4, y = 30 }, name = 'stone-path' }, + { position = { x = 4, y = 31 }, name = 'dirt-5' }, + { position = { x = 5, y = 0 }, name = 'dirt-5' }, + { position = { x = 5, y = 1 }, name = 'stone-path' }, + { position = { x = 5, y = 2 }, name = 'stone-path' }, + { position = { x = 5, y = 3 }, name = 'stone-path' }, + { position = { x = 5, y = 4 }, name = 'stone-path' }, + { position = { x = 5, y = 5 }, name = 'stone-path' }, + { position = { x = 5, y = 6 }, name = 'stone-path' }, + { position = { x = 5, y = 7 }, name = 'stone-path' }, + { position = { x = 5, y = 8 }, name = 'stone-path' }, + { position = { x = 5, y = 9 }, name = 'stone-path' }, + { position = { x = 5, y = 10 }, name = 'stone-path' }, + { position = { x = 5, y = 11 }, name = 'stone-path' }, + { position = { x = 5, y = 12 }, name = 'stone-path' }, + { position = { x = 5, y = 13 }, name = 'stone-path' }, + { position = { x = 5, y = 14 }, name = 'stone-path' }, + { position = { x = 5, y = 15 }, name = 'stone-path' }, + { position = { x = 5, y = 16 }, name = 'stone-path' }, + { position = { x = 5, y = 17 }, name = 'stone-path' }, + { position = { x = 5, y = 18 }, name = 'stone-path' }, + { position = { x = 5, y = 19 }, name = 'stone-path' }, + { position = { x = 5, y = 20 }, name = 'stone-path' }, + { position = { x = 5, y = 21 }, name = 'stone-path' }, + { position = { x = 5, y = 22 }, name = 'stone-path' }, + { position = { x = 5, y = 23 }, name = 'stone-path' }, + { position = { x = 5, y = 24 }, name = 'stone-path' }, + { position = { x = 5, y = 25 }, name = 'stone-path' }, + { position = { x = 5, y = 26 }, name = 'stone-path' }, + { position = { x = 5, y = 27 }, name = 'stone-path' }, + { position = { x = 5, y = 28 }, name = 'stone-path' }, + { position = { x = 5, y = 29 }, name = 'stone-path' }, + { position = { x = 5, y = 30 }, name = 'stone-path' }, + { position = { x = 5, y = 31 }, name = 'dirt-5' }, + { position = { x = 6, y = 0 }, name = 'dirt-5' }, + { position = { x = 6, y = 1 }, name = 'stone-path' }, + { position = { x = 6, y = 2 }, name = 'stone-path' }, + { position = { x = 6, y = 3 }, name = 'stone-path' }, + { position = { x = 6, y = 4 }, name = 'stone-path' }, + { position = { x = 6, y = 5 }, name = 'stone-path' }, + { position = { x = 6, y = 6 }, name = 'stone-path' }, + { position = { x = 6, y = 7 }, name = 'stone-path' }, + { position = { x = 6, y = 8 }, name = 'stone-path' }, + { position = { x = 6, y = 9 }, name = 'stone-path' }, + { position = { x = 6, y = 10 }, name = 'stone-path' }, + { position = { x = 6, y = 11 }, name = 'stone-path' }, + { position = { x = 6, y = 12 }, name = 'stone-path' }, + { position = { x = 6, y = 13 }, name = 'stone-path' }, + { position = { x = 6, y = 14 }, name = 'stone-path' }, + { position = { x = 6, y = 15 }, name = 'stone-path' }, + { position = { x = 6, y = 16 }, name = 'stone-path' }, + { position = { x = 6, y = 17 }, name = 'stone-path' }, + { position = { x = 6, y = 18 }, name = 'stone-path' }, + { position = { x = 6, y = 19 }, name = 'stone-path' }, + { position = { x = 6, y = 20 }, name = 'stone-path' }, + { position = { x = 6, y = 21 }, name = 'stone-path' }, + { position = { x = 6, y = 22 }, name = 'stone-path' }, + { position = { x = 6, y = 23 }, name = 'stone-path' }, + { position = { x = 6, y = 24 }, name = 'stone-path' }, + { position = { x = 6, y = 25 }, name = 'stone-path' }, + { position = { x = 6, y = 26 }, name = 'stone-path' }, + { position = { x = 6, y = 27 }, name = 'stone-path' }, + { position = { x = 6, y = 28 }, name = 'stone-path' }, + { position = { x = 6, y = 29 }, name = 'stone-path' }, + { position = { x = 6, y = 30 }, name = 'stone-path' }, + { position = { x = 6, y = 31 }, name = 'dirt-5' }, + { position = { x = 7, y = 0 }, name = 'dirt-5' }, + { position = { x = 7, y = 1 }, name = 'dirt-5' }, + { position = { x = 7, y = 2 }, name = 'dirt-5' }, + { position = { x = 7, y = 3 }, name = 'stone-path' }, + { position = { x = 7, y = 4 }, name = 'stone-path' }, + { position = { x = 7, y = 5 }, name = 'stone-path' }, + { position = { x = 7, y = 6 }, name = 'stone-path' }, + { position = { x = 7, y = 7 }, name = 'stone-path' }, + { position = { x = 7, y = 8 }, name = 'stone-path' }, + { position = { x = 7, y = 9 }, name = 'stone-path' }, + { position = { x = 7, y = 10 }, name = 'stone-path' }, + { position = { x = 7, y = 11 }, name = 'stone-path' }, + { position = { x = 7, y = 12 }, name = 'stone-path' }, + { position = { x = 7, y = 13 }, name = 'stone-path' }, + { position = { x = 7, y = 14 }, name = 'stone-path' }, + { position = { x = 7, y = 15 }, name = 'stone-path' }, + { position = { x = 7, y = 16 }, name = 'stone-path' }, + { position = { x = 7, y = 17 }, name = 'stone-path' }, + { position = { x = 7, y = 18 }, name = 'stone-path' }, + { position = { x = 7, y = 19 }, name = 'stone-path' }, + { position = { x = 7, y = 20 }, name = 'stone-path' }, + { position = { x = 7, y = 21 }, name = 'stone-path' }, + { position = { x = 7, y = 22 }, name = 'stone-path' }, + { position = { x = 7, y = 23 }, name = 'stone-path' }, + { position = { x = 7, y = 24 }, name = 'stone-path' }, + { position = { x = 7, y = 25 }, name = 'stone-path' }, + { position = { x = 7, y = 26 }, name = 'stone-path' }, + { position = { x = 7, y = 27 }, name = 'stone-path' }, + { position = { x = 7, y = 28 }, name = 'stone-path' }, + { position = { x = 7, y = 29 }, name = 'stone-path' }, + { position = { x = 7, y = 30 }, name = 'stone-path' }, + { position = { x = 7, y = 31 }, name = 'dirt-5' }, + { position = { x = 8, y = 0 }, name = 'dirt-5' }, + { position = { x = 8, y = 1 }, name = 'stone-path' }, + { position = { x = 8, y = 2 }, name = 'stone-path' }, + { position = { x = 8, y = 3 }, name = 'stone-path' }, + { position = { x = 8, y = 4 }, name = 'stone-path' }, + { position = { x = 8, y = 5 }, name = 'stone-path' }, + { position = { x = 8, y = 6 }, name = 'stone-path' }, + { position = { x = 8, y = 7 }, name = 'stone-path' }, + { position = { x = 8, y = 8 }, name = 'stone-path' }, + { position = { x = 8, y = 9 }, name = 'stone-path' }, + { position = { x = 8, y = 10 }, name = 'stone-path' }, + { position = { x = 8, y = 11 }, name = 'stone-path' }, + { position = { x = 8, y = 12 }, name = 'stone-path' }, + { position = { x = 8, y = 13 }, name = 'stone-path' }, + { position = { x = 8, y = 14 }, name = 'stone-path' }, + { position = { x = 8, y = 15 }, name = 'stone-path' }, + { position = { x = 8, y = 16 }, name = 'stone-path' }, + { position = { x = 8, y = 17 }, name = 'stone-path' }, + { position = { x = 8, y = 18 }, name = 'stone-path' }, + { position = { x = 8, y = 19 }, name = 'stone-path' }, + { position = { x = 8, y = 20 }, name = 'stone-path' }, + { position = { x = 8, y = 21 }, name = 'stone-path' }, + { position = { x = 8, y = 22 }, name = 'stone-path' }, + { position = { x = 8, y = 23 }, name = 'stone-path' }, + { position = { x = 8, y = 24 }, name = 'stone-path' }, + { position = { x = 8, y = 25 }, name = 'stone-path' }, + { position = { x = 8, y = 26 }, name = 'stone-path' }, + { position = { x = 8, y = 27 }, name = 'stone-path' }, + { position = { x = 8, y = 28 }, name = 'stone-path' }, + { position = { x = 8, y = 29 }, name = 'stone-path' }, + { position = { x = 8, y = 30 }, name = 'stone-path' }, + { position = { x = 8, y = 31 }, name = 'dirt-5' }, + { position = { x = 9, y = 0 }, name = 'dirt-5' }, + { position = { x = 9, y = 1 }, name = 'stone-path' }, + { position = { x = 9, y = 2 }, name = 'stone-path' }, + { position = { x = 9, y = 3 }, name = 'stone-path' }, + { position = { x = 9, y = 4 }, name = 'stone-path' }, + { position = { x = 9, y = 5 }, name = 'stone-path' }, + { position = { x = 9, y = 6 }, name = 'stone-path' }, + { position = { x = 9, y = 7 }, name = 'stone-path' }, + { position = { x = 9, y = 8 }, name = 'stone-path' }, + { position = { x = 9, y = 9 }, name = 'stone-path' }, + { position = { x = 9, y = 10 }, name = 'stone-path' }, + { position = { x = 9, y = 11 }, name = 'stone-path' }, + { position = { x = 9, y = 12 }, name = 'stone-path' }, + { position = { x = 9, y = 13 }, name = 'stone-path' }, + { position = { x = 9, y = 14 }, name = 'stone-path' }, + { position = { x = 9, y = 15 }, name = 'stone-path' }, + { position = { x = 9, y = 16 }, name = 'stone-path' }, + { position = { x = 9, y = 17 }, name = 'stone-path' }, + { position = { x = 9, y = 18 }, name = 'stone-path' }, + { position = { x = 9, y = 19 }, name = 'stone-path' }, + { position = { x = 9, y = 20 }, name = 'stone-path' }, + { position = { x = 9, y = 21 }, name = 'stone-path' }, + { position = { x = 9, y = 22 }, name = 'stone-path' }, + { position = { x = 9, y = 23 }, name = 'stone-path' }, + { position = { x = 9, y = 24 }, name = 'stone-path' }, + { position = { x = 9, y = 25 }, name = 'stone-path' }, + { position = { x = 9, y = 26 }, name = 'stone-path' }, + { position = { x = 9, y = 27 }, name = 'stone-path' }, + { position = { x = 9, y = 28 }, name = 'stone-path' }, + { position = { x = 9, y = 29 }, name = 'stone-path' }, + { position = { x = 9, y = 30 }, name = 'stone-path' }, + { position = { x = 9, y = 31 }, name = 'dirt-5' }, + { position = { x = 10, y = 0 }, name = 'dirt-5' }, + { position = { x = 10, y = 1 }, name = 'stone-path' }, + { position = { x = 10, y = 2 }, name = 'stone-path' }, + { position = { x = 10, y = 3 }, name = 'stone-path' }, + { position = { x = 10, y = 4 }, name = 'stone-path' }, + { position = { x = 10, y = 5 }, name = 'stone-path' }, + { position = { x = 10, y = 6 }, name = 'stone-path' }, + { position = { x = 10, y = 7 }, name = 'stone-path' }, + { position = { x = 10, y = 8 }, name = 'stone-path' }, + { position = { x = 10, y = 9 }, name = 'dirt-5' }, + { position = { x = 10, y = 10 }, name = 'dirt-5' }, + { position = { x = 10, y = 11 }, name = 'dirt-5' }, + { position = { x = 10, y = 12 }, name = 'refined-concrete' }, + { position = { x = 10, y = 13 }, name = 'refined-concrete' }, + { position = { x = 10, y = 14 }, name = 'refined-concrete' }, + { position = { x = 10, y = 15 }, name = 'refined-concrete' }, + { position = { x = 10, y = 16 }, name = 'refined-concrete' }, + { position = { x = 10, y = 17 }, name = 'refined-concrete' }, + { position = { x = 10, y = 18 }, name = 'refined-concrete' }, + { position = { x = 10, y = 19 }, name = 'refined-concrete' }, + { position = { x = 10, y = 20 }, name = 'dirt-5' }, + { position = { x = 10, y = 21 }, name = 'dirt-5' }, + { position = { x = 10, y = 22 }, name = 'stone-path' }, + { position = { x = 10, y = 23 }, name = 'stone-path' }, + { position = { x = 10, y = 24 }, name = 'stone-path' }, + { position = { x = 10, y = 25 }, name = 'stone-path' }, + { position = { x = 10, y = 26 }, name = 'stone-path' }, + { position = { x = 10, y = 27 }, name = 'stone-path' }, + { position = { x = 10, y = 28 }, name = 'stone-path' }, + { position = { x = 10, y = 29 }, name = 'stone-path' }, + { position = { x = 10, y = 30 }, name = 'stone-path' }, + { position = { x = 10, y = 31 }, name = 'dirt-5' }, + { position = { x = 11, y = 0 }, name = 'dirt-5' }, + { position = { x = 11, y = 1 }, name = 'stone-path' }, + { position = { x = 11, y = 2 }, name = 'stone-path' }, + { position = { x = 11, y = 3 }, name = 'stone-path' }, + { position = { x = 11, y = 4 }, name = 'stone-path' }, + { position = { x = 11, y = 5 }, name = 'stone-path' }, + { position = { x = 11, y = 6 }, name = 'stone-path' }, + { position = { x = 11, y = 7 }, name = 'stone-path' }, + { position = { x = 11, y = 8 }, name = 'stone-path' }, + { position = { x = 11, y = 9 }, name = 'dirt-5' }, + { position = { x = 11, y = 10 }, name = 'dirt-5' }, + { position = { x = 11, y = 11 }, name = 'refined-concrete' }, + { position = { x = 11, y = 12 }, name = 'refined-concrete' }, + { position = { x = 11, y = 13 }, name = 'refined-concrete' }, + { position = { x = 11, y = 14 }, name = 'refined-concrete' }, + { position = { x = 11, y = 15 }, name = 'refined-concrete' }, + { position = { x = 11, y = 16 }, name = 'refined-concrete' }, + { position = { x = 11, y = 17 }, name = 'refined-concrete' }, + { position = { x = 11, y = 18 }, name = 'refined-concrete' }, + { position = { x = 11, y = 19 }, name = 'refined-concrete' }, + { position = { x = 11, y = 20 }, name = 'refined-concrete' }, + { position = { x = 11, y = 21 }, name = 'dirt-5' }, + { position = { x = 11, y = 22 }, name = 'stone-path' }, + { position = { x = 11, y = 23 }, name = 'stone-path' }, + { position = { x = 11, y = 24 }, name = 'stone-path' }, + { position = { x = 11, y = 25 }, name = 'stone-path' }, + { position = { x = 11, y = 26 }, name = 'stone-path' }, + { position = { x = 11, y = 27 }, name = 'stone-path' }, + { position = { x = 11, y = 28 }, name = 'stone-path' }, + { position = { x = 11, y = 29 }, name = 'stone-path' }, + { position = { x = 11, y = 30 }, name = 'stone-path' }, + { position = { x = 11, y = 31 }, name = 'dirt-5' }, + { position = { x = 12, y = 0 }, name = 'dirt-5' }, + { position = { x = 12, y = 1 }, name = 'dirt-5' }, + { position = { x = 12, y = 2 }, name = 'dirt-5' }, + { position = { x = 12, y = 3 }, name = 'stone-path' }, + { position = { x = 12, y = 4 }, name = 'stone-path' }, + { position = { x = 12, y = 5 }, name = 'stone-path' }, + { position = { x = 12, y = 6 }, name = 'stone-path' }, + { position = { x = 12, y = 7 }, name = 'stone-path' }, + { position = { x = 12, y = 8 }, name = 'stone-path' }, + { position = { x = 12, y = 9 }, name = 'stone-path' }, + { position = { x = 12, y = 10 }, name = 'refined-concrete' }, + { position = { x = 12, y = 11 }, name = 'refined-concrete' }, + { position = { x = 12, y = 12 }, name = 'refined-concrete' }, + { position = { x = 12, y = 13 }, name = 'refined-concrete' }, + { position = { x = 12, y = 14 }, name = 'refined-concrete' }, + { position = { x = 12, y = 15 }, name = 'refined-concrete' }, + { position = { x = 12, y = 16 }, name = 'refined-concrete' }, + { position = { x = 12, y = 17 }, name = 'refined-concrete' }, + { position = { x = 12, y = 18 }, name = 'refined-concrete' }, + { position = { x = 12, y = 19 }, name = 'refined-concrete' }, + { position = { x = 12, y = 20 }, name = 'refined-concrete' }, + { position = { x = 12, y = 21 }, name = 'refined-concrete' }, + { position = { x = 12, y = 22 }, name = 'stone-path' }, + { position = { x = 12, y = 23 }, name = 'stone-path' }, + { position = { x = 12, y = 24 }, name = 'stone-path' }, + { position = { x = 12, y = 25 }, name = 'stone-path' }, + { position = { x = 12, y = 26 }, name = 'stone-path' }, + { position = { x = 12, y = 27 }, name = 'stone-path' }, + { position = { x = 12, y = 28 }, name = 'stone-path' }, + { position = { x = 12, y = 29 }, name = 'stone-path' }, + { position = { x = 12, y = 30 }, name = 'dirt-5' }, + { position = { x = 12, y = 31 }, name = 'dirt-5' }, + { position = { x = 13, y = 0 }, name = 'dirt-5' }, + { position = { x = 13, y = 1 }, name = 'dirt-5' }, + { position = { x = 13, y = 2 }, name = 'stone-path' }, + { position = { x = 13, y = 3 }, name = 'stone-path' }, + { position = { x = 13, y = 4 }, name = 'stone-path' }, + { position = { x = 13, y = 5 }, name = 'stone-path' }, + { position = { x = 13, y = 6 }, name = 'stone-path' }, + { position = { x = 13, y = 7 }, name = 'stone-path' }, + { position = { x = 13, y = 8 }, name = 'stone-path' }, + { position = { x = 13, y = 9 }, name = 'stone-path' }, + { position = { x = 13, y = 10 }, name = 'refined-concrete' }, + { position = { x = 13, y = 11 }, name = 'refined-concrete' }, + { position = { x = 13, y = 12 }, name = 'refined-concrete' }, + { position = { x = 13, y = 13 }, name = 'refined-concrete' }, + { position = { x = 13, y = 14 }, name = 'refined-concrete' }, + { position = { x = 13, y = 15 }, name = 'refined-concrete' }, + { position = { x = 13, y = 16 }, name = 'refined-concrete' }, + { position = { x = 13, y = 17 }, name = 'refined-concrete' }, + { position = { x = 13, y = 18 }, name = 'refined-concrete' }, + { position = { x = 13, y = 19 }, name = 'refined-concrete' }, + { position = { x = 13, y = 20 }, name = 'refined-concrete' }, + { position = { x = 13, y = 21 }, name = 'refined-concrete' }, + { position = { x = 13, y = 22 }, name = 'stone-path' }, + { position = { x = 13, y = 23 }, name = 'stone-path' }, + { position = { x = 13, y = 24 }, name = 'stone-path' }, + { position = { x = 13, y = 25 }, name = 'stone-path' }, + { position = { x = 13, y = 26 }, name = 'stone-path' }, + { position = { x = 13, y = 27 }, name = 'stone-path' }, + { position = { x = 13, y = 28 }, name = 'stone-path' }, + { position = { x = 13, y = 29 }, name = 'stone-path' }, + { position = { x = 13, y = 30 }, name = 'dirt-5' }, + { position = { x = 13, y = 31 }, name = 'dirt-5' }, + { position = { x = 14, y = 0 }, name = 'dirt-5' }, + { position = { x = 14, y = 1 }, name = 'dirt-5' }, + { position = { x = 14, y = 2 }, name = 'stone-path' }, + { position = { x = 14, y = 3 }, name = 'stone-path' }, + { position = { x = 14, y = 4 }, name = 'stone-path' }, + { position = { x = 14, y = 5 }, name = 'stone-path' }, + { position = { x = 14, y = 6 }, name = 'stone-path' }, + { position = { x = 14, y = 7 }, name = 'stone-path' }, + { position = { x = 14, y = 8 }, name = 'stone-path' }, + { position = { x = 14, y = 9 }, name = 'stone-path' }, + { position = { x = 14, y = 10 }, name = 'refined-concrete' }, + { position = { x = 14, y = 11 }, name = 'refined-concrete' }, + { position = { x = 14, y = 12 }, name = 'refined-concrete' }, + { position = { x = 14, y = 13 }, name = 'refined-concrete' }, + { position = { x = 14, y = 14 }, name = 'refined-concrete' }, + { position = { x = 14, y = 15 }, name = 'refined-concrete' }, + { position = { x = 14, y = 16 }, name = 'refined-concrete' }, + { position = { x = 14, y = 17 }, name = 'refined-concrete' }, + { position = { x = 14, y = 18 }, name = 'refined-concrete' }, + { position = { x = 14, y = 19 }, name = 'refined-concrete' }, + { position = { x = 14, y = 20 }, name = 'refined-concrete' }, + { position = { x = 14, y = 21 }, name = 'refined-concrete' }, + { position = { x = 14, y = 22 }, name = 'stone-path' }, + { position = { x = 14, y = 23 }, name = 'stone-path' }, + { position = { x = 14, y = 24 }, name = 'stone-path' }, + { position = { x = 14, y = 25 }, name = 'stone-path' }, + { position = { x = 14, y = 26 }, name = 'stone-path' }, + { position = { x = 14, y = 27 }, name = 'stone-path' }, + { position = { x = 14, y = 28 }, name = 'stone-path' }, + { position = { x = 14, y = 29 }, name = 'stone-path' }, + { position = { x = 14, y = 30 }, name = 'dirt-5' }, + { position = { x = 14, y = 31 }, name = 'dirt-5' }, + { position = { x = 15, y = 0 }, name = 'dirt-5' }, + { position = { x = 15, y = 1 }, name = 'dirt-5' }, + { position = { x = 15, y = 2 }, name = 'stone-path' }, + { position = { x = 15, y = 3 }, name = 'stone-path' }, + { position = { x = 15, y = 4 }, name = 'stone-path' }, + { position = { x = 15, y = 5 }, name = 'stone-path' }, + { position = { x = 15, y = 6 }, name = 'stone-path' }, + { position = { x = 15, y = 7 }, name = 'stone-path' }, + { position = { x = 15, y = 8 }, name = 'stone-path' }, + { position = { x = 15, y = 9 }, name = 'stone-path' }, + { position = { x = 15, y = 10 }, name = 'refined-concrete' }, + { position = { x = 15, y = 11 }, name = 'refined-concrete' }, + { position = { x = 15, y = 12 }, name = 'refined-concrete' }, + { position = { x = 15, y = 13 }, name = 'refined-concrete' }, + { position = { x = 15, y = 14 }, name = 'refined-concrete' }, + { position = { x = 15, y = 15 }, name = 'refined-concrete' }, + { position = { x = 15, y = 16 }, name = 'refined-concrete' }, + { position = { x = 15, y = 17 }, name = 'refined-concrete' }, + { position = { x = 15, y = 18 }, name = 'refined-concrete' }, + { position = { x = 15, y = 19 }, name = 'refined-concrete' }, + { position = { x = 15, y = 20 }, name = 'refined-concrete' }, + { position = { x = 15, y = 21 }, name = 'refined-concrete' }, + { position = { x = 15, y = 22 }, name = 'stone-path' }, + { position = { x = 15, y = 23 }, name = 'stone-path' }, + { position = { x = 15, y = 24 }, name = 'stone-path' }, + { position = { x = 15, y = 25 }, name = 'stone-path' }, + { position = { x = 15, y = 26 }, name = 'stone-path' }, + { position = { x = 15, y = 27 }, name = 'stone-path' }, + { position = { x = 15, y = 28 }, name = 'stone-path' }, + { position = { x = 15, y = 29 }, name = 'stone-path' }, + { position = { x = 15, y = 30 }, name = 'dirt-5' }, + { position = { x = 15, y = 31 }, name = 'dirt-5' }, + { position = { x = 16, y = 0 }, name = 'dirt-5' }, + { position = { x = 16, y = 1 }, name = 'dirt-5' }, + { position = { x = 16, y = 2 }, name = 'stone-path' }, + { position = { x = 16, y = 3 }, name = 'stone-path' }, + { position = { x = 16, y = 4 }, name = 'stone-path' }, + { position = { x = 16, y = 5 }, name = 'stone-path' }, + { position = { x = 16, y = 6 }, name = 'stone-path' }, + { position = { x = 16, y = 7 }, name = 'stone-path' }, + { position = { x = 16, y = 8 }, name = 'stone-path' }, + { position = { x = 16, y = 9 }, name = 'stone-path' }, + { position = { x = 16, y = 10 }, name = 'refined-concrete' }, + { position = { x = 16, y = 11 }, name = 'refined-concrete' }, + { position = { x = 16, y = 12 }, name = 'refined-concrete' }, + { position = { x = 16, y = 13 }, name = 'refined-concrete' }, + { position = { x = 16, y = 14 }, name = 'refined-concrete' }, + { position = { x = 16, y = 15 }, name = 'refined-concrete' }, + { position = { x = 16, y = 16 }, name = 'refined-concrete' }, + { position = { x = 16, y = 17 }, name = 'refined-concrete' }, + { position = { x = 16, y = 18 }, name = 'refined-concrete' }, + { position = { x = 16, y = 19 }, name = 'refined-concrete' }, + { position = { x = 16, y = 20 }, name = 'refined-concrete' }, + { position = { x = 16, y = 21 }, name = 'refined-concrete' }, + { position = { x = 16, y = 22 }, name = 'stone-path' }, + { position = { x = 16, y = 23 }, name = 'stone-path' }, + { position = { x = 16, y = 24 }, name = 'stone-path' }, + { position = { x = 16, y = 25 }, name = 'stone-path' }, + { position = { x = 16, y = 26 }, name = 'stone-path' }, + { position = { x = 16, y = 27 }, name = 'stone-path' }, + { position = { x = 16, y = 28 }, name = 'stone-path' }, + { position = { x = 16, y = 29 }, name = 'stone-path' }, + { position = { x = 16, y = 30 }, name = 'dirt-5' }, + { position = { x = 16, y = 31 }, name = 'dirt-5' }, + { position = { x = 17, y = 0 }, name = 'dirt-5' }, + { position = { x = 17, y = 1 }, name = 'dirt-5' }, + { position = { x = 17, y = 2 }, name = 'stone-path' }, + { position = { x = 17, y = 3 }, name = 'stone-path' }, + { position = { x = 17, y = 4 }, name = 'stone-path' }, + { position = { x = 17, y = 5 }, name = 'stone-path' }, + { position = { x = 17, y = 6 }, name = 'stone-path' }, + { position = { x = 17, y = 7 }, name = 'stone-path' }, + { position = { x = 17, y = 8 }, name = 'stone-path' }, + { position = { x = 17, y = 9 }, name = 'stone-path' }, + { position = { x = 17, y = 10 }, name = 'refined-concrete' }, + { position = { x = 17, y = 11 }, name = 'refined-concrete' }, + { position = { x = 17, y = 12 }, name = 'refined-concrete' }, + { position = { x = 17, y = 13 }, name = 'refined-concrete' }, + { position = { x = 17, y = 14 }, name = 'refined-concrete' }, + { position = { x = 17, y = 15 }, name = 'refined-concrete' }, + { position = { x = 17, y = 16 }, name = 'refined-concrete' }, + { position = { x = 17, y = 17 }, name = 'refined-concrete' }, + { position = { x = 17, y = 18 }, name = 'refined-concrete' }, + { position = { x = 17, y = 19 }, name = 'refined-concrete' }, + { position = { x = 17, y = 20 }, name = 'refined-concrete' }, + { position = { x = 17, y = 21 }, name = 'refined-concrete' }, + { position = { x = 17, y = 22 }, name = 'stone-path' }, + { position = { x = 17, y = 23 }, name = 'stone-path' }, + { position = { x = 17, y = 24 }, name = 'stone-path' }, + { position = { x = 17, y = 25 }, name = 'stone-path' }, + { position = { x = 17, y = 26 }, name = 'stone-path' }, + { position = { x = 17, y = 27 }, name = 'stone-path' }, + { position = { x = 17, y = 28 }, name = 'stone-path' }, + { position = { x = 17, y = 29 }, name = 'stone-path' }, + { position = { x = 17, y = 30 }, name = 'dirt-5' }, + { position = { x = 17, y = 31 }, name = 'dirt-5' }, + { position = { x = 18, y = 0 }, name = 'dirt-5' }, + { position = { x = 18, y = 1 }, name = 'dirt-5' }, + { position = { x = 18, y = 2 }, name = 'stone-path' }, + { position = { x = 18, y = 3 }, name = 'stone-path' }, + { position = { x = 18, y = 4 }, name = 'stone-path' }, + { position = { x = 18, y = 5 }, name = 'stone-path' }, + { position = { x = 18, y = 6 }, name = 'stone-path' }, + { position = { x = 18, y = 7 }, name = 'stone-path' }, + { position = { x = 18, y = 8 }, name = 'stone-path' }, + { position = { x = 18, y = 9 }, name = 'stone-path' }, + { position = { x = 18, y = 10 }, name = 'refined-concrete' }, + { position = { x = 18, y = 11 }, name = 'refined-concrete' }, + { position = { x = 18, y = 12 }, name = 'refined-concrete' }, + { position = { x = 18, y = 13 }, name = 'refined-concrete' }, + { position = { x = 18, y = 14 }, name = 'refined-concrete' }, + { position = { x = 18, y = 15 }, name = 'refined-concrete' }, + { position = { x = 18, y = 16 }, name = 'refined-concrete' }, + { position = { x = 18, y = 17 }, name = 'refined-concrete' }, + { position = { x = 18, y = 18 }, name = 'refined-concrete' }, + { position = { x = 18, y = 19 }, name = 'refined-concrete' }, + { position = { x = 18, y = 20 }, name = 'refined-concrete' }, + { position = { x = 18, y = 21 }, name = 'refined-concrete' }, + { position = { x = 18, y = 22 }, name = 'stone-path' }, + { position = { x = 18, y = 23 }, name = 'stone-path' }, + { position = { x = 18, y = 24 }, name = 'stone-path' }, + { position = { x = 18, y = 25 }, name = 'stone-path' }, + { position = { x = 18, y = 26 }, name = 'stone-path' }, + { position = { x = 18, y = 27 }, name = 'stone-path' }, + { position = { x = 18, y = 28 }, name = 'stone-path' }, + { position = { x = 18, y = 29 }, name = 'stone-path' }, + { position = { x = 18, y = 30 }, name = 'dirt-5' }, + { position = { x = 18, y = 31 }, name = 'dirt-5' }, + { position = { x = 19, y = 0 }, name = 'dirt-5' }, + { position = { x = 19, y = 1 }, name = 'dirt-5' }, + { position = { x = 19, y = 2 }, name = 'dirt-5' }, + { position = { x = 19, y = 3 }, name = 'stone-path' }, + { position = { x = 19, y = 4 }, name = 'stone-path' }, + { position = { x = 19, y = 5 }, name = 'stone-path' }, + { position = { x = 19, y = 6 }, name = 'stone-path' }, + { position = { x = 19, y = 7 }, name = 'stone-path' }, + { position = { x = 19, y = 8 }, name = 'stone-path' }, + { position = { x = 19, y = 9 }, name = 'stone-path' }, + { position = { x = 19, y = 10 }, name = 'refined-concrete' }, + { position = { x = 19, y = 11 }, name = 'refined-concrete' }, + { position = { x = 19, y = 12 }, name = 'refined-concrete' }, + { position = { x = 19, y = 13 }, name = 'refined-concrete' }, + { position = { x = 19, y = 14 }, name = 'refined-concrete' }, + { position = { x = 19, y = 15 }, name = 'refined-concrete' }, + { position = { x = 19, y = 16 }, name = 'refined-concrete' }, + { position = { x = 19, y = 17 }, name = 'refined-concrete' }, + { position = { x = 19, y = 18 }, name = 'refined-concrete' }, + { position = { x = 19, y = 19 }, name = 'refined-concrete' }, + { position = { x = 19, y = 20 }, name = 'refined-concrete' }, + { position = { x = 19, y = 21 }, name = 'refined-concrete' }, + { position = { x = 19, y = 22 }, name = 'stone-path' }, + { position = { x = 19, y = 23 }, name = 'stone-path' }, + { position = { x = 19, y = 24 }, name = 'stone-path' }, + { position = { x = 19, y = 25 }, name = 'stone-path' }, + { position = { x = 19, y = 26 }, name = 'stone-path' }, + { position = { x = 19, y = 27 }, name = 'stone-path' }, + { position = { x = 19, y = 28 }, name = 'stone-path' }, + { position = { x = 19, y = 29 }, name = 'stone-path' }, + { position = { x = 19, y = 30 }, name = 'dirt-5' }, + { position = { x = 19, y = 31 }, name = 'dirt-5' }, + { position = { x = 20, y = 0 }, name = 'dirt-5' }, + { position = { x = 20, y = 1 }, name = 'stone-path' }, + { position = { x = 20, y = 2 }, name = 'stone-path' }, + { position = { x = 20, y = 3 }, name = 'stone-path' }, + { position = { x = 20, y = 4 }, name = 'stone-path' }, + { position = { x = 20, y = 5 }, name = 'stone-path' }, + { position = { x = 20, y = 6 }, name = 'stone-path' }, + { position = { x = 20, y = 7 }, name = 'stone-path' }, + { position = { x = 20, y = 8 }, name = 'stone-path' }, + { position = { x = 20, y = 9 }, name = 'stone-path' }, + { position = { x = 20, y = 10 }, name = 'stone-path' }, + { position = { x = 20, y = 11 }, name = 'refined-concrete' }, + { position = { x = 20, y = 12 }, name = 'refined-concrete' }, + { position = { x = 20, y = 13 }, name = 'refined-concrete' }, + { position = { x = 20, y = 14 }, name = 'refined-concrete' }, + { position = { x = 20, y = 15 }, name = 'refined-concrete' }, + { position = { x = 20, y = 16 }, name = 'refined-concrete' }, + { position = { x = 20, y = 17 }, name = 'refined-concrete' }, + { position = { x = 20, y = 18 }, name = 'refined-concrete' }, + { position = { x = 20, y = 19 }, name = 'refined-concrete' }, + { position = { x = 20, y = 20 }, name = 'refined-concrete' }, + { position = { x = 20, y = 21 }, name = 'dirt-5' }, + { position = { x = 20, y = 22 }, name = 'stone-path' }, + { position = { x = 20, y = 23 }, name = 'stone-path' }, + { position = { x = 20, y = 24 }, name = 'stone-path' }, + { position = { x = 20, y = 25 }, name = 'stone-path' }, + { position = { x = 20, y = 26 }, name = 'stone-path' }, + { position = { x = 20, y = 27 }, name = 'stone-path' }, + { position = { x = 20, y = 28 }, name = 'stone-path' }, + { position = { x = 20, y = 29 }, name = 'stone-path' }, + { position = { x = 20, y = 30 }, name = 'stone-path' }, + { position = { x = 20, y = 31 }, name = 'dirt-5' }, + { position = { x = 21, y = 0 }, name = 'dirt-5' }, + { position = { x = 21, y = 1 }, name = 'stone-path' }, + { position = { x = 21, y = 2 }, name = 'stone-path' }, + { position = { x = 21, y = 3 }, name = 'stone-path' }, + { position = { x = 21, y = 4 }, name = 'stone-path' }, + { position = { x = 21, y = 5 }, name = 'stone-path' }, + { position = { x = 21, y = 6 }, name = 'stone-path' }, + { position = { x = 21, y = 7 }, name = 'stone-path' }, + { position = { x = 21, y = 8 }, name = 'stone-path' }, + { position = { x = 21, y = 9 }, name = 'stone-path' }, + { position = { x = 21, y = 10 }, name = 'stone-path' }, + { position = { x = 21, y = 11 }, name = 'stone-path' }, + { position = { x = 21, y = 12 }, name = 'refined-concrete' }, + { position = { x = 21, y = 13 }, name = 'refined-concrete' }, + { position = { x = 21, y = 14 }, name = 'refined-concrete' }, + { position = { x = 21, y = 15 }, name = 'refined-concrete' }, + { position = { x = 21, y = 16 }, name = 'refined-concrete' }, + { position = { x = 21, y = 17 }, name = 'refined-concrete' }, + { position = { x = 21, y = 18 }, name = 'refined-concrete' }, + { position = { x = 21, y = 19 }, name = 'refined-concrete' }, + { position = { x = 21, y = 20 }, name = 'dirt-5' }, + { position = { x = 21, y = 21 }, name = 'stone-path' }, + { position = { x = 21, y = 22 }, name = 'stone-path' }, + { position = { x = 21, y = 23 }, name = 'stone-path' }, + { position = { x = 21, y = 24 }, name = 'stone-path' }, + { position = { x = 21, y = 25 }, name = 'stone-path' }, + { position = { x = 21, y = 26 }, name = 'stone-path' }, + { position = { x = 21, y = 27 }, name = 'stone-path' }, + { position = { x = 21, y = 28 }, name = 'stone-path' }, + { position = { x = 21, y = 29 }, name = 'stone-path' }, + { position = { x = 21, y = 30 }, name = 'stone-path' }, + { position = { x = 21, y = 31 }, name = 'dirt-5' }, + { position = { x = 22, y = 0 }, name = 'dirt-5' }, + { position = { x = 22, y = 1 }, name = 'stone-path' }, + { position = { x = 22, y = 2 }, name = 'stone-path' }, + { position = { x = 22, y = 3 }, name = 'stone-path' }, + { position = { x = 22, y = 4 }, name = 'stone-path' }, + { position = { x = 22, y = 5 }, name = 'stone-path' }, + { position = { x = 22, y = 6 }, name = 'stone-path' }, + { position = { x = 22, y = 7 }, name = 'stone-path' }, + { position = { x = 22, y = 8 }, name = 'stone-path' }, + { position = { x = 22, y = 9 }, name = 'stone-path' }, + { position = { x = 22, y = 10 }, name = 'stone-path' }, + { position = { x = 22, y = 11 }, name = 'stone-path' }, + { position = { x = 22, y = 12 }, name = 'stone-path' }, + { position = { x = 22, y = 13 }, name = 'stone-path' }, + { position = { x = 22, y = 14 }, name = 'stone-path' }, + { position = { x = 22, y = 15 }, name = 'stone-path' }, + { position = { x = 22, y = 16 }, name = 'stone-path' }, + { position = { x = 22, y = 17 }, name = 'stone-path' }, + { position = { x = 22, y = 18 }, name = 'stone-path' }, + { position = { x = 22, y = 19 }, name = 'stone-path' }, + { position = { x = 22, y = 20 }, name = 'stone-path' }, + { position = { x = 22, y = 21 }, name = 'stone-path' }, + { position = { x = 22, y = 22 }, name = 'stone-path' }, + { position = { x = 22, y = 23 }, name = 'stone-path' }, + { position = { x = 22, y = 24 }, name = 'stone-path' }, + { position = { x = 22, y = 25 }, name = 'stone-path' }, + { position = { x = 22, y = 26 }, name = 'stone-path' }, + { position = { x = 22, y = 27 }, name = 'stone-path' }, + { position = { x = 22, y = 28 }, name = 'stone-path' }, + { position = { x = 22, y = 29 }, name = 'stone-path' }, + { position = { x = 22, y = 30 }, name = 'stone-path' }, + { position = { x = 22, y = 31 }, name = 'dirt-5' }, + { position = { x = 23, y = 0 }, name = 'dirt-5' }, + { position = { x = 23, y = 1 }, name = 'stone-path' }, + { position = { x = 23, y = 2 }, name = 'stone-path' }, + { position = { x = 23, y = 3 }, name = 'stone-path' }, + { position = { x = 23, y = 4 }, name = 'stone-path' }, + { position = { x = 23, y = 5 }, name = 'stone-path' }, + { position = { x = 23, y = 6 }, name = 'stone-path' }, + { position = { x = 23, y = 7 }, name = 'stone-path' }, + { position = { x = 23, y = 8 }, name = 'stone-path' }, + { position = { x = 23, y = 9 }, name = 'stone-path' }, + { position = { x = 23, y = 10 }, name = 'stone-path' }, + { position = { x = 23, y = 11 }, name = 'stone-path' }, + { position = { x = 23, y = 12 }, name = 'stone-path' }, + { position = { x = 23, y = 13 }, name = 'stone-path' }, + { position = { x = 23, y = 14 }, name = 'stone-path' }, + { position = { x = 23, y = 15 }, name = 'stone-path' }, + { position = { x = 23, y = 16 }, name = 'stone-path' }, + { position = { x = 23, y = 17 }, name = 'stone-path' }, + { position = { x = 23, y = 18 }, name = 'stone-path' }, + { position = { x = 23, y = 19 }, name = 'stone-path' }, + { position = { x = 23, y = 20 }, name = 'stone-path' }, + { position = { x = 23, y = 21 }, name = 'stone-path' }, + { position = { x = 23, y = 22 }, name = 'stone-path' }, + { position = { x = 23, y = 23 }, name = 'stone-path' }, + { position = { x = 23, y = 24 }, name = 'stone-path' }, + { position = { x = 23, y = 25 }, name = 'stone-path' }, + { position = { x = 23, y = 26 }, name = 'stone-path' }, + { position = { x = 23, y = 27 }, name = 'stone-path' }, + { position = { x = 23, y = 28 }, name = 'stone-path' }, + { position = { x = 23, y = 29 }, name = 'stone-path' }, + { position = { x = 23, y = 30 }, name = 'stone-path' }, + { position = { x = 23, y = 31 }, name = 'dirt-5' }, + { position = { x = 24, y = 0 }, name = 'dirt-5' }, + { position = { x = 24, y = 1 }, name = 'stone-path' }, + { position = { x = 24, y = 2 }, name = 'stone-path' }, + { position = { x = 24, y = 3 }, name = 'stone-path' }, + { position = { x = 24, y = 4 }, name = 'stone-path' }, + { position = { x = 24, y = 5 }, name = 'stone-path' }, + { position = { x = 24, y = 6 }, name = 'stone-path' }, + { position = { x = 24, y = 7 }, name = 'stone-path' }, + { position = { x = 24, y = 8 }, name = 'stone-path' }, + { position = { x = 24, y = 9 }, name = 'stone-path' }, + { position = { x = 24, y = 10 }, name = 'stone-path' }, + { position = { x = 24, y = 11 }, name = 'stone-path' }, + { position = { x = 24, y = 12 }, name = 'stone-path' }, + { position = { x = 24, y = 13 }, name = 'stone-path' }, + { position = { x = 24, y = 14 }, name = 'stone-path' }, + { position = { x = 24, y = 15 }, name = 'stone-path' }, + { position = { x = 24, y = 16 }, name = 'stone-path' }, + { position = { x = 24, y = 17 }, name = 'stone-path' }, + { position = { x = 24, y = 18 }, name = 'stone-path' }, + { position = { x = 24, y = 19 }, name = 'stone-path' }, + { position = { x = 24, y = 20 }, name = 'stone-path' }, + { position = { x = 24, y = 21 }, name = 'stone-path' }, + { position = { x = 24, y = 22 }, name = 'stone-path' }, + { position = { x = 24, y = 23 }, name = 'stone-path' }, + { position = { x = 24, y = 24 }, name = 'stone-path' }, + { position = { x = 24, y = 25 }, name = 'stone-path' }, + { position = { x = 24, y = 26 }, name = 'stone-path' }, + { position = { x = 24, y = 27 }, name = 'stone-path' }, + { position = { x = 24, y = 28 }, name = 'stone-path' }, + { position = { x = 24, y = 29 }, name = 'stone-path' }, + { position = { x = 24, y = 30 }, name = 'stone-path' }, + { position = { x = 24, y = 31 }, name = 'dirt-5' }, + { position = { x = 25, y = 0 }, name = 'dirt-5' }, + { position = { x = 25, y = 1 }, name = 'stone-path' }, + { position = { x = 25, y = 2 }, name = 'stone-path' }, + { position = { x = 25, y = 3 }, name = 'stone-path' }, + { position = { x = 25, y = 4 }, name = 'stone-path' }, + { position = { x = 25, y = 5 }, name = 'stone-path' }, + { position = { x = 25, y = 6 }, name = 'stone-path' }, + { position = { x = 25, y = 7 }, name = 'stone-path' }, + { position = { x = 25, y = 8 }, name = 'stone-path' }, + { position = { x = 25, y = 9 }, name = 'stone-path' }, + { position = { x = 25, y = 10 }, name = 'stone-path' }, + { position = { x = 25, y = 11 }, name = 'stone-path' }, + { position = { x = 25, y = 12 }, name = 'stone-path' }, + { position = { x = 25, y = 13 }, name = 'stone-path' }, + { position = { x = 25, y = 14 }, name = 'stone-path' }, + { position = { x = 25, y = 15 }, name = 'stone-path' }, + { position = { x = 25, y = 16 }, name = 'stone-path' }, + { position = { x = 25, y = 17 }, name = 'stone-path' }, + { position = { x = 25, y = 18 }, name = 'stone-path' }, + { position = { x = 25, y = 19 }, name = 'stone-path' }, + { position = { x = 25, y = 20 }, name = 'stone-path' }, + { position = { x = 25, y = 21 }, name = 'stone-path' }, + { position = { x = 25, y = 22 }, name = 'stone-path' }, + { position = { x = 25, y = 23 }, name = 'stone-path' }, + { position = { x = 25, y = 24 }, name = 'stone-path' }, + { position = { x = 25, y = 25 }, name = 'stone-path' }, + { position = { x = 25, y = 26 }, name = 'stone-path' }, + { position = { x = 25, y = 27 }, name = 'stone-path' }, + { position = { x = 25, y = 28 }, name = 'stone-path' }, + { position = { x = 25, y = 29 }, name = 'stone-path' }, + { position = { x = 25, y = 30 }, name = 'stone-path' }, + { position = { x = 25, y = 31 }, name = 'dirt-5' }, + { position = { x = 26, y = 0 }, name = 'dirt-5' }, + { position = { x = 26, y = 1 }, name = 'stone-path' }, + { position = { x = 26, y = 2 }, name = 'stone-path' }, + { position = { x = 26, y = 3 }, name = 'stone-path' }, + { position = { x = 26, y = 4 }, name = 'stone-path' }, + { position = { x = 26, y = 5 }, name = 'stone-path' }, + { position = { x = 26, y = 6 }, name = 'stone-path' }, + { position = { x = 26, y = 7 }, name = 'stone-path' }, + { position = { x = 26, y = 8 }, name = 'stone-path' }, + { position = { x = 26, y = 9 }, name = 'stone-path' }, + { position = { x = 26, y = 10 }, name = 'stone-path' }, + { position = { x = 26, y = 11 }, name = 'stone-path' }, + { position = { x = 26, y = 12 }, name = 'stone-path' }, + { position = { x = 26, y = 13 }, name = 'stone-path' }, + { position = { x = 26, y = 14 }, name = 'stone-path' }, + { position = { x = 26, y = 15 }, name = 'stone-path' }, + { position = { x = 26, y = 16 }, name = 'stone-path' }, + { position = { x = 26, y = 17 }, name = 'stone-path' }, + { position = { x = 26, y = 18 }, name = 'stone-path' }, + { position = { x = 26, y = 19 }, name = 'stone-path' }, + { position = { x = 26, y = 20 }, name = 'stone-path' }, + { position = { x = 26, y = 21 }, name = 'stone-path' }, + { position = { x = 26, y = 22 }, name = 'stone-path' }, + { position = { x = 26, y = 23 }, name = 'stone-path' }, + { position = { x = 26, y = 24 }, name = 'stone-path' }, + { position = { x = 26, y = 25 }, name = 'stone-path' }, + { position = { x = 26, y = 26 }, name = 'stone-path' }, + { position = { x = 26, y = 27 }, name = 'stone-path' }, + { position = { x = 26, y = 28 }, name = 'stone-path' }, + { position = { x = 26, y = 29 }, name = 'stone-path' }, + { position = { x = 26, y = 30 }, name = 'stone-path' }, + { position = { x = 26, y = 31 }, name = 'dirt-5' }, + { position = { x = 27, y = 0 }, name = 'dirt-5' }, + { position = { x = 27, y = 1 }, name = 'stone-path' }, + { position = { x = 27, y = 2 }, name = 'stone-path' }, + { position = { x = 27, y = 3 }, name = 'stone-path' }, + { position = { x = 27, y = 4 }, name = 'stone-path' }, + { position = { x = 27, y = 5 }, name = 'stone-path' }, + { position = { x = 27, y = 6 }, name = 'stone-path' }, + { position = { x = 27, y = 7 }, name = 'stone-path' }, + { position = { x = 27, y = 8 }, name = 'stone-path' }, + { position = { x = 27, y = 9 }, name = 'stone-path' }, + { position = { x = 27, y = 10 }, name = 'stone-path' }, + { position = { x = 27, y = 11 }, name = 'stone-path' }, + { position = { x = 27, y = 12 }, name = 'stone-path' }, + { position = { x = 27, y = 13 }, name = 'stone-path' }, + { position = { x = 27, y = 14 }, name = 'stone-path' }, + { position = { x = 27, y = 15 }, name = 'stone-path' }, + { position = { x = 27, y = 16 }, name = 'stone-path' }, + { position = { x = 27, y = 17 }, name = 'stone-path' }, + { position = { x = 27, y = 18 }, name = 'stone-path' }, + { position = { x = 27, y = 19 }, name = 'stone-path' }, + { position = { x = 27, y = 20 }, name = 'stone-path' }, + { position = { x = 27, y = 21 }, name = 'stone-path' }, + { position = { x = 27, y = 22 }, name = 'stone-path' }, + { position = { x = 27, y = 23 }, name = 'stone-path' }, + { position = { x = 27, y = 24 }, name = 'stone-path' }, + { position = { x = 27, y = 25 }, name = 'stone-path' }, + { position = { x = 27, y = 26 }, name = 'stone-path' }, + { position = { x = 27, y = 27 }, name = 'stone-path' }, + { position = { x = 27, y = 28 }, name = 'stone-path' }, + { position = { x = 27, y = 29 }, name = 'stone-path' }, + { position = { x = 27, y = 30 }, name = 'stone-path' }, + { position = { x = 27, y = 31 }, name = 'dirt-5' }, + { position = { x = 28, y = 0 }, name = 'dirt-5' }, + { position = { x = 28, y = 1 }, name = 'stone-path' }, + { position = { x = 28, y = 2 }, name = 'stone-path' }, + { position = { x = 28, y = 3 }, name = 'stone-path' }, + { position = { x = 28, y = 4 }, name = 'stone-path' }, + { position = { x = 28, y = 5 }, name = 'stone-path' }, + { position = { x = 28, y = 6 }, name = 'stone-path' }, + { position = { x = 28, y = 7 }, name = 'stone-path' }, + { position = { x = 28, y = 8 }, name = 'stone-path' }, + { position = { x = 28, y = 9 }, name = 'stone-path' }, + { position = { x = 28, y = 10 }, name = 'stone-path' }, + { position = { x = 28, y = 11 }, name = 'stone-path' }, + { position = { x = 28, y = 12 }, name = 'stone-path' }, + { position = { x = 28, y = 13 }, name = 'stone-path' }, + { position = { x = 28, y = 14 }, name = 'stone-path' }, + { position = { x = 28, y = 15 }, name = 'stone-path' }, + { position = { x = 28, y = 16 }, name = 'stone-path' }, + { position = { x = 28, y = 17 }, name = 'stone-path' }, + { position = { x = 28, y = 18 }, name = 'stone-path' }, + { position = { x = 28, y = 19 }, name = 'stone-path' }, + { position = { x = 28, y = 20 }, name = 'stone-path' }, + { position = { x = 28, y = 21 }, name = 'stone-path' }, + { position = { x = 28, y = 22 }, name = 'stone-path' }, + { position = { x = 28, y = 23 }, name = 'stone-path' }, + { position = { x = 28, y = 24 }, name = 'stone-path' }, + { position = { x = 28, y = 25 }, name = 'stone-path' }, + { position = { x = 28, y = 26 }, name = 'stone-path' }, + { position = { x = 28, y = 27 }, name = 'stone-path' }, + { position = { x = 28, y = 28 }, name = 'stone-path' }, + { position = { x = 28, y = 29 }, name = 'stone-path' }, + { position = { x = 28, y = 30 }, name = 'stone-path' }, + { position = { x = 28, y = 31 }, name = 'dirt-5' }, + { position = { x = 29, y = 0 }, name = 'dirt-5' }, + { position = { x = 29, y = 1 }, name = 'stone-path' }, + { position = { x = 29, y = 2 }, name = 'stone-path' }, + { position = { x = 29, y = 3 }, name = 'stone-path' }, + { position = { x = 29, y = 4 }, name = 'stone-path' }, + { position = { x = 29, y = 5 }, name = 'stone-path' }, + { position = { x = 29, y = 6 }, name = 'stone-path' }, + { position = { x = 29, y = 7 }, name = 'stone-path' }, + { position = { x = 29, y = 8 }, name = 'stone-path' }, + { position = { x = 29, y = 9 }, name = 'stone-path' }, + { position = { x = 29, y = 10 }, name = 'stone-path' }, + { position = { x = 29, y = 11 }, name = 'stone-path' }, + { position = { x = 29, y = 12 }, name = 'dirt-5' }, + { position = { x = 29, y = 13 }, name = 'stone-path' }, + { position = { x = 29, y = 14 }, name = 'stone-path' }, + { position = { x = 29, y = 15 }, name = 'stone-path' }, + { position = { x = 29, y = 16 }, name = 'stone-path' }, + { position = { x = 29, y = 17 }, name = 'stone-path' }, + { position = { x = 29, y = 18 }, name = 'stone-path' }, + { position = { x = 29, y = 19 }, name = 'dirt-5' }, + { position = { x = 29, y = 20 }, name = 'stone-path' }, + { position = { x = 29, y = 21 }, name = 'stone-path' }, + { position = { x = 29, y = 22 }, name = 'stone-path' }, + { position = { x = 29, y = 23 }, name = 'stone-path' }, + { position = { x = 29, y = 24 }, name = 'stone-path' }, + { position = { x = 29, y = 25 }, name = 'stone-path' }, + { position = { x = 29, y = 26 }, name = 'stone-path' }, + { position = { x = 29, y = 27 }, name = 'stone-path' }, + { position = { x = 29, y = 28 }, name = 'stone-path' }, + { position = { x = 29, y = 29 }, name = 'stone-path' }, + { position = { x = 29, y = 30 }, name = 'stone-path' }, + { position = { x = 29, y = 31 }, name = 'dirt-5' }, + { position = { x = 30, y = 0 }, name = 'dirt-5' }, + { position = { x = 30, y = 1 }, name = 'stone-path' }, + { position = { x = 30, y = 2 }, name = 'stone-path' }, + { position = { x = 30, y = 3 }, name = 'stone-path' }, + { position = { x = 30, y = 4 }, name = 'stone-path' }, + { position = { x = 30, y = 5 }, name = 'stone-path' }, + { position = { x = 30, y = 6 }, name = 'stone-path' }, + { position = { x = 30, y = 7 }, name = 'stone-path' }, + { position = { x = 30, y = 8 }, name = 'stone-path' }, + { position = { x = 30, y = 9 }, name = 'stone-path' }, + { position = { x = 30, y = 10 }, name = 'stone-path' }, + { position = { x = 30, y = 11 }, name = 'stone-path' }, + { position = { x = 30, y = 12 }, name = 'dirt-5' }, + { position = { x = 30, y = 13 }, name = 'dirt-5' }, + { position = { x = 30, y = 14 }, name = 'dirt-5' }, + { position = { x = 30, y = 15 }, name = 'dirt-5' }, + { position = { x = 30, y = 16 }, name = 'dirt-5' }, + { position = { x = 30, y = 17 }, name = 'dirt-5' }, + { position = { x = 30, y = 18 }, name = 'dirt-5' }, + { position = { x = 30, y = 19 }, name = 'dirt-5' }, + { position = { x = 30, y = 20 }, name = 'stone-path' }, + { position = { x = 30, y = 21 }, name = 'stone-path' }, + { position = { x = 30, y = 22 }, name = 'stone-path' }, + { position = { x = 30, y = 23 }, name = 'stone-path' }, + { position = { x = 30, y = 24 }, name = 'stone-path' }, + { position = { x = 30, y = 25 }, name = 'stone-path' }, + { position = { x = 30, y = 26 }, name = 'stone-path' }, + { position = { x = 30, y = 27 }, name = 'stone-path' }, + { position = { x = 30, y = 28 }, name = 'stone-path' }, + { position = { x = 30, y = 29 }, name = 'stone-path' }, + { position = { x = 30, y = 30 }, name = 'stone-path' }, + { position = { x = 30, y = 31 }, name = 'dirt-5' }, + { position = { x = 31, y = 0 }, name = 'dirt-5' }, + { position = { x = 31, y = 1 }, name = 'dirt-5' }, + { position = { x = 31, y = 2 }, name = 'dirt-5' }, + { position = { x = 31, y = 3 }, name = 'dirt-5' }, + { position = { x = 31, y = 4 }, name = 'dirt-5' }, + { position = { x = 31, y = 5 }, name = 'dirt-5' }, + { position = { x = 31, y = 6 }, name = 'dirt-5' }, + { position = { x = 31, y = 7 }, name = 'dirt-5' }, + { position = { x = 31, y = 8 }, name = 'dirt-5' }, + { position = { x = 31, y = 9 }, name = 'dirt-5' }, + { position = { x = 31, y = 10 }, name = 'dirt-5' }, + { position = { x = 31, y = 11 }, name = 'dirt-5' }, + { position = { x = 31, y = 12 }, name = 'dirt-5' }, + { position = { x = 31, y = 13 }, name = 'dirt-5' }, + { position = { x = 31, y = 14 }, name = 'dirt-5' }, + { position = { x = 31, y = 15 }, name = 'dirt-5' }, + { position = { x = 31, y = 16 }, name = 'dirt-5' }, + { position = { x = 31, y = 17 }, name = 'dirt-5' }, + { position = { x = 31, y = 18 }, name = 'dirt-5' }, + { position = { x = 31, y = 19 }, name = 'dirt-5' }, + { position = { x = 31, y = 20 }, name = 'dirt-5' }, + { position = { x = 31, y = 21 }, name = 'dirt-5' }, + { position = { x = 31, y = 22 }, name = 'dirt-5' }, + { position = { x = 31, y = 23 }, name = 'dirt-5' }, + { position = { x = 31, y = 24 }, name = 'dirt-5' }, + { position = { x = 31, y = 25 }, name = 'dirt-5' }, + { position = { x = 31, y = 26 }, name = 'dirt-5' }, + { position = { x = 31, y = 27 }, name = 'dirt-5' }, + { position = { x = 31, y = 28 }, name = 'dirt-5' }, + { position = { x = 31, y = 29 }, name = 'dirt-5' }, + { position = { x = 31, y = 30 }, name = 'dirt-5' }, + { position = { x = 31, y = 31 }, name = 'dirt-5' } } }, railway_roundabout = { entities = { - {position = {x = 15.5, y = 13.5}, name = 'accumulator', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 1.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 2, y = 2}, name = 'gun-turret', direction = 2, force = 'player'}, - {position = {x = 3.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 2.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 3.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 4.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 5.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 6.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 7.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 8.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 9.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 11.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 10.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 12.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 13.5, y = 0.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 14.5, y = 0.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 15.5, y = 0.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 16.5, y = 0.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 17.5, y = 0.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 19.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 18.5, y = 0.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 20.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 21.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 22.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 23.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 24.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 25.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 26.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 27.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 28.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 28.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 29.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 30, y = 2}, name = 'gun-turret', direction = 2, force = 'player'}, - {position = {x = 30.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 1.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 0.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 1.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 2.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 3.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 3.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 29.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 28.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 28.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 30.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 3.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 2.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 12, y = 6}, name = 'curved-rail', direction = 6, force = 'player'}, - {position = {x = 20, y = 6}, name = 'curved-rail', direction = 3, force = 'player'}, - {position = {x = 31.5, y = 5.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 4.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 9, y = 9}, name = 'straight-rail', direction = 7, force = 'player'}, - {position = {x = 23, y = 9}, name = 'straight-rail', direction = 1, force = 'player'}, - {position = {x = 31.5, y = 7.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 6.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 6, y = 12}, name = 'curved-rail', direction = 1, force = 'player'}, - {position = {x = 12.5, y = 8.5}, name = 'small-lamp', direction = 0, force = 'player'}, - {position = {x = 19.5, y = 8.5}, name = 'small-lamp', direction = 0, force = 'player'}, - {position = {x = 26, y = 12}, name = 'curved-rail', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 9.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 8.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 11.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 10.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 13.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 8.5, y = 12.5}, name = 'small-lamp', direction = 0, force = 'player'}, - {position = {x = 13.5, y = 13.5}, name = 'solar-panel', direction = 0, force = 'player'}, - {position = {x = 18.5, y = 13.5}, name = 'solar-panel', direction = 0, force = 'player'}, - {position = {x = 23.5, y = 12.5}, name = 'small-lamp', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 13.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 12.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 14.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 15.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 16, y = 16}, name = 'substation', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 15.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 14.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 17.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 16.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 6, y = 20}, name = 'curved-rail', direction = 4, force = 'player'}, - {position = {x = 13.5, y = 18.5}, name = 'solar-panel', direction = 0, force = 'player'}, - {position = {x = 18.5, y = 18.5}, name = 'solar-panel', direction = 0, force = 'player'}, - {position = {x = 26, y = 20}, name = 'curved-rail', direction = 5, force = 'player'}, - {position = {x = 31.5, y = 17.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 16.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 18.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 8.5, y = 19.5}, name = 'small-lamp', direction = 0, force = 'player'}, - {position = {x = 23.5, y = 19.5}, name = 'small-lamp', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 19.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 18.5}, name = 'gate', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 20.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 21.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 9, y = 23}, name = 'straight-rail', direction = 5, force = 'player'}, - {position = {x = 12, y = 26}, name = 'curved-rail', direction = 7, force = 'player'}, - {position = {x = 12.5, y = 23.5}, name = 'small-lamp', direction = 0, force = 'player'}, - {position = {x = 20, y = 26}, name = 'curved-rail', direction = 2, force = 'player'}, - {position = {x = 19.5, y = 23.5}, name = 'small-lamp', direction = 0, force = 'player'}, - {position = {x = 23, y = 23}, name = 'straight-rail', direction = 3, force = 'player'}, - {position = {x = 31.5, y = 22.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 23.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 24.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 25.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 26.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 27.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 1.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 2, y = 30}, name = 'gun-turret', direction = 2, force = 'player'}, - {position = {x = 3.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 3.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 2.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 28.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 28.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 29.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 30, y = 30}, name = 'gun-turret', direction = 2, force = 'player'}, - {position = {x = 30.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 28.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 29.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 1.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 0.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 3.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 3.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 2.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 5.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 4.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 7.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 6.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 9.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 8.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 11.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 10.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 12.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 13.5, y = 31.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 15.5, y = 31.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 14.5, y = 31.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 17.5, y = 31.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 16.5, y = 31.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 19.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 18.5, y = 31.5}, name = 'gate', direction = 2, force = 'player'}, - {position = {x = 21.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 20.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 23.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 22.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 25.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 24.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 27.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 26.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 28.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 29.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 28.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 30.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 31.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'}, - {position = {x = 30.5, y = 31.5}, name = 'stone-wall', direction = 0, force = 'player'} + { position = { x = 15.5, y = 13.5 }, name = 'accumulator', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 1.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 2, y = 2 }, name = 'gun-turret', direction = 2, force = 'player' }, + { position = { x = 3.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 2.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 3.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 4.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 5.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 6.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 7.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 8.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 9.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 11.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 10.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 12.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 13.5, y = 0.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 14.5, y = 0.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 15.5, y = 0.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 16.5, y = 0.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 17.5, y = 0.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 19.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 18.5, y = 0.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 20.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 21.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 22.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 23.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 24.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 25.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 26.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 27.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 28.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 28.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 29.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 30, y = 2 }, name = 'gun-turret', direction = 2, force = 'player' }, + { position = { x = 30.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 1.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 0.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 1.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 2.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 3.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 3.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 29.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 28.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 28.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 30.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 3.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 2.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 12, y = 6 }, name = 'curved-rail', direction = 6, force = 'player' }, + { position = { x = 20, y = 6 }, name = 'curved-rail', direction = 3, force = 'player' }, + { position = { x = 31.5, y = 5.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 4.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 9, y = 9 }, name = 'straight-rail', direction = 7, force = 'player' }, + { position = { x = 23, y = 9 }, name = 'straight-rail', direction = 1, force = 'player' }, + { position = { x = 31.5, y = 7.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 6.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 6, y = 12 }, name = 'curved-rail', direction = 1, force = 'player' }, + { position = { x = 12.5, y = 8.5 }, name = 'small-lamp', direction = 0, force = 'player' }, + { position = { x = 19.5, y = 8.5 }, name = 'small-lamp', direction = 0, force = 'player' }, + { position = { x = 26, y = 12 }, name = 'curved-rail', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 9.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 8.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 11.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 10.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 13.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 8.5, y = 12.5 }, name = 'small-lamp', direction = 0, force = 'player' }, + { position = { x = 13.5, y = 13.5 }, name = 'solar-panel', direction = 0, force = 'player' }, + { position = { x = 18.5, y = 13.5 }, name = 'solar-panel', direction = 0, force = 'player' }, + { position = { x = 23.5, y = 12.5 }, name = 'small-lamp', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 13.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 12.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 14.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 15.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 16, y = 16 }, name = 'substation', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 15.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 14.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 17.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 16.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 6, y = 20 }, name = 'curved-rail', direction = 4, force = 'player' }, + { position = { x = 13.5, y = 18.5 }, name = 'solar-panel', direction = 0, force = 'player' }, + { position = { x = 18.5, y = 18.5 }, name = 'solar-panel', direction = 0, force = 'player' }, + { position = { x = 26, y = 20 }, name = 'curved-rail', direction = 5, force = 'player' }, + { position = { x = 31.5, y = 17.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 16.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 18.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 8.5, y = 19.5 }, name = 'small-lamp', direction = 0, force = 'player' }, + { position = { x = 23.5, y = 19.5 }, name = 'small-lamp', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 19.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 18.5 }, name = 'gate', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 20.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 21.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 9, y = 23 }, name = 'straight-rail', direction = 5, force = 'player' }, + { position = { x = 12, y = 26 }, name = 'curved-rail', direction = 7, force = 'player' }, + { position = { x = 12.5, y = 23.5 }, name = 'small-lamp', direction = 0, force = 'player' }, + { position = { x = 20, y = 26 }, name = 'curved-rail', direction = 2, force = 'player' }, + { position = { x = 19.5, y = 23.5 }, name = 'small-lamp', direction = 0, force = 'player' }, + { position = { x = 23, y = 23 }, name = 'straight-rail', direction = 3, force = 'player' }, + { position = { x = 31.5, y = 22.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 23.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 24.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 25.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 26.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 27.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 1.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 2, y = 30 }, name = 'gun-turret', direction = 2, force = 'player' }, + { position = { x = 3.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 3.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 2.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 28.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 28.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 29.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 30, y = 30 }, name = 'gun-turret', direction = 2, force = 'player' }, + { position = { x = 30.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 28.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 29.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 1.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 0.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 3.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 3.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 2.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 5.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 4.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 7.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 6.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 9.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 8.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 11.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 10.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 12.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 13.5, y = 31.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 15.5, y = 31.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 14.5, y = 31.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 17.5, y = 31.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 16.5, y = 31.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 19.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 18.5, y = 31.5 }, name = 'gate', direction = 2, force = 'player' }, + { position = { x = 21.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 20.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 23.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 22.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 25.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 24.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 27.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 26.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 28.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 29.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 28.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 30.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 31.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' }, + { position = { x = 30.5, y = 31.5 }, name = 'stone-wall', direction = 0, force = 'player' } }, tiles = { - {position = {x = 0, y = 0}, name = 'grass-1'}, - {position = {x = 0, y = 1}, name = 'grass-1'}, - {position = {x = 0, y = 2}, name = 'grass-1'}, - {position = {x = 0, y = 3}, name = 'grass-1'}, - {position = {x = 0, y = 4}, name = 'grass-1'}, - {position = {x = 0, y = 5}, name = 'grass-1'}, - {position = {x = 0, y = 6}, name = 'grass-1'}, - {position = {x = 0, y = 7}, name = 'grass-1'}, - {position = {x = 0, y = 8}, name = 'grass-1'}, - {position = {x = 0, y = 9}, name = 'grass-1'}, - {position = {x = 0, y = 10}, name = 'grass-1'}, - {position = {x = 0, y = 11}, name = 'grass-1'}, - {position = {x = 0, y = 12}, name = 'grass-1'}, - {position = {x = 0, y = 13}, name = 'grass-1'}, - {position = {x = 0, y = 14}, name = 'grass-1'}, - {position = {x = 0, y = 15}, name = 'grass-1'}, - {position = {x = 0, y = 16}, name = 'grass-1'}, - {position = {x = 0, y = 17}, name = 'grass-1'}, - {position = {x = 0, y = 18}, name = 'grass-1'}, - {position = {x = 0, y = 19}, name = 'grass-1'}, - {position = {x = 0, y = 20}, name = 'grass-1'}, - {position = {x = 0, y = 21}, name = 'grass-1'}, - {position = {x = 0, y = 22}, name = 'grass-1'}, - {position = {x = 0, y = 23}, name = 'grass-1'}, - {position = {x = 0, y = 24}, name = 'grass-1'}, - {position = {x = 0, y = 25}, name = 'grass-1'}, - {position = {x = 0, y = 26}, name = 'grass-1'}, - {position = {x = 0, y = 27}, name = 'grass-1'}, - {position = {x = 0, y = 28}, name = 'grass-1'}, - {position = {x = 0, y = 29}, name = 'grass-1'}, - {position = {x = 0, y = 30}, name = 'grass-1'}, - {position = {x = 0, y = 31}, name = 'grass-1'}, - {position = {x = 1, y = 0}, name = 'grass-1'}, - {position = {x = 1, y = 1}, name = 'grass-1'}, - {position = {x = 1, y = 2}, name = 'grass-1'}, - {position = {x = 1, y = 3}, name = 'grass-1'}, - {position = {x = 1, y = 4}, name = 'grass-1'}, - {position = {x = 1, y = 5}, name = 'grass-1'}, - {position = {x = 1, y = 6}, name = 'grass-1'}, - {position = {x = 1, y = 7}, name = 'grass-1'}, - {position = {x = 1, y = 8}, name = 'grass-1'}, - {position = {x = 1, y = 9}, name = 'grass-1'}, - {position = {x = 1, y = 10}, name = 'grass-1'}, - {position = {x = 1, y = 11}, name = 'grass-1'}, - {position = {x = 1, y = 12}, name = 'grass-1'}, - {position = {x = 1, y = 13}, name = 'grass-1'}, - {position = {x = 1, y = 14}, name = 'grass-1'}, - {position = {x = 1, y = 15}, name = 'grass-1'}, - {position = {x = 1, y = 16}, name = 'grass-1'}, - {position = {x = 1, y = 17}, name = 'grass-1'}, - {position = {x = 1, y = 18}, name = 'grass-1'}, - {position = {x = 1, y = 19}, name = 'grass-1'}, - {position = {x = 1, y = 20}, name = 'grass-1'}, - {position = {x = 1, y = 21}, name = 'grass-1'}, - {position = {x = 1, y = 22}, name = 'grass-1'}, - {position = {x = 1, y = 23}, name = 'grass-1'}, - {position = {x = 1, y = 24}, name = 'grass-1'}, - {position = {x = 1, y = 25}, name = 'grass-1'}, - {position = {x = 1, y = 26}, name = 'grass-1'}, - {position = {x = 1, y = 27}, name = 'grass-1'}, - {position = {x = 1, y = 28}, name = 'grass-1'}, - {position = {x = 1, y = 29}, name = 'grass-1'}, - {position = {x = 1, y = 30}, name = 'grass-1'}, - {position = {x = 1, y = 31}, name = 'grass-1'}, - {position = {x = 2, y = 0}, name = 'grass-1'}, - {position = {x = 2, y = 1}, name = 'grass-1'}, - {position = {x = 2, y = 2}, name = 'grass-1'}, - {position = {x = 2, y = 3}, name = 'grass-1'}, - {position = {x = 2, y = 4}, name = 'grass-1'}, - {position = {x = 2, y = 5}, name = 'grass-1'}, - {position = {x = 2, y = 6}, name = 'grass-1'}, - {position = {x = 2, y = 7}, name = 'grass-1'}, - {position = {x = 2, y = 8}, name = 'grass-1'}, - {position = {x = 2, y = 9}, name = 'grass-1'}, - {position = {x = 2, y = 10}, name = 'grass-1'}, - {position = {x = 2, y = 11}, name = 'grass-1'}, - {position = {x = 2, y = 12}, name = 'grass-1'}, - {position = {x = 2, y = 13}, name = 'grass-1'}, - {position = {x = 2, y = 14}, name = 'grass-1'}, - {position = {x = 2, y = 15}, name = 'grass-1'}, - {position = {x = 2, y = 16}, name = 'grass-1'}, - {position = {x = 2, y = 17}, name = 'grass-1'}, - {position = {x = 2, y = 18}, name = 'grass-1'}, - {position = {x = 2, y = 19}, name = 'grass-1'}, - {position = {x = 2, y = 20}, name = 'grass-1'}, - {position = {x = 2, y = 21}, name = 'grass-1'}, - {position = {x = 2, y = 22}, name = 'grass-1'}, - {position = {x = 2, y = 23}, name = 'grass-1'}, - {position = {x = 2, y = 24}, name = 'grass-1'}, - {position = {x = 2, y = 25}, name = 'grass-1'}, - {position = {x = 2, y = 26}, name = 'grass-1'}, - {position = {x = 2, y = 27}, name = 'grass-1'}, - {position = {x = 2, y = 28}, name = 'grass-1'}, - {position = {x = 2, y = 29}, name = 'grass-1'}, - {position = {x = 2, y = 30}, name = 'grass-1'}, - {position = {x = 2, y = 31}, name = 'grass-1'}, - {position = {x = 3, y = 0}, name = 'grass-1'}, - {position = {x = 3, y = 1}, name = 'grass-1'}, - {position = {x = 3, y = 2}, name = 'grass-1'}, - {position = {x = 3, y = 3}, name = 'grass-1'}, - {position = {x = 3, y = 4}, name = 'grass-1'}, - {position = {x = 3, y = 5}, name = 'grass-1'}, - {position = {x = 3, y = 6}, name = 'grass-1'}, - {position = {x = 3, y = 7}, name = 'grass-1'}, - {position = {x = 3, y = 8}, name = 'grass-1'}, - {position = {x = 3, y = 9}, name = 'grass-1'}, - {position = {x = 3, y = 10}, name = 'grass-1'}, - {position = {x = 3, y = 11}, name = 'grass-1'}, - {position = {x = 3, y = 12}, name = 'grass-1'}, - {position = {x = 3, y = 13}, name = 'grass-1'}, - {position = {x = 3, y = 14}, name = 'grass-1'}, - {position = {x = 3, y = 15}, name = 'grass-1'}, - {position = {x = 3, y = 16}, name = 'grass-1'}, - {position = {x = 3, y = 17}, name = 'grass-1'}, - {position = {x = 3, y = 18}, name = 'grass-1'}, - {position = {x = 3, y = 19}, name = 'grass-1'}, - {position = {x = 3, y = 20}, name = 'grass-1'}, - {position = {x = 3, y = 21}, name = 'grass-1'}, - {position = {x = 3, y = 22}, name = 'grass-1'}, - {position = {x = 3, y = 23}, name = 'grass-1'}, - {position = {x = 3, y = 24}, name = 'grass-1'}, - {position = {x = 3, y = 25}, name = 'grass-1'}, - {position = {x = 3, y = 26}, name = 'grass-1'}, - {position = {x = 3, y = 27}, name = 'grass-1'}, - {position = {x = 3, y = 28}, name = 'grass-1'}, - {position = {x = 3, y = 29}, name = 'grass-1'}, - {position = {x = 3, y = 30}, name = 'grass-1'}, - {position = {x = 3, y = 31}, name = 'grass-1'}, - {position = {x = 4, y = 0}, name = 'grass-1'}, - {position = {x = 4, y = 1}, name = 'grass-1'}, - {position = {x = 4, y = 2}, name = 'grass-1'}, - {position = {x = 4, y = 3}, name = 'grass-1'}, - {position = {x = 4, y = 4}, name = 'grass-1'}, - {position = {x = 4, y = 5}, name = 'grass-1'}, - {position = {x = 4, y = 6}, name = 'grass-1'}, - {position = {x = 4, y = 7}, name = 'grass-1'}, - {position = {x = 4, y = 8}, name = 'grass-1'}, - {position = {x = 4, y = 9}, name = 'grass-1'}, - {position = {x = 4, y = 10}, name = 'grass-1'}, - {position = {x = 4, y = 11}, name = 'grass-1'}, - {position = {x = 4, y = 12}, name = 'grass-1'}, - {position = {x = 4, y = 13}, name = 'grass-1'}, - {position = {x = 4, y = 14}, name = 'grass-1'}, - {position = {x = 4, y = 15}, name = 'grass-1'}, - {position = {x = 4, y = 16}, name = 'grass-1'}, - {position = {x = 4, y = 17}, name = 'grass-1'}, - {position = {x = 4, y = 18}, name = 'grass-1'}, - {position = {x = 4, y = 19}, name = 'grass-1'}, - {position = {x = 4, y = 20}, name = 'grass-1'}, - {position = {x = 4, y = 21}, name = 'grass-1'}, - {position = {x = 4, y = 22}, name = 'grass-1'}, - {position = {x = 4, y = 23}, name = 'grass-1'}, - {position = {x = 4, y = 24}, name = 'grass-1'}, - {position = {x = 4, y = 25}, name = 'grass-1'}, - {position = {x = 4, y = 26}, name = 'grass-1'}, - {position = {x = 4, y = 27}, name = 'grass-1'}, - {position = {x = 4, y = 28}, name = 'grass-1'}, - {position = {x = 4, y = 29}, name = 'grass-1'}, - {position = {x = 4, y = 30}, name = 'grass-1'}, - {position = {x = 4, y = 31}, name = 'grass-1'}, - {position = {x = 5, y = 0}, name = 'grass-1'}, - {position = {x = 5, y = 1}, name = 'grass-1'}, - {position = {x = 5, y = 2}, name = 'grass-1'}, - {position = {x = 5, y = 3}, name = 'grass-1'}, - {position = {x = 5, y = 4}, name = 'grass-1'}, - {position = {x = 5, y = 5}, name = 'grass-1'}, - {position = {x = 5, y = 6}, name = 'grass-1'}, - {position = {x = 5, y = 7}, name = 'grass-1'}, - {position = {x = 5, y = 8}, name = 'grass-1'}, - {position = {x = 5, y = 9}, name = 'grass-1'}, - {position = {x = 5, y = 10}, name = 'grass-1'}, - {position = {x = 5, y = 11}, name = 'grass-1'}, - {position = {x = 5, y = 12}, name = 'grass-1'}, - {position = {x = 5, y = 13}, name = 'grass-1'}, - {position = {x = 5, y = 14}, name = 'grass-1'}, - {position = {x = 5, y = 15}, name = 'grass-1'}, - {position = {x = 5, y = 16}, name = 'grass-1'}, - {position = {x = 5, y = 17}, name = 'grass-1'}, - {position = {x = 5, y = 18}, name = 'grass-1'}, - {position = {x = 5, y = 19}, name = 'grass-1'}, - {position = {x = 5, y = 20}, name = 'grass-1'}, - {position = {x = 5, y = 21}, name = 'grass-1'}, - {position = {x = 5, y = 22}, name = 'grass-1'}, - {position = {x = 5, y = 23}, name = 'grass-1'}, - {position = {x = 5, y = 24}, name = 'grass-1'}, - {position = {x = 5, y = 25}, name = 'grass-1'}, - {position = {x = 5, y = 26}, name = 'grass-1'}, - {position = {x = 5, y = 27}, name = 'grass-1'}, - {position = {x = 5, y = 28}, name = 'grass-1'}, - {position = {x = 5, y = 29}, name = 'grass-1'}, - {position = {x = 5, y = 30}, name = 'grass-1'}, - {position = {x = 5, y = 31}, name = 'grass-1'}, - {position = {x = 6, y = 0}, name = 'grass-1'}, - {position = {x = 6, y = 1}, name = 'grass-1'}, - {position = {x = 6, y = 2}, name = 'grass-1'}, - {position = {x = 6, y = 3}, name = 'grass-1'}, - {position = {x = 6, y = 4}, name = 'grass-1'}, - {position = {x = 6, y = 5}, name = 'grass-1'}, - {position = {x = 6, y = 6}, name = 'grass-1'}, - {position = {x = 6, y = 7}, name = 'grass-1'}, - {position = {x = 6, y = 8}, name = 'grass-1'}, - {position = {x = 6, y = 9}, name = 'grass-1'}, - {position = {x = 6, y = 10}, name = 'grass-1'}, - {position = {x = 6, y = 11}, name = 'grass-1'}, - {position = {x = 6, y = 12}, name = 'grass-1'}, - {position = {x = 6, y = 13}, name = 'grass-1'}, - {position = {x = 6, y = 14}, name = 'grass-1'}, - {position = {x = 6, y = 15}, name = 'grass-1'}, - {position = {x = 6, y = 16}, name = 'grass-1'}, - {position = {x = 6, y = 17}, name = 'grass-1'}, - {position = {x = 6, y = 18}, name = 'grass-1'}, - {position = {x = 6, y = 19}, name = 'grass-1'}, - {position = {x = 6, y = 20}, name = 'grass-1'}, - {position = {x = 6, y = 21}, name = 'grass-1'}, - {position = {x = 6, y = 22}, name = 'grass-1'}, - {position = {x = 6, y = 23}, name = 'grass-1'}, - {position = {x = 6, y = 24}, name = 'grass-1'}, - {position = {x = 6, y = 25}, name = 'grass-1'}, - {position = {x = 6, y = 26}, name = 'grass-1'}, - {position = {x = 6, y = 27}, name = 'grass-1'}, - {position = {x = 6, y = 28}, name = 'grass-1'}, - {position = {x = 6, y = 29}, name = 'grass-1'}, - {position = {x = 6, y = 30}, name = 'grass-1'}, - {position = {x = 6, y = 31}, name = 'grass-1'}, - {position = {x = 7, y = 0}, name = 'grass-1'}, - {position = {x = 7, y = 1}, name = 'grass-1'}, - {position = {x = 7, y = 2}, name = 'grass-1'}, - {position = {x = 7, y = 3}, name = 'grass-1'}, - {position = {x = 7, y = 4}, name = 'grass-1'}, - {position = {x = 7, y = 5}, name = 'grass-1'}, - {position = {x = 7, y = 6}, name = 'grass-1'}, - {position = {x = 7, y = 7}, name = 'grass-1'}, - {position = {x = 7, y = 8}, name = 'grass-1'}, - {position = {x = 7, y = 9}, name = 'grass-1'}, - {position = {x = 7, y = 10}, name = 'grass-1'}, - {position = {x = 7, y = 11}, name = 'grass-1'}, - {position = {x = 7, y = 12}, name = 'grass-1'}, - {position = {x = 7, y = 13}, name = 'grass-1'}, - {position = {x = 7, y = 14}, name = 'grass-1'}, - {position = {x = 7, y = 15}, name = 'grass-1'}, - {position = {x = 7, y = 16}, name = 'grass-1'}, - {position = {x = 7, y = 17}, name = 'grass-1'}, - {position = {x = 7, y = 18}, name = 'grass-1'}, - {position = {x = 7, y = 19}, name = 'grass-1'}, - {position = {x = 7, y = 20}, name = 'grass-1'}, - {position = {x = 7, y = 21}, name = 'grass-1'}, - {position = {x = 7, y = 22}, name = 'grass-1'}, - {position = {x = 7, y = 23}, name = 'grass-1'}, - {position = {x = 7, y = 24}, name = 'grass-1'}, - {position = {x = 7, y = 25}, name = 'grass-1'}, - {position = {x = 7, y = 26}, name = 'grass-1'}, - {position = {x = 7, y = 27}, name = 'grass-1'}, - {position = {x = 7, y = 28}, name = 'grass-1'}, - {position = {x = 7, y = 29}, name = 'grass-1'}, - {position = {x = 7, y = 30}, name = 'grass-1'}, - {position = {x = 7, y = 31}, name = 'grass-1'}, - {position = {x = 8, y = 0}, name = 'grass-1'}, - {position = {x = 8, y = 1}, name = 'grass-1'}, - {position = {x = 8, y = 2}, name = 'grass-1'}, - {position = {x = 8, y = 3}, name = 'grass-1'}, - {position = {x = 8, y = 4}, name = 'grass-1'}, - {position = {x = 8, y = 5}, name = 'grass-1'}, - {position = {x = 8, y = 6}, name = 'grass-1'}, - {position = {x = 8, y = 7}, name = 'grass-1'}, - {position = {x = 8, y = 8}, name = 'grass-1'}, - {position = {x = 8, y = 9}, name = 'grass-1'}, - {position = {x = 8, y = 10}, name = 'grass-1'}, - {position = {x = 8, y = 11}, name = 'grass-1'}, - {position = {x = 8, y = 12}, name = 'grass-1'}, - {position = {x = 8, y = 13}, name = 'grass-1'}, - {position = {x = 8, y = 14}, name = 'grass-1'}, - {position = {x = 8, y = 15}, name = 'grass-1'}, - {position = {x = 8, y = 16}, name = 'grass-1'}, - {position = {x = 8, y = 17}, name = 'grass-1'}, - {position = {x = 8, y = 18}, name = 'grass-1'}, - {position = {x = 8, y = 19}, name = 'grass-1'}, - {position = {x = 8, y = 20}, name = 'grass-1'}, - {position = {x = 8, y = 21}, name = 'grass-1'}, - {position = {x = 8, y = 22}, name = 'grass-1'}, - {position = {x = 8, y = 23}, name = 'grass-1'}, - {position = {x = 8, y = 24}, name = 'grass-1'}, - {position = {x = 8, y = 25}, name = 'grass-1'}, - {position = {x = 8, y = 26}, name = 'grass-1'}, - {position = {x = 8, y = 27}, name = 'grass-1'}, - {position = {x = 8, y = 28}, name = 'grass-1'}, - {position = {x = 8, y = 29}, name = 'grass-1'}, - {position = {x = 8, y = 30}, name = 'grass-1'}, - {position = {x = 8, y = 31}, name = 'grass-1'}, - {position = {x = 9, y = 0}, name = 'grass-1'}, - {position = {x = 9, y = 1}, name = 'grass-1'}, - {position = {x = 9, y = 2}, name = 'grass-1'}, - {position = {x = 9, y = 3}, name = 'grass-1'}, - {position = {x = 9, y = 4}, name = 'grass-1'}, - {position = {x = 9, y = 5}, name = 'grass-1'}, - {position = {x = 9, y = 6}, name = 'grass-1'}, - {position = {x = 9, y = 7}, name = 'grass-1'}, - {position = {x = 9, y = 8}, name = 'grass-1'}, - {position = {x = 9, y = 9}, name = 'grass-1'}, - {position = {x = 9, y = 10}, name = 'grass-1'}, - {position = {x = 9, y = 11}, name = 'grass-1'}, - {position = {x = 9, y = 12}, name = 'grass-1'}, - {position = {x = 9, y = 13}, name = 'grass-1'}, - {position = {x = 9, y = 14}, name = 'grass-1'}, - {position = {x = 9, y = 15}, name = 'grass-1'}, - {position = {x = 9, y = 16}, name = 'grass-1'}, - {position = {x = 9, y = 17}, name = 'grass-1'}, - {position = {x = 9, y = 18}, name = 'grass-1'}, - {position = {x = 9, y = 19}, name = 'grass-1'}, - {position = {x = 9, y = 20}, name = 'grass-1'}, - {position = {x = 9, y = 21}, name = 'grass-1'}, - {position = {x = 9, y = 22}, name = 'grass-1'}, - {position = {x = 9, y = 23}, name = 'grass-1'}, - {position = {x = 9, y = 24}, name = 'grass-1'}, - {position = {x = 9, y = 25}, name = 'grass-1'}, - {position = {x = 9, y = 26}, name = 'grass-1'}, - {position = {x = 9, y = 27}, name = 'grass-1'}, - {position = {x = 9, y = 28}, name = 'grass-1'}, - {position = {x = 9, y = 29}, name = 'grass-1'}, - {position = {x = 9, y = 30}, name = 'grass-1'}, - {position = {x = 9, y = 31}, name = 'grass-1'}, - {position = {x = 10, y = 0}, name = 'grass-1'}, - {position = {x = 10, y = 1}, name = 'grass-1'}, - {position = {x = 10, y = 2}, name = 'grass-1'}, - {position = {x = 10, y = 3}, name = 'grass-1'}, - {position = {x = 10, y = 4}, name = 'grass-1'}, - {position = {x = 10, y = 5}, name = 'grass-1'}, - {position = {x = 10, y = 6}, name = 'grass-1'}, - {position = {x = 10, y = 7}, name = 'grass-1'}, - {position = {x = 10, y = 8}, name = 'grass-1'}, - {position = {x = 10, y = 9}, name = 'grass-1'}, - {position = {x = 10, y = 10}, name = 'grass-1'}, - {position = {x = 10, y = 11}, name = 'grass-1'}, - {position = {x = 10, y = 12}, name = 'grass-1'}, - {position = {x = 10, y = 13}, name = 'grass-1'}, - {position = {x = 10, y = 14}, name = 'grass-1'}, - {position = {x = 10, y = 15}, name = 'grass-1'}, - {position = {x = 10, y = 16}, name = 'grass-1'}, - {position = {x = 10, y = 17}, name = 'grass-1'}, - {position = {x = 10, y = 18}, name = 'grass-1'}, - {position = {x = 10, y = 19}, name = 'grass-1'}, - {position = {x = 10, y = 20}, name = 'grass-1'}, - {position = {x = 10, y = 21}, name = 'grass-1'}, - {position = {x = 10, y = 22}, name = 'grass-1'}, - {position = {x = 10, y = 23}, name = 'grass-1'}, - {position = {x = 10, y = 24}, name = 'grass-1'}, - {position = {x = 10, y = 25}, name = 'grass-1'}, - {position = {x = 10, y = 26}, name = 'grass-1'}, - {position = {x = 10, y = 27}, name = 'grass-1'}, - {position = {x = 10, y = 28}, name = 'grass-1'}, - {position = {x = 10, y = 29}, name = 'grass-1'}, - {position = {x = 10, y = 30}, name = 'grass-1'}, - {position = {x = 10, y = 31}, name = 'grass-1'}, - {position = {x = 11, y = 0}, name = 'grass-1'}, - {position = {x = 11, y = 1}, name = 'grass-1'}, - {position = {x = 11, y = 2}, name = 'grass-1'}, - {position = {x = 11, y = 3}, name = 'grass-1'}, - {position = {x = 11, y = 4}, name = 'grass-1'}, - {position = {x = 11, y = 5}, name = 'grass-1'}, - {position = {x = 11, y = 6}, name = 'grass-1'}, - {position = {x = 11, y = 7}, name = 'grass-1'}, - {position = {x = 11, y = 8}, name = 'grass-1'}, - {position = {x = 11, y = 9}, name = 'grass-1'}, - {position = {x = 11, y = 10}, name = 'grass-1'}, - {position = {x = 11, y = 11}, name = 'grass-1'}, - {position = {x = 11, y = 12}, name = 'grass-1'}, - {position = {x = 11, y = 13}, name = 'grass-1'}, - {position = {x = 11, y = 14}, name = 'grass-1'}, - {position = {x = 11, y = 15}, name = 'grass-1'}, - {position = {x = 11, y = 16}, name = 'grass-1'}, - {position = {x = 11, y = 17}, name = 'grass-1'}, - {position = {x = 11, y = 18}, name = 'grass-1'}, - {position = {x = 11, y = 19}, name = 'grass-1'}, - {position = {x = 11, y = 20}, name = 'grass-1'}, - {position = {x = 11, y = 21}, name = 'grass-1'}, - {position = {x = 11, y = 22}, name = 'grass-1'}, - {position = {x = 11, y = 23}, name = 'grass-1'}, - {position = {x = 11, y = 24}, name = 'grass-1'}, - {position = {x = 11, y = 25}, name = 'grass-1'}, - {position = {x = 11, y = 26}, name = 'grass-1'}, - {position = {x = 11, y = 27}, name = 'grass-1'}, - {position = {x = 11, y = 28}, name = 'grass-1'}, - {position = {x = 11, y = 29}, name = 'grass-1'}, - {position = {x = 11, y = 30}, name = 'grass-1'}, - {position = {x = 11, y = 31}, name = 'grass-1'}, - {position = {x = 12, y = 0}, name = 'grass-1'}, - {position = {x = 12, y = 1}, name = 'grass-1'}, - {position = {x = 12, y = 2}, name = 'grass-1'}, - {position = {x = 12, y = 3}, name = 'grass-1'}, - {position = {x = 12, y = 4}, name = 'grass-1'}, - {position = {x = 12, y = 5}, name = 'grass-1'}, - {position = {x = 12, y = 6}, name = 'grass-1'}, - {position = {x = 12, y = 7}, name = 'grass-1'}, - {position = {x = 12, y = 8}, name = 'grass-1'}, - {position = {x = 12, y = 9}, name = 'grass-1'}, - {position = {x = 12, y = 10}, name = 'grass-1'}, - {position = {x = 12, y = 11}, name = 'grass-1'}, - {position = {x = 12, y = 12}, name = 'grass-1'}, - {position = {x = 12, y = 13}, name = 'grass-1'}, - {position = {x = 12, y = 14}, name = 'grass-1'}, - {position = {x = 12, y = 15}, name = 'grass-1'}, - {position = {x = 12, y = 16}, name = 'grass-1'}, - {position = {x = 12, y = 17}, name = 'grass-1'}, - {position = {x = 12, y = 18}, name = 'grass-1'}, - {position = {x = 12, y = 19}, name = 'grass-1'}, - {position = {x = 12, y = 20}, name = 'grass-1'}, - {position = {x = 12, y = 21}, name = 'grass-1'}, - {position = {x = 12, y = 22}, name = 'grass-1'}, - {position = {x = 12, y = 23}, name = 'grass-1'}, - {position = {x = 12, y = 24}, name = 'grass-1'}, - {position = {x = 12, y = 25}, name = 'grass-1'}, - {position = {x = 12, y = 26}, name = 'grass-1'}, - {position = {x = 12, y = 27}, name = 'grass-1'}, - {position = {x = 12, y = 28}, name = 'grass-1'}, - {position = {x = 12, y = 29}, name = 'grass-1'}, - {position = {x = 12, y = 30}, name = 'grass-1'}, - {position = {x = 12, y = 31}, name = 'grass-1'}, - {position = {x = 13, y = 0}, name = 'grass-1'}, - {position = {x = 13, y = 1}, name = 'grass-1'}, - {position = {x = 13, y = 2}, name = 'grass-1'}, - {position = {x = 13, y = 3}, name = 'grass-1'}, - {position = {x = 13, y = 4}, name = 'grass-1'}, - {position = {x = 13, y = 5}, name = 'grass-1'}, - {position = {x = 13, y = 6}, name = 'grass-1'}, - {position = {x = 13, y = 7}, name = 'grass-1'}, - {position = {x = 13, y = 8}, name = 'grass-1'}, - {position = {x = 13, y = 9}, name = 'grass-1'}, - {position = {x = 13, y = 10}, name = 'grass-1'}, - {position = {x = 13, y = 11}, name = 'grass-1'}, - {position = {x = 13, y = 12}, name = 'grass-1'}, - {position = {x = 13, y = 13}, name = 'grass-1'}, - {position = {x = 13, y = 14}, name = 'grass-1'}, - {position = {x = 13, y = 15}, name = 'grass-1'}, - {position = {x = 13, y = 16}, name = 'grass-1'}, - {position = {x = 13, y = 17}, name = 'grass-1'}, - {position = {x = 13, y = 18}, name = 'grass-1'}, - {position = {x = 13, y = 19}, name = 'grass-1'}, - {position = {x = 13, y = 20}, name = 'grass-1'}, - {position = {x = 13, y = 21}, name = 'grass-1'}, - {position = {x = 13, y = 22}, name = 'grass-1'}, - {position = {x = 13, y = 23}, name = 'grass-1'}, - {position = {x = 13, y = 24}, name = 'grass-1'}, - {position = {x = 13, y = 25}, name = 'grass-1'}, - {position = {x = 13, y = 26}, name = 'grass-1'}, - {position = {x = 13, y = 27}, name = 'grass-1'}, - {position = {x = 13, y = 28}, name = 'grass-1'}, - {position = {x = 13, y = 29}, name = 'grass-1'}, - {position = {x = 13, y = 30}, name = 'grass-1'}, - {position = {x = 13, y = 31}, name = 'grass-1'}, - {position = {x = 14, y = 0}, name = 'grass-1'}, - {position = {x = 14, y = 1}, name = 'grass-1'}, - {position = {x = 14, y = 2}, name = 'grass-1'}, - {position = {x = 14, y = 3}, name = 'grass-1'}, - {position = {x = 14, y = 4}, name = 'grass-1'}, - {position = {x = 14, y = 5}, name = 'grass-1'}, - {position = {x = 14, y = 6}, name = 'grass-1'}, - {position = {x = 14, y = 7}, name = 'grass-1'}, - {position = {x = 14, y = 8}, name = 'grass-1'}, - {position = {x = 14, y = 9}, name = 'grass-1'}, - {position = {x = 14, y = 10}, name = 'grass-1'}, - {position = {x = 14, y = 11}, name = 'grass-1'}, - {position = {x = 14, y = 12}, name = 'grass-1'}, - {position = {x = 14, y = 13}, name = 'grass-1'}, - {position = {x = 14, y = 14}, name = 'grass-1'}, - {position = {x = 14, y = 15}, name = 'grass-1'}, - {position = {x = 14, y = 16}, name = 'grass-1'}, - {position = {x = 14, y = 17}, name = 'grass-1'}, - {position = {x = 14, y = 18}, name = 'grass-1'}, - {position = {x = 14, y = 19}, name = 'grass-1'}, - {position = {x = 14, y = 20}, name = 'grass-1'}, - {position = {x = 14, y = 21}, name = 'grass-1'}, - {position = {x = 14, y = 22}, name = 'grass-1'}, - {position = {x = 14, y = 23}, name = 'grass-1'}, - {position = {x = 14, y = 24}, name = 'grass-1'}, - {position = {x = 14, y = 25}, name = 'grass-1'}, - {position = {x = 14, y = 26}, name = 'grass-1'}, - {position = {x = 14, y = 27}, name = 'grass-1'}, - {position = {x = 14, y = 28}, name = 'grass-1'}, - {position = {x = 14, y = 29}, name = 'grass-1'}, - {position = {x = 14, y = 30}, name = 'grass-1'}, - {position = {x = 14, y = 31}, name = 'grass-1'}, - {position = {x = 15, y = 0}, name = 'grass-1'}, - {position = {x = 15, y = 1}, name = 'grass-1'}, - {position = {x = 15, y = 2}, name = 'grass-1'}, - {position = {x = 15, y = 3}, name = 'grass-1'}, - {position = {x = 15, y = 4}, name = 'grass-1'}, - {position = {x = 15, y = 5}, name = 'grass-1'}, - {position = {x = 15, y = 6}, name = 'grass-1'}, - {position = {x = 15, y = 7}, name = 'grass-1'}, - {position = {x = 15, y = 8}, name = 'grass-1'}, - {position = {x = 15, y = 9}, name = 'grass-1'}, - {position = {x = 15, y = 10}, name = 'grass-1'}, - {position = {x = 15, y = 11}, name = 'grass-1'}, - {position = {x = 15, y = 12}, name = 'grass-1'}, - {position = {x = 15, y = 13}, name = 'grass-1'}, - {position = {x = 15, y = 14}, name = 'grass-1'}, - {position = {x = 15, y = 15}, name = 'grass-1'}, - {position = {x = 15, y = 16}, name = 'grass-1'}, - {position = {x = 15, y = 17}, name = 'grass-1'}, - {position = {x = 15, y = 18}, name = 'grass-1'}, - {position = {x = 15, y = 19}, name = 'grass-1'}, - {position = {x = 15, y = 20}, name = 'grass-1'}, - {position = {x = 15, y = 21}, name = 'grass-1'}, - {position = {x = 15, y = 22}, name = 'grass-1'}, - {position = {x = 15, y = 23}, name = 'grass-1'}, - {position = {x = 15, y = 24}, name = 'grass-1'}, - {position = {x = 15, y = 25}, name = 'grass-1'}, - {position = {x = 15, y = 26}, name = 'grass-1'}, - {position = {x = 15, y = 27}, name = 'grass-1'}, - {position = {x = 15, y = 28}, name = 'grass-1'}, - {position = {x = 15, y = 29}, name = 'grass-1'}, - {position = {x = 15, y = 30}, name = 'grass-1'}, - {position = {x = 15, y = 31}, name = 'grass-1'}, - {position = {x = 16, y = 0}, name = 'grass-1'}, - {position = {x = 16, y = 1}, name = 'grass-1'}, - {position = {x = 16, y = 2}, name = 'grass-1'}, - {position = {x = 16, y = 3}, name = 'grass-1'}, - {position = {x = 16, y = 4}, name = 'grass-1'}, - {position = {x = 16, y = 5}, name = 'grass-1'}, - {position = {x = 16, y = 6}, name = 'grass-1'}, - {position = {x = 16, y = 7}, name = 'grass-1'}, - {position = {x = 16, y = 8}, name = 'grass-1'}, - {position = {x = 16, y = 9}, name = 'grass-1'}, - {position = {x = 16, y = 10}, name = 'grass-1'}, - {position = {x = 16, y = 11}, name = 'grass-1'}, - {position = {x = 16, y = 12}, name = 'grass-1'}, - {position = {x = 16, y = 13}, name = 'grass-1'}, - {position = {x = 16, y = 14}, name = 'grass-1'}, - {position = {x = 16, y = 15}, name = 'grass-1'}, - {position = {x = 16, y = 16}, name = 'grass-1'}, - {position = {x = 16, y = 17}, name = 'grass-1'}, - {position = {x = 16, y = 18}, name = 'grass-1'}, - {position = {x = 16, y = 19}, name = 'grass-1'}, - {position = {x = 16, y = 20}, name = 'grass-1'}, - {position = {x = 16, y = 21}, name = 'grass-1'}, - {position = {x = 16, y = 22}, name = 'grass-1'}, - {position = {x = 16, y = 23}, name = 'grass-1'}, - {position = {x = 16, y = 24}, name = 'grass-1'}, - {position = {x = 16, y = 25}, name = 'grass-1'}, - {position = {x = 16, y = 26}, name = 'grass-1'}, - {position = {x = 16, y = 27}, name = 'grass-1'}, - {position = {x = 16, y = 28}, name = 'grass-1'}, - {position = {x = 16, y = 29}, name = 'grass-1'}, - {position = {x = 16, y = 30}, name = 'grass-1'}, - {position = {x = 16, y = 31}, name = 'grass-1'}, - {position = {x = 17, y = 0}, name = 'grass-1'}, - {position = {x = 17, y = 1}, name = 'grass-1'}, - {position = {x = 17, y = 2}, name = 'grass-1'}, - {position = {x = 17, y = 3}, name = 'grass-1'}, - {position = {x = 17, y = 4}, name = 'grass-1'}, - {position = {x = 17, y = 5}, name = 'grass-1'}, - {position = {x = 17, y = 6}, name = 'grass-1'}, - {position = {x = 17, y = 7}, name = 'grass-1'}, - {position = {x = 17, y = 8}, name = 'grass-1'}, - {position = {x = 17, y = 9}, name = 'grass-1'}, - {position = {x = 17, y = 10}, name = 'grass-1'}, - {position = {x = 17, y = 11}, name = 'grass-1'}, - {position = {x = 17, y = 12}, name = 'grass-1'}, - {position = {x = 17, y = 13}, name = 'grass-1'}, - {position = {x = 17, y = 14}, name = 'grass-1'}, - {position = {x = 17, y = 15}, name = 'grass-1'}, - {position = {x = 17, y = 16}, name = 'grass-1'}, - {position = {x = 17, y = 17}, name = 'grass-1'}, - {position = {x = 17, y = 18}, name = 'grass-1'}, - {position = {x = 17, y = 19}, name = 'grass-1'}, - {position = {x = 17, y = 20}, name = 'grass-1'}, - {position = {x = 17, y = 21}, name = 'grass-1'}, - {position = {x = 17, y = 22}, name = 'grass-1'}, - {position = {x = 17, y = 23}, name = 'grass-1'}, - {position = {x = 17, y = 24}, name = 'grass-1'}, - {position = {x = 17, y = 25}, name = 'grass-1'}, - {position = {x = 17, y = 26}, name = 'grass-1'}, - {position = {x = 17, y = 27}, name = 'grass-1'}, - {position = {x = 17, y = 28}, name = 'grass-1'}, - {position = {x = 17, y = 29}, name = 'grass-1'}, - {position = {x = 17, y = 30}, name = 'grass-1'}, - {position = {x = 17, y = 31}, name = 'grass-1'}, - {position = {x = 18, y = 0}, name = 'grass-1'}, - {position = {x = 18, y = 1}, name = 'grass-1'}, - {position = {x = 18, y = 2}, name = 'grass-1'}, - {position = {x = 18, y = 3}, name = 'grass-1'}, - {position = {x = 18, y = 4}, name = 'grass-1'}, - {position = {x = 18, y = 5}, name = 'grass-1'}, - {position = {x = 18, y = 6}, name = 'grass-1'}, - {position = {x = 18, y = 7}, name = 'grass-1'}, - {position = {x = 18, y = 8}, name = 'grass-1'}, - {position = {x = 18, y = 9}, name = 'grass-1'}, - {position = {x = 18, y = 10}, name = 'grass-1'}, - {position = {x = 18, y = 11}, name = 'grass-1'}, - {position = {x = 18, y = 12}, name = 'grass-1'}, - {position = {x = 18, y = 13}, name = 'grass-1'}, - {position = {x = 18, y = 14}, name = 'grass-1'}, - {position = {x = 18, y = 15}, name = 'grass-1'}, - {position = {x = 18, y = 16}, name = 'grass-1'}, - {position = {x = 18, y = 17}, name = 'grass-1'}, - {position = {x = 18, y = 18}, name = 'grass-1'}, - {position = {x = 18, y = 19}, name = 'grass-1'}, - {position = {x = 18, y = 20}, name = 'grass-1'}, - {position = {x = 18, y = 21}, name = 'grass-1'}, - {position = {x = 18, y = 22}, name = 'grass-1'}, - {position = {x = 18, y = 23}, name = 'grass-1'}, - {position = {x = 18, y = 24}, name = 'grass-1'}, - {position = {x = 18, y = 25}, name = 'grass-1'}, - {position = {x = 18, y = 26}, name = 'grass-1'}, - {position = {x = 18, y = 27}, name = 'grass-1'}, - {position = {x = 18, y = 28}, name = 'grass-1'}, - {position = {x = 18, y = 29}, name = 'grass-1'}, - {position = {x = 18, y = 30}, name = 'grass-1'}, - {position = {x = 18, y = 31}, name = 'grass-1'}, - {position = {x = 19, y = 0}, name = 'grass-1'}, - {position = {x = 19, y = 1}, name = 'grass-1'}, - {position = {x = 19, y = 2}, name = 'grass-1'}, - {position = {x = 19, y = 3}, name = 'grass-1'}, - {position = {x = 19, y = 4}, name = 'grass-1'}, - {position = {x = 19, y = 5}, name = 'grass-1'}, - {position = {x = 19, y = 6}, name = 'grass-1'}, - {position = {x = 19, y = 7}, name = 'grass-1'}, - {position = {x = 19, y = 8}, name = 'grass-1'}, - {position = {x = 19, y = 9}, name = 'grass-1'}, - {position = {x = 19, y = 10}, name = 'grass-1'}, - {position = {x = 19, y = 11}, name = 'grass-1'}, - {position = {x = 19, y = 12}, name = 'grass-1'}, - {position = {x = 19, y = 13}, name = 'grass-1'}, - {position = {x = 19, y = 14}, name = 'grass-1'}, - {position = {x = 19, y = 15}, name = 'grass-1'}, - {position = {x = 19, y = 16}, name = 'grass-1'}, - {position = {x = 19, y = 17}, name = 'grass-1'}, - {position = {x = 19, y = 18}, name = 'grass-1'}, - {position = {x = 19, y = 19}, name = 'grass-1'}, - {position = {x = 19, y = 20}, name = 'grass-1'}, - {position = {x = 19, y = 21}, name = 'grass-1'}, - {position = {x = 19, y = 22}, name = 'grass-1'}, - {position = {x = 19, y = 23}, name = 'grass-1'}, - {position = {x = 19, y = 24}, name = 'grass-1'}, - {position = {x = 19, y = 25}, name = 'grass-1'}, - {position = {x = 19, y = 26}, name = 'grass-1'}, - {position = {x = 19, y = 27}, name = 'grass-1'}, - {position = {x = 19, y = 28}, name = 'grass-1'}, - {position = {x = 19, y = 29}, name = 'grass-1'}, - {position = {x = 19, y = 30}, name = 'grass-1'}, - {position = {x = 19, y = 31}, name = 'grass-1'}, - {position = {x = 20, y = 0}, name = 'grass-1'}, - {position = {x = 20, y = 1}, name = 'grass-1'}, - {position = {x = 20, y = 2}, name = 'grass-1'}, - {position = {x = 20, y = 3}, name = 'grass-1'}, - {position = {x = 20, y = 4}, name = 'grass-1'}, - {position = {x = 20, y = 5}, name = 'grass-1'}, - {position = {x = 20, y = 6}, name = 'grass-1'}, - {position = {x = 20, y = 7}, name = 'grass-1'}, - {position = {x = 20, y = 8}, name = 'grass-1'}, - {position = {x = 20, y = 9}, name = 'grass-1'}, - {position = {x = 20, y = 10}, name = 'grass-1'}, - {position = {x = 20, y = 11}, name = 'grass-1'}, - {position = {x = 20, y = 12}, name = 'grass-1'}, - {position = {x = 20, y = 13}, name = 'grass-1'}, - {position = {x = 20, y = 14}, name = 'grass-1'}, - {position = {x = 20, y = 15}, name = 'grass-1'}, - {position = {x = 20, y = 16}, name = 'grass-1'}, - {position = {x = 20, y = 17}, name = 'grass-1'}, - {position = {x = 20, y = 18}, name = 'grass-1'}, - {position = {x = 20, y = 19}, name = 'grass-1'}, - {position = {x = 20, y = 20}, name = 'grass-1'}, - {position = {x = 20, y = 21}, name = 'grass-1'}, - {position = {x = 20, y = 22}, name = 'grass-1'}, - {position = {x = 20, y = 23}, name = 'grass-1'}, - {position = {x = 20, y = 24}, name = 'grass-1'}, - {position = {x = 20, y = 25}, name = 'grass-1'}, - {position = {x = 20, y = 26}, name = 'grass-1'}, - {position = {x = 20, y = 27}, name = 'grass-1'}, - {position = {x = 20, y = 28}, name = 'grass-1'}, - {position = {x = 20, y = 29}, name = 'grass-1'}, - {position = {x = 20, y = 30}, name = 'grass-1'}, - {position = {x = 20, y = 31}, name = 'grass-1'}, - {position = {x = 21, y = 0}, name = 'grass-1'}, - {position = {x = 21, y = 1}, name = 'grass-1'}, - {position = {x = 21, y = 2}, name = 'grass-1'}, - {position = {x = 21, y = 3}, name = 'grass-1'}, - {position = {x = 21, y = 4}, name = 'grass-1'}, - {position = {x = 21, y = 5}, name = 'grass-1'}, - {position = {x = 21, y = 6}, name = 'grass-1'}, - {position = {x = 21, y = 7}, name = 'grass-1'}, - {position = {x = 21, y = 8}, name = 'grass-1'}, - {position = {x = 21, y = 9}, name = 'grass-1'}, - {position = {x = 21, y = 10}, name = 'grass-1'}, - {position = {x = 21, y = 11}, name = 'grass-1'}, - {position = {x = 21, y = 12}, name = 'grass-1'}, - {position = {x = 21, y = 13}, name = 'grass-1'}, - {position = {x = 21, y = 14}, name = 'grass-1'}, - {position = {x = 21, y = 15}, name = 'grass-1'}, - {position = {x = 21, y = 16}, name = 'grass-1'}, - {position = {x = 21, y = 17}, name = 'grass-1'}, - {position = {x = 21, y = 18}, name = 'grass-1'}, - {position = {x = 21, y = 19}, name = 'grass-1'}, - {position = {x = 21, y = 20}, name = 'grass-1'}, - {position = {x = 21, y = 21}, name = 'grass-1'}, - {position = {x = 21, y = 22}, name = 'grass-1'}, - {position = {x = 21, y = 23}, name = 'grass-1'}, - {position = {x = 21, y = 24}, name = 'grass-1'}, - {position = {x = 21, y = 25}, name = 'grass-1'}, - {position = {x = 21, y = 26}, name = 'grass-1'}, - {position = {x = 21, y = 27}, name = 'grass-1'}, - {position = {x = 21, y = 28}, name = 'grass-1'}, - {position = {x = 21, y = 29}, name = 'grass-1'}, - {position = {x = 21, y = 30}, name = 'grass-1'}, - {position = {x = 21, y = 31}, name = 'grass-1'}, - {position = {x = 22, y = 0}, name = 'grass-1'}, - {position = {x = 22, y = 1}, name = 'grass-1'}, - {position = {x = 22, y = 2}, name = 'grass-1'}, - {position = {x = 22, y = 3}, name = 'grass-1'}, - {position = {x = 22, y = 4}, name = 'grass-1'}, - {position = {x = 22, y = 5}, name = 'grass-1'}, - {position = {x = 22, y = 6}, name = 'grass-1'}, - {position = {x = 22, y = 7}, name = 'grass-1'}, - {position = {x = 22, y = 8}, name = 'grass-1'}, - {position = {x = 22, y = 9}, name = 'grass-1'}, - {position = {x = 22, y = 10}, name = 'grass-1'}, - {position = {x = 22, y = 11}, name = 'grass-1'}, - {position = {x = 22, y = 12}, name = 'grass-1'}, - {position = {x = 22, y = 13}, name = 'grass-1'}, - {position = {x = 22, y = 14}, name = 'grass-1'}, - {position = {x = 22, y = 15}, name = 'grass-1'}, - {position = {x = 22, y = 16}, name = 'grass-1'}, - {position = {x = 22, y = 17}, name = 'grass-1'}, - {position = {x = 22, y = 18}, name = 'grass-1'}, - {position = {x = 22, y = 19}, name = 'grass-1'}, - {position = {x = 22, y = 20}, name = 'grass-1'}, - {position = {x = 22, y = 21}, name = 'grass-1'}, - {position = {x = 22, y = 22}, name = 'grass-1'}, - {position = {x = 22, y = 23}, name = 'grass-1'}, - {position = {x = 22, y = 24}, name = 'grass-1'}, - {position = {x = 22, y = 25}, name = 'grass-1'}, - {position = {x = 22, y = 26}, name = 'grass-1'}, - {position = {x = 22, y = 27}, name = 'grass-1'}, - {position = {x = 22, y = 28}, name = 'grass-1'}, - {position = {x = 22, y = 29}, name = 'grass-1'}, - {position = {x = 22, y = 30}, name = 'grass-1'}, - {position = {x = 22, y = 31}, name = 'grass-1'}, - {position = {x = 23, y = 0}, name = 'grass-1'}, - {position = {x = 23, y = 1}, name = 'grass-1'}, - {position = {x = 23, y = 2}, name = 'grass-1'}, - {position = {x = 23, y = 3}, name = 'grass-1'}, - {position = {x = 23, y = 4}, name = 'grass-1'}, - {position = {x = 23, y = 5}, name = 'grass-1'}, - {position = {x = 23, y = 6}, name = 'grass-1'}, - {position = {x = 23, y = 7}, name = 'grass-1'}, - {position = {x = 23, y = 8}, name = 'grass-1'}, - {position = {x = 23, y = 9}, name = 'grass-1'}, - {position = {x = 23, y = 10}, name = 'grass-1'}, - {position = {x = 23, y = 11}, name = 'grass-1'}, - {position = {x = 23, y = 12}, name = 'grass-1'}, - {position = {x = 23, y = 13}, name = 'grass-1'}, - {position = {x = 23, y = 14}, name = 'grass-1'}, - {position = {x = 23, y = 15}, name = 'grass-1'}, - {position = {x = 23, y = 16}, name = 'grass-1'}, - {position = {x = 23, y = 17}, name = 'grass-1'}, - {position = {x = 23, y = 18}, name = 'grass-1'}, - {position = {x = 23, y = 19}, name = 'grass-1'}, - {position = {x = 23, y = 20}, name = 'grass-1'}, - {position = {x = 23, y = 21}, name = 'grass-1'}, - {position = {x = 23, y = 22}, name = 'grass-1'}, - {position = {x = 23, y = 23}, name = 'grass-1'}, - {position = {x = 23, y = 24}, name = 'grass-1'}, - {position = {x = 23, y = 25}, name = 'grass-1'}, - {position = {x = 23, y = 26}, name = 'grass-1'}, - {position = {x = 23, y = 27}, name = 'grass-1'}, - {position = {x = 23, y = 28}, name = 'grass-1'}, - {position = {x = 23, y = 29}, name = 'grass-1'}, - {position = {x = 23, y = 30}, name = 'grass-1'}, - {position = {x = 23, y = 31}, name = 'grass-1'}, - {position = {x = 24, y = 0}, name = 'grass-1'}, - {position = {x = 24, y = 1}, name = 'grass-1'}, - {position = {x = 24, y = 2}, name = 'grass-1'}, - {position = {x = 24, y = 3}, name = 'grass-1'}, - {position = {x = 24, y = 4}, name = 'grass-1'}, - {position = {x = 24, y = 5}, name = 'grass-1'}, - {position = {x = 24, y = 6}, name = 'grass-1'}, - {position = {x = 24, y = 7}, name = 'grass-1'}, - {position = {x = 24, y = 8}, name = 'grass-1'}, - {position = {x = 24, y = 9}, name = 'grass-1'}, - {position = {x = 24, y = 10}, name = 'grass-1'}, - {position = {x = 24, y = 11}, name = 'grass-1'}, - {position = {x = 24, y = 12}, name = 'grass-1'}, - {position = {x = 24, y = 13}, name = 'grass-1'}, - {position = {x = 24, y = 14}, name = 'grass-1'}, - {position = {x = 24, y = 15}, name = 'grass-1'}, - {position = {x = 24, y = 16}, name = 'grass-1'}, - {position = {x = 24, y = 17}, name = 'grass-1'}, - {position = {x = 24, y = 18}, name = 'grass-1'}, - {position = {x = 24, y = 19}, name = 'grass-1'}, - {position = {x = 24, y = 20}, name = 'grass-1'}, - {position = {x = 24, y = 21}, name = 'grass-1'}, - {position = {x = 24, y = 22}, name = 'grass-1'}, - {position = {x = 24, y = 23}, name = 'grass-1'}, - {position = {x = 24, y = 24}, name = 'grass-1'}, - {position = {x = 24, y = 25}, name = 'grass-1'}, - {position = {x = 24, y = 26}, name = 'grass-1'}, - {position = {x = 24, y = 27}, name = 'grass-1'}, - {position = {x = 24, y = 28}, name = 'grass-1'}, - {position = {x = 24, y = 29}, name = 'grass-1'}, - {position = {x = 24, y = 30}, name = 'grass-1'}, - {position = {x = 24, y = 31}, name = 'grass-1'}, - {position = {x = 25, y = 0}, name = 'grass-1'}, - {position = {x = 25, y = 1}, name = 'grass-1'}, - {position = {x = 25, y = 2}, name = 'grass-1'}, - {position = {x = 25, y = 3}, name = 'grass-1'}, - {position = {x = 25, y = 4}, name = 'grass-1'}, - {position = {x = 25, y = 5}, name = 'grass-1'}, - {position = {x = 25, y = 6}, name = 'grass-1'}, - {position = {x = 25, y = 7}, name = 'grass-1'}, - {position = {x = 25, y = 8}, name = 'grass-1'}, - {position = {x = 25, y = 9}, name = 'grass-1'}, - {position = {x = 25, y = 10}, name = 'grass-1'}, - {position = {x = 25, y = 11}, name = 'grass-1'}, - {position = {x = 25, y = 12}, name = 'grass-1'}, - {position = {x = 25, y = 13}, name = 'grass-1'}, - {position = {x = 25, y = 14}, name = 'grass-1'}, - {position = {x = 25, y = 15}, name = 'grass-1'}, - {position = {x = 25, y = 16}, name = 'grass-1'}, - {position = {x = 25, y = 17}, name = 'grass-1'}, - {position = {x = 25, y = 18}, name = 'grass-1'}, - {position = {x = 25, y = 19}, name = 'grass-1'}, - {position = {x = 25, y = 20}, name = 'grass-1'}, - {position = {x = 25, y = 21}, name = 'grass-1'}, - {position = {x = 25, y = 22}, name = 'grass-1'}, - {position = {x = 25, y = 23}, name = 'grass-1'}, - {position = {x = 25, y = 24}, name = 'grass-1'}, - {position = {x = 25, y = 25}, name = 'grass-1'}, - {position = {x = 25, y = 26}, name = 'grass-1'}, - {position = {x = 25, y = 27}, name = 'grass-1'}, - {position = {x = 25, y = 28}, name = 'grass-1'}, - {position = {x = 25, y = 29}, name = 'grass-1'}, - {position = {x = 25, y = 30}, name = 'grass-1'}, - {position = {x = 25, y = 31}, name = 'grass-1'}, - {position = {x = 26, y = 0}, name = 'grass-1'}, - {position = {x = 26, y = 1}, name = 'grass-1'}, - {position = {x = 26, y = 2}, name = 'grass-1'}, - {position = {x = 26, y = 3}, name = 'grass-1'}, - {position = {x = 26, y = 4}, name = 'grass-1'}, - {position = {x = 26, y = 5}, name = 'grass-1'}, - {position = {x = 26, y = 6}, name = 'grass-1'}, - {position = {x = 26, y = 7}, name = 'grass-1'}, - {position = {x = 26, y = 8}, name = 'grass-1'}, - {position = {x = 26, y = 9}, name = 'grass-1'}, - {position = {x = 26, y = 10}, name = 'grass-1'}, - {position = {x = 26, y = 11}, name = 'grass-1'}, - {position = {x = 26, y = 12}, name = 'grass-1'}, - {position = {x = 26, y = 13}, name = 'grass-1'}, - {position = {x = 26, y = 14}, name = 'grass-1'}, - {position = {x = 26, y = 15}, name = 'grass-1'}, - {position = {x = 26, y = 16}, name = 'grass-1'}, - {position = {x = 26, y = 17}, name = 'grass-1'}, - {position = {x = 26, y = 18}, name = 'grass-1'}, - {position = {x = 26, y = 19}, name = 'grass-1'}, - {position = {x = 26, y = 20}, name = 'grass-1'}, - {position = {x = 26, y = 21}, name = 'grass-1'}, - {position = {x = 26, y = 22}, name = 'grass-1'}, - {position = {x = 26, y = 23}, name = 'grass-1'}, - {position = {x = 26, y = 24}, name = 'grass-1'}, - {position = {x = 26, y = 25}, name = 'grass-1'}, - {position = {x = 26, y = 26}, name = 'grass-1'}, - {position = {x = 26, y = 27}, name = 'grass-1'}, - {position = {x = 26, y = 28}, name = 'grass-1'}, - {position = {x = 26, y = 29}, name = 'grass-1'}, - {position = {x = 26, y = 30}, name = 'grass-1'}, - {position = {x = 26, y = 31}, name = 'grass-1'}, - {position = {x = 27, y = 0}, name = 'grass-1'}, - {position = {x = 27, y = 1}, name = 'grass-1'}, - {position = {x = 27, y = 2}, name = 'grass-1'}, - {position = {x = 27, y = 3}, name = 'grass-1'}, - {position = {x = 27, y = 4}, name = 'grass-1'}, - {position = {x = 27, y = 5}, name = 'grass-1'}, - {position = {x = 27, y = 6}, name = 'grass-1'}, - {position = {x = 27, y = 7}, name = 'grass-1'}, - {position = {x = 27, y = 8}, name = 'grass-1'}, - {position = {x = 27, y = 9}, name = 'grass-1'}, - {position = {x = 27, y = 10}, name = 'grass-1'}, - {position = {x = 27, y = 11}, name = 'grass-1'}, - {position = {x = 27, y = 12}, name = 'grass-1'}, - {position = {x = 27, y = 13}, name = 'grass-1'}, - {position = {x = 27, y = 14}, name = 'grass-1'}, - {position = {x = 27, y = 15}, name = 'grass-1'}, - {position = {x = 27, y = 16}, name = 'grass-1'}, - {position = {x = 27, y = 17}, name = 'grass-1'}, - {position = {x = 27, y = 18}, name = 'grass-1'}, - {position = {x = 27, y = 19}, name = 'grass-1'}, - {position = {x = 27, y = 20}, name = 'grass-1'}, - {position = {x = 27, y = 21}, name = 'grass-1'}, - {position = {x = 27, y = 22}, name = 'grass-1'}, - {position = {x = 27, y = 23}, name = 'grass-1'}, - {position = {x = 27, y = 24}, name = 'grass-1'}, - {position = {x = 27, y = 25}, name = 'grass-1'}, - {position = {x = 27, y = 26}, name = 'grass-1'}, - {position = {x = 27, y = 27}, name = 'grass-1'}, - {position = {x = 27, y = 28}, name = 'grass-1'}, - {position = {x = 27, y = 29}, name = 'grass-1'}, - {position = {x = 27, y = 30}, name = 'grass-1'}, - {position = {x = 27, y = 31}, name = 'grass-1'}, - {position = {x = 28, y = 0}, name = 'grass-1'}, - {position = {x = 28, y = 1}, name = 'grass-1'}, - {position = {x = 28, y = 2}, name = 'grass-1'}, - {position = {x = 28, y = 3}, name = 'grass-1'}, - {position = {x = 28, y = 4}, name = 'grass-1'}, - {position = {x = 28, y = 5}, name = 'grass-1'}, - {position = {x = 28, y = 6}, name = 'grass-1'}, - {position = {x = 28, y = 7}, name = 'grass-1'}, - {position = {x = 28, y = 8}, name = 'grass-1'}, - {position = {x = 28, y = 9}, name = 'grass-1'}, - {position = {x = 28, y = 10}, name = 'grass-1'}, - {position = {x = 28, y = 11}, name = 'grass-1'}, - {position = {x = 28, y = 12}, name = 'grass-1'}, - {position = {x = 28, y = 13}, name = 'grass-1'}, - {position = {x = 28, y = 14}, name = 'grass-1'}, - {position = {x = 28, y = 15}, name = 'grass-1'}, - {position = {x = 28, y = 16}, name = 'grass-1'}, - {position = {x = 28, y = 17}, name = 'grass-1'}, - {position = {x = 28, y = 18}, name = 'grass-1'}, - {position = {x = 28, y = 19}, name = 'grass-1'}, - {position = {x = 28, y = 20}, name = 'grass-1'}, - {position = {x = 28, y = 21}, name = 'grass-1'}, - {position = {x = 28, y = 22}, name = 'grass-1'}, - {position = {x = 28, y = 23}, name = 'grass-1'}, - {position = {x = 28, y = 24}, name = 'grass-1'}, - {position = {x = 28, y = 25}, name = 'grass-1'}, - {position = {x = 28, y = 26}, name = 'grass-1'}, - {position = {x = 28, y = 27}, name = 'grass-1'}, - {position = {x = 28, y = 28}, name = 'grass-1'}, - {position = {x = 28, y = 29}, name = 'grass-1'}, - {position = {x = 28, y = 30}, name = 'grass-1'}, - {position = {x = 28, y = 31}, name = 'grass-1'}, - {position = {x = 29, y = 0}, name = 'grass-1'}, - {position = {x = 29, y = 1}, name = 'grass-1'}, - {position = {x = 29, y = 2}, name = 'grass-1'}, - {position = {x = 29, y = 3}, name = 'grass-1'}, - {position = {x = 29, y = 4}, name = 'grass-1'}, - {position = {x = 29, y = 5}, name = 'grass-1'}, - {position = {x = 29, y = 6}, name = 'grass-1'}, - {position = {x = 29, y = 7}, name = 'grass-1'}, - {position = {x = 29, y = 8}, name = 'grass-1'}, - {position = {x = 29, y = 9}, name = 'grass-1'}, - {position = {x = 29, y = 10}, name = 'grass-1'}, - {position = {x = 29, y = 11}, name = 'grass-1'}, - {position = {x = 29, y = 12}, name = 'grass-1'}, - {position = {x = 29, y = 13}, name = 'grass-1'}, - {position = {x = 29, y = 14}, name = 'grass-1'}, - {position = {x = 29, y = 15}, name = 'grass-1'}, - {position = {x = 29, y = 16}, name = 'grass-1'}, - {position = {x = 29, y = 17}, name = 'grass-1'}, - {position = {x = 29, y = 18}, name = 'grass-1'}, - {position = {x = 29, y = 19}, name = 'grass-1'}, - {position = {x = 29, y = 20}, name = 'grass-1'}, - {position = {x = 29, y = 21}, name = 'grass-1'}, - {position = {x = 29, y = 22}, name = 'grass-1'}, - {position = {x = 29, y = 23}, name = 'grass-1'}, - {position = {x = 29, y = 24}, name = 'grass-1'}, - {position = {x = 29, y = 25}, name = 'grass-1'}, - {position = {x = 29, y = 26}, name = 'grass-1'}, - {position = {x = 29, y = 27}, name = 'grass-1'}, - {position = {x = 29, y = 28}, name = 'grass-1'}, - {position = {x = 29, y = 29}, name = 'grass-1'}, - {position = {x = 29, y = 30}, name = 'grass-1'}, - {position = {x = 29, y = 31}, name = 'grass-1'}, - {position = {x = 30, y = 0}, name = 'grass-1'}, - {position = {x = 30, y = 1}, name = 'grass-1'}, - {position = {x = 30, y = 2}, name = 'grass-1'}, - {position = {x = 30, y = 3}, name = 'grass-1'}, - {position = {x = 30, y = 4}, name = 'grass-1'}, - {position = {x = 30, y = 5}, name = 'grass-1'}, - {position = {x = 30, y = 6}, name = 'grass-1'}, - {position = {x = 30, y = 7}, name = 'grass-1'}, - {position = {x = 30, y = 8}, name = 'grass-1'}, - {position = {x = 30, y = 9}, name = 'grass-1'}, - {position = {x = 30, y = 10}, name = 'grass-1'}, - {position = {x = 30, y = 11}, name = 'grass-1'}, - {position = {x = 30, y = 12}, name = 'grass-1'}, - {position = {x = 30, y = 13}, name = 'grass-1'}, - {position = {x = 30, y = 14}, name = 'grass-1'}, - {position = {x = 30, y = 15}, name = 'grass-1'}, - {position = {x = 30, y = 16}, name = 'grass-1'}, - {position = {x = 30, y = 17}, name = 'grass-1'}, - {position = {x = 30, y = 18}, name = 'grass-1'}, - {position = {x = 30, y = 19}, name = 'grass-1'}, - {position = {x = 30, y = 20}, name = 'grass-1'}, - {position = {x = 30, y = 21}, name = 'grass-1'}, - {position = {x = 30, y = 22}, name = 'grass-1'}, - {position = {x = 30, y = 23}, name = 'grass-1'}, - {position = {x = 30, y = 24}, name = 'grass-1'}, - {position = {x = 30, y = 25}, name = 'grass-1'}, - {position = {x = 30, y = 26}, name = 'grass-1'}, - {position = {x = 30, y = 27}, name = 'grass-1'}, - {position = {x = 30, y = 28}, name = 'grass-1'}, - {position = {x = 30, y = 29}, name = 'grass-1'}, - {position = {x = 30, y = 30}, name = 'grass-1'}, - {position = {x = 30, y = 31}, name = 'grass-1'}, - {position = {x = 31, y = 0}, name = 'grass-1'}, - {position = {x = 31, y = 1}, name = 'grass-1'}, - {position = {x = 31, y = 2}, name = 'grass-1'}, - {position = {x = 31, y = 3}, name = 'grass-1'}, - {position = {x = 31, y = 4}, name = 'grass-1'}, - {position = {x = 31, y = 5}, name = 'grass-1'}, - {position = {x = 31, y = 6}, name = 'grass-1'}, - {position = {x = 31, y = 7}, name = 'grass-1'}, - {position = {x = 31, y = 8}, name = 'grass-1'}, - {position = {x = 31, y = 9}, name = 'grass-1'}, - {position = {x = 31, y = 10}, name = 'grass-1'}, - {position = {x = 31, y = 11}, name = 'grass-1'}, - {position = {x = 31, y = 12}, name = 'grass-1'}, - {position = {x = 31, y = 13}, name = 'grass-1'}, - {position = {x = 31, y = 14}, name = 'grass-1'}, - {position = {x = 31, y = 15}, name = 'grass-1'}, - {position = {x = 31, y = 16}, name = 'grass-1'}, - {position = {x = 31, y = 17}, name = 'grass-1'}, - {position = {x = 31, y = 18}, name = 'grass-1'}, - {position = {x = 31, y = 19}, name = 'grass-1'}, - {position = {x = 31, y = 20}, name = 'grass-1'}, - {position = {x = 31, y = 21}, name = 'grass-1'}, - {position = {x = 31, y = 22}, name = 'grass-1'}, - {position = {x = 31, y = 23}, name = 'grass-1'}, - {position = {x = 31, y = 24}, name = 'grass-1'}, - {position = {x = 31, y = 25}, name = 'grass-1'}, - {position = {x = 31, y = 26}, name = 'grass-1'}, - {position = {x = 31, y = 27}, name = 'grass-1'}, - {position = {x = 31, y = 28}, name = 'grass-1'}, - {position = {x = 31, y = 29}, name = 'grass-1'}, - {position = {x = 31, y = 30}, name = 'grass-1'}, - {position = {x = 31, y = 31}, name = 'grass-1'} + { position = { x = 0, y = 0 }, name = 'grass-1' }, + { position = { x = 0, y = 1 }, name = 'grass-1' }, + { position = { x = 0, y = 2 }, name = 'grass-1' }, + { position = { x = 0, y = 3 }, name = 'grass-1' }, + { position = { x = 0, y = 4 }, name = 'grass-1' }, + { position = { x = 0, y = 5 }, name = 'grass-1' }, + { position = { x = 0, y = 6 }, name = 'grass-1' }, + { position = { x = 0, y = 7 }, name = 'grass-1' }, + { position = { x = 0, y = 8 }, name = 'grass-1' }, + { position = { x = 0, y = 9 }, name = 'grass-1' }, + { position = { x = 0, y = 10 }, name = 'grass-1' }, + { position = { x = 0, y = 11 }, name = 'grass-1' }, + { position = { x = 0, y = 12 }, name = 'grass-1' }, + { position = { x = 0, y = 13 }, name = 'grass-1' }, + { position = { x = 0, y = 14 }, name = 'grass-1' }, + { position = { x = 0, y = 15 }, name = 'grass-1' }, + { position = { x = 0, y = 16 }, name = 'grass-1' }, + { position = { x = 0, y = 17 }, name = 'grass-1' }, + { position = { x = 0, y = 18 }, name = 'grass-1' }, + { position = { x = 0, y = 19 }, name = 'grass-1' }, + { position = { x = 0, y = 20 }, name = 'grass-1' }, + { position = { x = 0, y = 21 }, name = 'grass-1' }, + { position = { x = 0, y = 22 }, name = 'grass-1' }, + { position = { x = 0, y = 23 }, name = 'grass-1' }, + { position = { x = 0, y = 24 }, name = 'grass-1' }, + { position = { x = 0, y = 25 }, name = 'grass-1' }, + { position = { x = 0, y = 26 }, name = 'grass-1' }, + { position = { x = 0, y = 27 }, name = 'grass-1' }, + { position = { x = 0, y = 28 }, name = 'grass-1' }, + { position = { x = 0, y = 29 }, name = 'grass-1' }, + { position = { x = 0, y = 30 }, name = 'grass-1' }, + { position = { x = 0, y = 31 }, name = 'grass-1' }, + { position = { x = 1, y = 0 }, name = 'grass-1' }, + { position = { x = 1, y = 1 }, name = 'grass-1' }, + { position = { x = 1, y = 2 }, name = 'grass-1' }, + { position = { x = 1, y = 3 }, name = 'grass-1' }, + { position = { x = 1, y = 4 }, name = 'grass-1' }, + { position = { x = 1, y = 5 }, name = 'grass-1' }, + { position = { x = 1, y = 6 }, name = 'grass-1' }, + { position = { x = 1, y = 7 }, name = 'grass-1' }, + { position = { x = 1, y = 8 }, name = 'grass-1' }, + { position = { x = 1, y = 9 }, name = 'grass-1' }, + { position = { x = 1, y = 10 }, name = 'grass-1' }, + { position = { x = 1, y = 11 }, name = 'grass-1' }, + { position = { x = 1, y = 12 }, name = 'grass-1' }, + { position = { x = 1, y = 13 }, name = 'grass-1' }, + { position = { x = 1, y = 14 }, name = 'grass-1' }, + { position = { x = 1, y = 15 }, name = 'grass-1' }, + { position = { x = 1, y = 16 }, name = 'grass-1' }, + { position = { x = 1, y = 17 }, name = 'grass-1' }, + { position = { x = 1, y = 18 }, name = 'grass-1' }, + { position = { x = 1, y = 19 }, name = 'grass-1' }, + { position = { x = 1, y = 20 }, name = 'grass-1' }, + { position = { x = 1, y = 21 }, name = 'grass-1' }, + { position = { x = 1, y = 22 }, name = 'grass-1' }, + { position = { x = 1, y = 23 }, name = 'grass-1' }, + { position = { x = 1, y = 24 }, name = 'grass-1' }, + { position = { x = 1, y = 25 }, name = 'grass-1' }, + { position = { x = 1, y = 26 }, name = 'grass-1' }, + { position = { x = 1, y = 27 }, name = 'grass-1' }, + { position = { x = 1, y = 28 }, name = 'grass-1' }, + { position = { x = 1, y = 29 }, name = 'grass-1' }, + { position = { x = 1, y = 30 }, name = 'grass-1' }, + { position = { x = 1, y = 31 }, name = 'grass-1' }, + { position = { x = 2, y = 0 }, name = 'grass-1' }, + { position = { x = 2, y = 1 }, name = 'grass-1' }, + { position = { x = 2, y = 2 }, name = 'grass-1' }, + { position = { x = 2, y = 3 }, name = 'grass-1' }, + { position = { x = 2, y = 4 }, name = 'grass-1' }, + { position = { x = 2, y = 5 }, name = 'grass-1' }, + { position = { x = 2, y = 6 }, name = 'grass-1' }, + { position = { x = 2, y = 7 }, name = 'grass-1' }, + { position = { x = 2, y = 8 }, name = 'grass-1' }, + { position = { x = 2, y = 9 }, name = 'grass-1' }, + { position = { x = 2, y = 10 }, name = 'grass-1' }, + { position = { x = 2, y = 11 }, name = 'grass-1' }, + { position = { x = 2, y = 12 }, name = 'grass-1' }, + { position = { x = 2, y = 13 }, name = 'grass-1' }, + { position = { x = 2, y = 14 }, name = 'grass-1' }, + { position = { x = 2, y = 15 }, name = 'grass-1' }, + { position = { x = 2, y = 16 }, name = 'grass-1' }, + { position = { x = 2, y = 17 }, name = 'grass-1' }, + { position = { x = 2, y = 18 }, name = 'grass-1' }, + { position = { x = 2, y = 19 }, name = 'grass-1' }, + { position = { x = 2, y = 20 }, name = 'grass-1' }, + { position = { x = 2, y = 21 }, name = 'grass-1' }, + { position = { x = 2, y = 22 }, name = 'grass-1' }, + { position = { x = 2, y = 23 }, name = 'grass-1' }, + { position = { x = 2, y = 24 }, name = 'grass-1' }, + { position = { x = 2, y = 25 }, name = 'grass-1' }, + { position = { x = 2, y = 26 }, name = 'grass-1' }, + { position = { x = 2, y = 27 }, name = 'grass-1' }, + { position = { x = 2, y = 28 }, name = 'grass-1' }, + { position = { x = 2, y = 29 }, name = 'grass-1' }, + { position = { x = 2, y = 30 }, name = 'grass-1' }, + { position = { x = 2, y = 31 }, name = 'grass-1' }, + { position = { x = 3, y = 0 }, name = 'grass-1' }, + { position = { x = 3, y = 1 }, name = 'grass-1' }, + { position = { x = 3, y = 2 }, name = 'grass-1' }, + { position = { x = 3, y = 3 }, name = 'grass-1' }, + { position = { x = 3, y = 4 }, name = 'grass-1' }, + { position = { x = 3, y = 5 }, name = 'grass-1' }, + { position = { x = 3, y = 6 }, name = 'grass-1' }, + { position = { x = 3, y = 7 }, name = 'grass-1' }, + { position = { x = 3, y = 8 }, name = 'grass-1' }, + { position = { x = 3, y = 9 }, name = 'grass-1' }, + { position = { x = 3, y = 10 }, name = 'grass-1' }, + { position = { x = 3, y = 11 }, name = 'grass-1' }, + { position = { x = 3, y = 12 }, name = 'grass-1' }, + { position = { x = 3, y = 13 }, name = 'grass-1' }, + { position = { x = 3, y = 14 }, name = 'grass-1' }, + { position = { x = 3, y = 15 }, name = 'grass-1' }, + { position = { x = 3, y = 16 }, name = 'grass-1' }, + { position = { x = 3, y = 17 }, name = 'grass-1' }, + { position = { x = 3, y = 18 }, name = 'grass-1' }, + { position = { x = 3, y = 19 }, name = 'grass-1' }, + { position = { x = 3, y = 20 }, name = 'grass-1' }, + { position = { x = 3, y = 21 }, name = 'grass-1' }, + { position = { x = 3, y = 22 }, name = 'grass-1' }, + { position = { x = 3, y = 23 }, name = 'grass-1' }, + { position = { x = 3, y = 24 }, name = 'grass-1' }, + { position = { x = 3, y = 25 }, name = 'grass-1' }, + { position = { x = 3, y = 26 }, name = 'grass-1' }, + { position = { x = 3, y = 27 }, name = 'grass-1' }, + { position = { x = 3, y = 28 }, name = 'grass-1' }, + { position = { x = 3, y = 29 }, name = 'grass-1' }, + { position = { x = 3, y = 30 }, name = 'grass-1' }, + { position = { x = 3, y = 31 }, name = 'grass-1' }, + { position = { x = 4, y = 0 }, name = 'grass-1' }, + { position = { x = 4, y = 1 }, name = 'grass-1' }, + { position = { x = 4, y = 2 }, name = 'grass-1' }, + { position = { x = 4, y = 3 }, name = 'grass-1' }, + { position = { x = 4, y = 4 }, name = 'grass-1' }, + { position = { x = 4, y = 5 }, name = 'grass-1' }, + { position = { x = 4, y = 6 }, name = 'grass-1' }, + { position = { x = 4, y = 7 }, name = 'grass-1' }, + { position = { x = 4, y = 8 }, name = 'grass-1' }, + { position = { x = 4, y = 9 }, name = 'grass-1' }, + { position = { x = 4, y = 10 }, name = 'grass-1' }, + { position = { x = 4, y = 11 }, name = 'grass-1' }, + { position = { x = 4, y = 12 }, name = 'grass-1' }, + { position = { x = 4, y = 13 }, name = 'grass-1' }, + { position = { x = 4, y = 14 }, name = 'grass-1' }, + { position = { x = 4, y = 15 }, name = 'grass-1' }, + { position = { x = 4, y = 16 }, name = 'grass-1' }, + { position = { x = 4, y = 17 }, name = 'grass-1' }, + { position = { x = 4, y = 18 }, name = 'grass-1' }, + { position = { x = 4, y = 19 }, name = 'grass-1' }, + { position = { x = 4, y = 20 }, name = 'grass-1' }, + { position = { x = 4, y = 21 }, name = 'grass-1' }, + { position = { x = 4, y = 22 }, name = 'grass-1' }, + { position = { x = 4, y = 23 }, name = 'grass-1' }, + { position = { x = 4, y = 24 }, name = 'grass-1' }, + { position = { x = 4, y = 25 }, name = 'grass-1' }, + { position = { x = 4, y = 26 }, name = 'grass-1' }, + { position = { x = 4, y = 27 }, name = 'grass-1' }, + { position = { x = 4, y = 28 }, name = 'grass-1' }, + { position = { x = 4, y = 29 }, name = 'grass-1' }, + { position = { x = 4, y = 30 }, name = 'grass-1' }, + { position = { x = 4, y = 31 }, name = 'grass-1' }, + { position = { x = 5, y = 0 }, name = 'grass-1' }, + { position = { x = 5, y = 1 }, name = 'grass-1' }, + { position = { x = 5, y = 2 }, name = 'grass-1' }, + { position = { x = 5, y = 3 }, name = 'grass-1' }, + { position = { x = 5, y = 4 }, name = 'grass-1' }, + { position = { x = 5, y = 5 }, name = 'grass-1' }, + { position = { x = 5, y = 6 }, name = 'grass-1' }, + { position = { x = 5, y = 7 }, name = 'grass-1' }, + { position = { x = 5, y = 8 }, name = 'grass-1' }, + { position = { x = 5, y = 9 }, name = 'grass-1' }, + { position = { x = 5, y = 10 }, name = 'grass-1' }, + { position = { x = 5, y = 11 }, name = 'grass-1' }, + { position = { x = 5, y = 12 }, name = 'grass-1' }, + { position = { x = 5, y = 13 }, name = 'grass-1' }, + { position = { x = 5, y = 14 }, name = 'grass-1' }, + { position = { x = 5, y = 15 }, name = 'grass-1' }, + { position = { x = 5, y = 16 }, name = 'grass-1' }, + { position = { x = 5, y = 17 }, name = 'grass-1' }, + { position = { x = 5, y = 18 }, name = 'grass-1' }, + { position = { x = 5, y = 19 }, name = 'grass-1' }, + { position = { x = 5, y = 20 }, name = 'grass-1' }, + { position = { x = 5, y = 21 }, name = 'grass-1' }, + { position = { x = 5, y = 22 }, name = 'grass-1' }, + { position = { x = 5, y = 23 }, name = 'grass-1' }, + { position = { x = 5, y = 24 }, name = 'grass-1' }, + { position = { x = 5, y = 25 }, name = 'grass-1' }, + { position = { x = 5, y = 26 }, name = 'grass-1' }, + { position = { x = 5, y = 27 }, name = 'grass-1' }, + { position = { x = 5, y = 28 }, name = 'grass-1' }, + { position = { x = 5, y = 29 }, name = 'grass-1' }, + { position = { x = 5, y = 30 }, name = 'grass-1' }, + { position = { x = 5, y = 31 }, name = 'grass-1' }, + { position = { x = 6, y = 0 }, name = 'grass-1' }, + { position = { x = 6, y = 1 }, name = 'grass-1' }, + { position = { x = 6, y = 2 }, name = 'grass-1' }, + { position = { x = 6, y = 3 }, name = 'grass-1' }, + { position = { x = 6, y = 4 }, name = 'grass-1' }, + { position = { x = 6, y = 5 }, name = 'grass-1' }, + { position = { x = 6, y = 6 }, name = 'grass-1' }, + { position = { x = 6, y = 7 }, name = 'grass-1' }, + { position = { x = 6, y = 8 }, name = 'grass-1' }, + { position = { x = 6, y = 9 }, name = 'grass-1' }, + { position = { x = 6, y = 10 }, name = 'grass-1' }, + { position = { x = 6, y = 11 }, name = 'grass-1' }, + { position = { x = 6, y = 12 }, name = 'grass-1' }, + { position = { x = 6, y = 13 }, name = 'grass-1' }, + { position = { x = 6, y = 14 }, name = 'grass-1' }, + { position = { x = 6, y = 15 }, name = 'grass-1' }, + { position = { x = 6, y = 16 }, name = 'grass-1' }, + { position = { x = 6, y = 17 }, name = 'grass-1' }, + { position = { x = 6, y = 18 }, name = 'grass-1' }, + { position = { x = 6, y = 19 }, name = 'grass-1' }, + { position = { x = 6, y = 20 }, name = 'grass-1' }, + { position = { x = 6, y = 21 }, name = 'grass-1' }, + { position = { x = 6, y = 22 }, name = 'grass-1' }, + { position = { x = 6, y = 23 }, name = 'grass-1' }, + { position = { x = 6, y = 24 }, name = 'grass-1' }, + { position = { x = 6, y = 25 }, name = 'grass-1' }, + { position = { x = 6, y = 26 }, name = 'grass-1' }, + { position = { x = 6, y = 27 }, name = 'grass-1' }, + { position = { x = 6, y = 28 }, name = 'grass-1' }, + { position = { x = 6, y = 29 }, name = 'grass-1' }, + { position = { x = 6, y = 30 }, name = 'grass-1' }, + { position = { x = 6, y = 31 }, name = 'grass-1' }, + { position = { x = 7, y = 0 }, name = 'grass-1' }, + { position = { x = 7, y = 1 }, name = 'grass-1' }, + { position = { x = 7, y = 2 }, name = 'grass-1' }, + { position = { x = 7, y = 3 }, name = 'grass-1' }, + { position = { x = 7, y = 4 }, name = 'grass-1' }, + { position = { x = 7, y = 5 }, name = 'grass-1' }, + { position = { x = 7, y = 6 }, name = 'grass-1' }, + { position = { x = 7, y = 7 }, name = 'grass-1' }, + { position = { x = 7, y = 8 }, name = 'grass-1' }, + { position = { x = 7, y = 9 }, name = 'grass-1' }, + { position = { x = 7, y = 10 }, name = 'grass-1' }, + { position = { x = 7, y = 11 }, name = 'grass-1' }, + { position = { x = 7, y = 12 }, name = 'grass-1' }, + { position = { x = 7, y = 13 }, name = 'grass-1' }, + { position = { x = 7, y = 14 }, name = 'grass-1' }, + { position = { x = 7, y = 15 }, name = 'grass-1' }, + { position = { x = 7, y = 16 }, name = 'grass-1' }, + { position = { x = 7, y = 17 }, name = 'grass-1' }, + { position = { x = 7, y = 18 }, name = 'grass-1' }, + { position = { x = 7, y = 19 }, name = 'grass-1' }, + { position = { x = 7, y = 20 }, name = 'grass-1' }, + { position = { x = 7, y = 21 }, name = 'grass-1' }, + { position = { x = 7, y = 22 }, name = 'grass-1' }, + { position = { x = 7, y = 23 }, name = 'grass-1' }, + { position = { x = 7, y = 24 }, name = 'grass-1' }, + { position = { x = 7, y = 25 }, name = 'grass-1' }, + { position = { x = 7, y = 26 }, name = 'grass-1' }, + { position = { x = 7, y = 27 }, name = 'grass-1' }, + { position = { x = 7, y = 28 }, name = 'grass-1' }, + { position = { x = 7, y = 29 }, name = 'grass-1' }, + { position = { x = 7, y = 30 }, name = 'grass-1' }, + { position = { x = 7, y = 31 }, name = 'grass-1' }, + { position = { x = 8, y = 0 }, name = 'grass-1' }, + { position = { x = 8, y = 1 }, name = 'grass-1' }, + { position = { x = 8, y = 2 }, name = 'grass-1' }, + { position = { x = 8, y = 3 }, name = 'grass-1' }, + { position = { x = 8, y = 4 }, name = 'grass-1' }, + { position = { x = 8, y = 5 }, name = 'grass-1' }, + { position = { x = 8, y = 6 }, name = 'grass-1' }, + { position = { x = 8, y = 7 }, name = 'grass-1' }, + { position = { x = 8, y = 8 }, name = 'grass-1' }, + { position = { x = 8, y = 9 }, name = 'grass-1' }, + { position = { x = 8, y = 10 }, name = 'grass-1' }, + { position = { x = 8, y = 11 }, name = 'grass-1' }, + { position = { x = 8, y = 12 }, name = 'grass-1' }, + { position = { x = 8, y = 13 }, name = 'grass-1' }, + { position = { x = 8, y = 14 }, name = 'grass-1' }, + { position = { x = 8, y = 15 }, name = 'grass-1' }, + { position = { x = 8, y = 16 }, name = 'grass-1' }, + { position = { x = 8, y = 17 }, name = 'grass-1' }, + { position = { x = 8, y = 18 }, name = 'grass-1' }, + { position = { x = 8, y = 19 }, name = 'grass-1' }, + { position = { x = 8, y = 20 }, name = 'grass-1' }, + { position = { x = 8, y = 21 }, name = 'grass-1' }, + { position = { x = 8, y = 22 }, name = 'grass-1' }, + { position = { x = 8, y = 23 }, name = 'grass-1' }, + { position = { x = 8, y = 24 }, name = 'grass-1' }, + { position = { x = 8, y = 25 }, name = 'grass-1' }, + { position = { x = 8, y = 26 }, name = 'grass-1' }, + { position = { x = 8, y = 27 }, name = 'grass-1' }, + { position = { x = 8, y = 28 }, name = 'grass-1' }, + { position = { x = 8, y = 29 }, name = 'grass-1' }, + { position = { x = 8, y = 30 }, name = 'grass-1' }, + { position = { x = 8, y = 31 }, name = 'grass-1' }, + { position = { x = 9, y = 0 }, name = 'grass-1' }, + { position = { x = 9, y = 1 }, name = 'grass-1' }, + { position = { x = 9, y = 2 }, name = 'grass-1' }, + { position = { x = 9, y = 3 }, name = 'grass-1' }, + { position = { x = 9, y = 4 }, name = 'grass-1' }, + { position = { x = 9, y = 5 }, name = 'grass-1' }, + { position = { x = 9, y = 6 }, name = 'grass-1' }, + { position = { x = 9, y = 7 }, name = 'grass-1' }, + { position = { x = 9, y = 8 }, name = 'grass-1' }, + { position = { x = 9, y = 9 }, name = 'grass-1' }, + { position = { x = 9, y = 10 }, name = 'grass-1' }, + { position = { x = 9, y = 11 }, name = 'grass-1' }, + { position = { x = 9, y = 12 }, name = 'grass-1' }, + { position = { x = 9, y = 13 }, name = 'grass-1' }, + { position = { x = 9, y = 14 }, name = 'grass-1' }, + { position = { x = 9, y = 15 }, name = 'grass-1' }, + { position = { x = 9, y = 16 }, name = 'grass-1' }, + { position = { x = 9, y = 17 }, name = 'grass-1' }, + { position = { x = 9, y = 18 }, name = 'grass-1' }, + { position = { x = 9, y = 19 }, name = 'grass-1' }, + { position = { x = 9, y = 20 }, name = 'grass-1' }, + { position = { x = 9, y = 21 }, name = 'grass-1' }, + { position = { x = 9, y = 22 }, name = 'grass-1' }, + { position = { x = 9, y = 23 }, name = 'grass-1' }, + { position = { x = 9, y = 24 }, name = 'grass-1' }, + { position = { x = 9, y = 25 }, name = 'grass-1' }, + { position = { x = 9, y = 26 }, name = 'grass-1' }, + { position = { x = 9, y = 27 }, name = 'grass-1' }, + { position = { x = 9, y = 28 }, name = 'grass-1' }, + { position = { x = 9, y = 29 }, name = 'grass-1' }, + { position = { x = 9, y = 30 }, name = 'grass-1' }, + { position = { x = 9, y = 31 }, name = 'grass-1' }, + { position = { x = 10, y = 0 }, name = 'grass-1' }, + { position = { x = 10, y = 1 }, name = 'grass-1' }, + { position = { x = 10, y = 2 }, name = 'grass-1' }, + { position = { x = 10, y = 3 }, name = 'grass-1' }, + { position = { x = 10, y = 4 }, name = 'grass-1' }, + { position = { x = 10, y = 5 }, name = 'grass-1' }, + { position = { x = 10, y = 6 }, name = 'grass-1' }, + { position = { x = 10, y = 7 }, name = 'grass-1' }, + { position = { x = 10, y = 8 }, name = 'grass-1' }, + { position = { x = 10, y = 9 }, name = 'grass-1' }, + { position = { x = 10, y = 10 }, name = 'grass-1' }, + { position = { x = 10, y = 11 }, name = 'grass-1' }, + { position = { x = 10, y = 12 }, name = 'grass-1' }, + { position = { x = 10, y = 13 }, name = 'grass-1' }, + { position = { x = 10, y = 14 }, name = 'grass-1' }, + { position = { x = 10, y = 15 }, name = 'grass-1' }, + { position = { x = 10, y = 16 }, name = 'grass-1' }, + { position = { x = 10, y = 17 }, name = 'grass-1' }, + { position = { x = 10, y = 18 }, name = 'grass-1' }, + { position = { x = 10, y = 19 }, name = 'grass-1' }, + { position = { x = 10, y = 20 }, name = 'grass-1' }, + { position = { x = 10, y = 21 }, name = 'grass-1' }, + { position = { x = 10, y = 22 }, name = 'grass-1' }, + { position = { x = 10, y = 23 }, name = 'grass-1' }, + { position = { x = 10, y = 24 }, name = 'grass-1' }, + { position = { x = 10, y = 25 }, name = 'grass-1' }, + { position = { x = 10, y = 26 }, name = 'grass-1' }, + { position = { x = 10, y = 27 }, name = 'grass-1' }, + { position = { x = 10, y = 28 }, name = 'grass-1' }, + { position = { x = 10, y = 29 }, name = 'grass-1' }, + { position = { x = 10, y = 30 }, name = 'grass-1' }, + { position = { x = 10, y = 31 }, name = 'grass-1' }, + { position = { x = 11, y = 0 }, name = 'grass-1' }, + { position = { x = 11, y = 1 }, name = 'grass-1' }, + { position = { x = 11, y = 2 }, name = 'grass-1' }, + { position = { x = 11, y = 3 }, name = 'grass-1' }, + { position = { x = 11, y = 4 }, name = 'grass-1' }, + { position = { x = 11, y = 5 }, name = 'grass-1' }, + { position = { x = 11, y = 6 }, name = 'grass-1' }, + { position = { x = 11, y = 7 }, name = 'grass-1' }, + { position = { x = 11, y = 8 }, name = 'grass-1' }, + { position = { x = 11, y = 9 }, name = 'grass-1' }, + { position = { x = 11, y = 10 }, name = 'grass-1' }, + { position = { x = 11, y = 11 }, name = 'grass-1' }, + { position = { x = 11, y = 12 }, name = 'grass-1' }, + { position = { x = 11, y = 13 }, name = 'grass-1' }, + { position = { x = 11, y = 14 }, name = 'grass-1' }, + { position = { x = 11, y = 15 }, name = 'grass-1' }, + { position = { x = 11, y = 16 }, name = 'grass-1' }, + { position = { x = 11, y = 17 }, name = 'grass-1' }, + { position = { x = 11, y = 18 }, name = 'grass-1' }, + { position = { x = 11, y = 19 }, name = 'grass-1' }, + { position = { x = 11, y = 20 }, name = 'grass-1' }, + { position = { x = 11, y = 21 }, name = 'grass-1' }, + { position = { x = 11, y = 22 }, name = 'grass-1' }, + { position = { x = 11, y = 23 }, name = 'grass-1' }, + { position = { x = 11, y = 24 }, name = 'grass-1' }, + { position = { x = 11, y = 25 }, name = 'grass-1' }, + { position = { x = 11, y = 26 }, name = 'grass-1' }, + { position = { x = 11, y = 27 }, name = 'grass-1' }, + { position = { x = 11, y = 28 }, name = 'grass-1' }, + { position = { x = 11, y = 29 }, name = 'grass-1' }, + { position = { x = 11, y = 30 }, name = 'grass-1' }, + { position = { x = 11, y = 31 }, name = 'grass-1' }, + { position = { x = 12, y = 0 }, name = 'grass-1' }, + { position = { x = 12, y = 1 }, name = 'grass-1' }, + { position = { x = 12, y = 2 }, name = 'grass-1' }, + { position = { x = 12, y = 3 }, name = 'grass-1' }, + { position = { x = 12, y = 4 }, name = 'grass-1' }, + { position = { x = 12, y = 5 }, name = 'grass-1' }, + { position = { x = 12, y = 6 }, name = 'grass-1' }, + { position = { x = 12, y = 7 }, name = 'grass-1' }, + { position = { x = 12, y = 8 }, name = 'grass-1' }, + { position = { x = 12, y = 9 }, name = 'grass-1' }, + { position = { x = 12, y = 10 }, name = 'grass-1' }, + { position = { x = 12, y = 11 }, name = 'grass-1' }, + { position = { x = 12, y = 12 }, name = 'grass-1' }, + { position = { x = 12, y = 13 }, name = 'grass-1' }, + { position = { x = 12, y = 14 }, name = 'grass-1' }, + { position = { x = 12, y = 15 }, name = 'grass-1' }, + { position = { x = 12, y = 16 }, name = 'grass-1' }, + { position = { x = 12, y = 17 }, name = 'grass-1' }, + { position = { x = 12, y = 18 }, name = 'grass-1' }, + { position = { x = 12, y = 19 }, name = 'grass-1' }, + { position = { x = 12, y = 20 }, name = 'grass-1' }, + { position = { x = 12, y = 21 }, name = 'grass-1' }, + { position = { x = 12, y = 22 }, name = 'grass-1' }, + { position = { x = 12, y = 23 }, name = 'grass-1' }, + { position = { x = 12, y = 24 }, name = 'grass-1' }, + { position = { x = 12, y = 25 }, name = 'grass-1' }, + { position = { x = 12, y = 26 }, name = 'grass-1' }, + { position = { x = 12, y = 27 }, name = 'grass-1' }, + { position = { x = 12, y = 28 }, name = 'grass-1' }, + { position = { x = 12, y = 29 }, name = 'grass-1' }, + { position = { x = 12, y = 30 }, name = 'grass-1' }, + { position = { x = 12, y = 31 }, name = 'grass-1' }, + { position = { x = 13, y = 0 }, name = 'grass-1' }, + { position = { x = 13, y = 1 }, name = 'grass-1' }, + { position = { x = 13, y = 2 }, name = 'grass-1' }, + { position = { x = 13, y = 3 }, name = 'grass-1' }, + { position = { x = 13, y = 4 }, name = 'grass-1' }, + { position = { x = 13, y = 5 }, name = 'grass-1' }, + { position = { x = 13, y = 6 }, name = 'grass-1' }, + { position = { x = 13, y = 7 }, name = 'grass-1' }, + { position = { x = 13, y = 8 }, name = 'grass-1' }, + { position = { x = 13, y = 9 }, name = 'grass-1' }, + { position = { x = 13, y = 10 }, name = 'grass-1' }, + { position = { x = 13, y = 11 }, name = 'grass-1' }, + { position = { x = 13, y = 12 }, name = 'grass-1' }, + { position = { x = 13, y = 13 }, name = 'grass-1' }, + { position = { x = 13, y = 14 }, name = 'grass-1' }, + { position = { x = 13, y = 15 }, name = 'grass-1' }, + { position = { x = 13, y = 16 }, name = 'grass-1' }, + { position = { x = 13, y = 17 }, name = 'grass-1' }, + { position = { x = 13, y = 18 }, name = 'grass-1' }, + { position = { x = 13, y = 19 }, name = 'grass-1' }, + { position = { x = 13, y = 20 }, name = 'grass-1' }, + { position = { x = 13, y = 21 }, name = 'grass-1' }, + { position = { x = 13, y = 22 }, name = 'grass-1' }, + { position = { x = 13, y = 23 }, name = 'grass-1' }, + { position = { x = 13, y = 24 }, name = 'grass-1' }, + { position = { x = 13, y = 25 }, name = 'grass-1' }, + { position = { x = 13, y = 26 }, name = 'grass-1' }, + { position = { x = 13, y = 27 }, name = 'grass-1' }, + { position = { x = 13, y = 28 }, name = 'grass-1' }, + { position = { x = 13, y = 29 }, name = 'grass-1' }, + { position = { x = 13, y = 30 }, name = 'grass-1' }, + { position = { x = 13, y = 31 }, name = 'grass-1' }, + { position = { x = 14, y = 0 }, name = 'grass-1' }, + { position = { x = 14, y = 1 }, name = 'grass-1' }, + { position = { x = 14, y = 2 }, name = 'grass-1' }, + { position = { x = 14, y = 3 }, name = 'grass-1' }, + { position = { x = 14, y = 4 }, name = 'grass-1' }, + { position = { x = 14, y = 5 }, name = 'grass-1' }, + { position = { x = 14, y = 6 }, name = 'grass-1' }, + { position = { x = 14, y = 7 }, name = 'grass-1' }, + { position = { x = 14, y = 8 }, name = 'grass-1' }, + { position = { x = 14, y = 9 }, name = 'grass-1' }, + { position = { x = 14, y = 10 }, name = 'grass-1' }, + { position = { x = 14, y = 11 }, name = 'grass-1' }, + { position = { x = 14, y = 12 }, name = 'grass-1' }, + { position = { x = 14, y = 13 }, name = 'grass-1' }, + { position = { x = 14, y = 14 }, name = 'grass-1' }, + { position = { x = 14, y = 15 }, name = 'grass-1' }, + { position = { x = 14, y = 16 }, name = 'grass-1' }, + { position = { x = 14, y = 17 }, name = 'grass-1' }, + { position = { x = 14, y = 18 }, name = 'grass-1' }, + { position = { x = 14, y = 19 }, name = 'grass-1' }, + { position = { x = 14, y = 20 }, name = 'grass-1' }, + { position = { x = 14, y = 21 }, name = 'grass-1' }, + { position = { x = 14, y = 22 }, name = 'grass-1' }, + { position = { x = 14, y = 23 }, name = 'grass-1' }, + { position = { x = 14, y = 24 }, name = 'grass-1' }, + { position = { x = 14, y = 25 }, name = 'grass-1' }, + { position = { x = 14, y = 26 }, name = 'grass-1' }, + { position = { x = 14, y = 27 }, name = 'grass-1' }, + { position = { x = 14, y = 28 }, name = 'grass-1' }, + { position = { x = 14, y = 29 }, name = 'grass-1' }, + { position = { x = 14, y = 30 }, name = 'grass-1' }, + { position = { x = 14, y = 31 }, name = 'grass-1' }, + { position = { x = 15, y = 0 }, name = 'grass-1' }, + { position = { x = 15, y = 1 }, name = 'grass-1' }, + { position = { x = 15, y = 2 }, name = 'grass-1' }, + { position = { x = 15, y = 3 }, name = 'grass-1' }, + { position = { x = 15, y = 4 }, name = 'grass-1' }, + { position = { x = 15, y = 5 }, name = 'grass-1' }, + { position = { x = 15, y = 6 }, name = 'grass-1' }, + { position = { x = 15, y = 7 }, name = 'grass-1' }, + { position = { x = 15, y = 8 }, name = 'grass-1' }, + { position = { x = 15, y = 9 }, name = 'grass-1' }, + { position = { x = 15, y = 10 }, name = 'grass-1' }, + { position = { x = 15, y = 11 }, name = 'grass-1' }, + { position = { x = 15, y = 12 }, name = 'grass-1' }, + { position = { x = 15, y = 13 }, name = 'grass-1' }, + { position = { x = 15, y = 14 }, name = 'grass-1' }, + { position = { x = 15, y = 15 }, name = 'grass-1' }, + { position = { x = 15, y = 16 }, name = 'grass-1' }, + { position = { x = 15, y = 17 }, name = 'grass-1' }, + { position = { x = 15, y = 18 }, name = 'grass-1' }, + { position = { x = 15, y = 19 }, name = 'grass-1' }, + { position = { x = 15, y = 20 }, name = 'grass-1' }, + { position = { x = 15, y = 21 }, name = 'grass-1' }, + { position = { x = 15, y = 22 }, name = 'grass-1' }, + { position = { x = 15, y = 23 }, name = 'grass-1' }, + { position = { x = 15, y = 24 }, name = 'grass-1' }, + { position = { x = 15, y = 25 }, name = 'grass-1' }, + { position = { x = 15, y = 26 }, name = 'grass-1' }, + { position = { x = 15, y = 27 }, name = 'grass-1' }, + { position = { x = 15, y = 28 }, name = 'grass-1' }, + { position = { x = 15, y = 29 }, name = 'grass-1' }, + { position = { x = 15, y = 30 }, name = 'grass-1' }, + { position = { x = 15, y = 31 }, name = 'grass-1' }, + { position = { x = 16, y = 0 }, name = 'grass-1' }, + { position = { x = 16, y = 1 }, name = 'grass-1' }, + { position = { x = 16, y = 2 }, name = 'grass-1' }, + { position = { x = 16, y = 3 }, name = 'grass-1' }, + { position = { x = 16, y = 4 }, name = 'grass-1' }, + { position = { x = 16, y = 5 }, name = 'grass-1' }, + { position = { x = 16, y = 6 }, name = 'grass-1' }, + { position = { x = 16, y = 7 }, name = 'grass-1' }, + { position = { x = 16, y = 8 }, name = 'grass-1' }, + { position = { x = 16, y = 9 }, name = 'grass-1' }, + { position = { x = 16, y = 10 }, name = 'grass-1' }, + { position = { x = 16, y = 11 }, name = 'grass-1' }, + { position = { x = 16, y = 12 }, name = 'grass-1' }, + { position = { x = 16, y = 13 }, name = 'grass-1' }, + { position = { x = 16, y = 14 }, name = 'grass-1' }, + { position = { x = 16, y = 15 }, name = 'grass-1' }, + { position = { x = 16, y = 16 }, name = 'grass-1' }, + { position = { x = 16, y = 17 }, name = 'grass-1' }, + { position = { x = 16, y = 18 }, name = 'grass-1' }, + { position = { x = 16, y = 19 }, name = 'grass-1' }, + { position = { x = 16, y = 20 }, name = 'grass-1' }, + { position = { x = 16, y = 21 }, name = 'grass-1' }, + { position = { x = 16, y = 22 }, name = 'grass-1' }, + { position = { x = 16, y = 23 }, name = 'grass-1' }, + { position = { x = 16, y = 24 }, name = 'grass-1' }, + { position = { x = 16, y = 25 }, name = 'grass-1' }, + { position = { x = 16, y = 26 }, name = 'grass-1' }, + { position = { x = 16, y = 27 }, name = 'grass-1' }, + { position = { x = 16, y = 28 }, name = 'grass-1' }, + { position = { x = 16, y = 29 }, name = 'grass-1' }, + { position = { x = 16, y = 30 }, name = 'grass-1' }, + { position = { x = 16, y = 31 }, name = 'grass-1' }, + { position = { x = 17, y = 0 }, name = 'grass-1' }, + { position = { x = 17, y = 1 }, name = 'grass-1' }, + { position = { x = 17, y = 2 }, name = 'grass-1' }, + { position = { x = 17, y = 3 }, name = 'grass-1' }, + { position = { x = 17, y = 4 }, name = 'grass-1' }, + { position = { x = 17, y = 5 }, name = 'grass-1' }, + { position = { x = 17, y = 6 }, name = 'grass-1' }, + { position = { x = 17, y = 7 }, name = 'grass-1' }, + { position = { x = 17, y = 8 }, name = 'grass-1' }, + { position = { x = 17, y = 9 }, name = 'grass-1' }, + { position = { x = 17, y = 10 }, name = 'grass-1' }, + { position = { x = 17, y = 11 }, name = 'grass-1' }, + { position = { x = 17, y = 12 }, name = 'grass-1' }, + { position = { x = 17, y = 13 }, name = 'grass-1' }, + { position = { x = 17, y = 14 }, name = 'grass-1' }, + { position = { x = 17, y = 15 }, name = 'grass-1' }, + { position = { x = 17, y = 16 }, name = 'grass-1' }, + { position = { x = 17, y = 17 }, name = 'grass-1' }, + { position = { x = 17, y = 18 }, name = 'grass-1' }, + { position = { x = 17, y = 19 }, name = 'grass-1' }, + { position = { x = 17, y = 20 }, name = 'grass-1' }, + { position = { x = 17, y = 21 }, name = 'grass-1' }, + { position = { x = 17, y = 22 }, name = 'grass-1' }, + { position = { x = 17, y = 23 }, name = 'grass-1' }, + { position = { x = 17, y = 24 }, name = 'grass-1' }, + { position = { x = 17, y = 25 }, name = 'grass-1' }, + { position = { x = 17, y = 26 }, name = 'grass-1' }, + { position = { x = 17, y = 27 }, name = 'grass-1' }, + { position = { x = 17, y = 28 }, name = 'grass-1' }, + { position = { x = 17, y = 29 }, name = 'grass-1' }, + { position = { x = 17, y = 30 }, name = 'grass-1' }, + { position = { x = 17, y = 31 }, name = 'grass-1' }, + { position = { x = 18, y = 0 }, name = 'grass-1' }, + { position = { x = 18, y = 1 }, name = 'grass-1' }, + { position = { x = 18, y = 2 }, name = 'grass-1' }, + { position = { x = 18, y = 3 }, name = 'grass-1' }, + { position = { x = 18, y = 4 }, name = 'grass-1' }, + { position = { x = 18, y = 5 }, name = 'grass-1' }, + { position = { x = 18, y = 6 }, name = 'grass-1' }, + { position = { x = 18, y = 7 }, name = 'grass-1' }, + { position = { x = 18, y = 8 }, name = 'grass-1' }, + { position = { x = 18, y = 9 }, name = 'grass-1' }, + { position = { x = 18, y = 10 }, name = 'grass-1' }, + { position = { x = 18, y = 11 }, name = 'grass-1' }, + { position = { x = 18, y = 12 }, name = 'grass-1' }, + { position = { x = 18, y = 13 }, name = 'grass-1' }, + { position = { x = 18, y = 14 }, name = 'grass-1' }, + { position = { x = 18, y = 15 }, name = 'grass-1' }, + { position = { x = 18, y = 16 }, name = 'grass-1' }, + { position = { x = 18, y = 17 }, name = 'grass-1' }, + { position = { x = 18, y = 18 }, name = 'grass-1' }, + { position = { x = 18, y = 19 }, name = 'grass-1' }, + { position = { x = 18, y = 20 }, name = 'grass-1' }, + { position = { x = 18, y = 21 }, name = 'grass-1' }, + { position = { x = 18, y = 22 }, name = 'grass-1' }, + { position = { x = 18, y = 23 }, name = 'grass-1' }, + { position = { x = 18, y = 24 }, name = 'grass-1' }, + { position = { x = 18, y = 25 }, name = 'grass-1' }, + { position = { x = 18, y = 26 }, name = 'grass-1' }, + { position = { x = 18, y = 27 }, name = 'grass-1' }, + { position = { x = 18, y = 28 }, name = 'grass-1' }, + { position = { x = 18, y = 29 }, name = 'grass-1' }, + { position = { x = 18, y = 30 }, name = 'grass-1' }, + { position = { x = 18, y = 31 }, name = 'grass-1' }, + { position = { x = 19, y = 0 }, name = 'grass-1' }, + { position = { x = 19, y = 1 }, name = 'grass-1' }, + { position = { x = 19, y = 2 }, name = 'grass-1' }, + { position = { x = 19, y = 3 }, name = 'grass-1' }, + { position = { x = 19, y = 4 }, name = 'grass-1' }, + { position = { x = 19, y = 5 }, name = 'grass-1' }, + { position = { x = 19, y = 6 }, name = 'grass-1' }, + { position = { x = 19, y = 7 }, name = 'grass-1' }, + { position = { x = 19, y = 8 }, name = 'grass-1' }, + { position = { x = 19, y = 9 }, name = 'grass-1' }, + { position = { x = 19, y = 10 }, name = 'grass-1' }, + { position = { x = 19, y = 11 }, name = 'grass-1' }, + { position = { x = 19, y = 12 }, name = 'grass-1' }, + { position = { x = 19, y = 13 }, name = 'grass-1' }, + { position = { x = 19, y = 14 }, name = 'grass-1' }, + { position = { x = 19, y = 15 }, name = 'grass-1' }, + { position = { x = 19, y = 16 }, name = 'grass-1' }, + { position = { x = 19, y = 17 }, name = 'grass-1' }, + { position = { x = 19, y = 18 }, name = 'grass-1' }, + { position = { x = 19, y = 19 }, name = 'grass-1' }, + { position = { x = 19, y = 20 }, name = 'grass-1' }, + { position = { x = 19, y = 21 }, name = 'grass-1' }, + { position = { x = 19, y = 22 }, name = 'grass-1' }, + { position = { x = 19, y = 23 }, name = 'grass-1' }, + { position = { x = 19, y = 24 }, name = 'grass-1' }, + { position = { x = 19, y = 25 }, name = 'grass-1' }, + { position = { x = 19, y = 26 }, name = 'grass-1' }, + { position = { x = 19, y = 27 }, name = 'grass-1' }, + { position = { x = 19, y = 28 }, name = 'grass-1' }, + { position = { x = 19, y = 29 }, name = 'grass-1' }, + { position = { x = 19, y = 30 }, name = 'grass-1' }, + { position = { x = 19, y = 31 }, name = 'grass-1' }, + { position = { x = 20, y = 0 }, name = 'grass-1' }, + { position = { x = 20, y = 1 }, name = 'grass-1' }, + { position = { x = 20, y = 2 }, name = 'grass-1' }, + { position = { x = 20, y = 3 }, name = 'grass-1' }, + { position = { x = 20, y = 4 }, name = 'grass-1' }, + { position = { x = 20, y = 5 }, name = 'grass-1' }, + { position = { x = 20, y = 6 }, name = 'grass-1' }, + { position = { x = 20, y = 7 }, name = 'grass-1' }, + { position = { x = 20, y = 8 }, name = 'grass-1' }, + { position = { x = 20, y = 9 }, name = 'grass-1' }, + { position = { x = 20, y = 10 }, name = 'grass-1' }, + { position = { x = 20, y = 11 }, name = 'grass-1' }, + { position = { x = 20, y = 12 }, name = 'grass-1' }, + { position = { x = 20, y = 13 }, name = 'grass-1' }, + { position = { x = 20, y = 14 }, name = 'grass-1' }, + { position = { x = 20, y = 15 }, name = 'grass-1' }, + { position = { x = 20, y = 16 }, name = 'grass-1' }, + { position = { x = 20, y = 17 }, name = 'grass-1' }, + { position = { x = 20, y = 18 }, name = 'grass-1' }, + { position = { x = 20, y = 19 }, name = 'grass-1' }, + { position = { x = 20, y = 20 }, name = 'grass-1' }, + { position = { x = 20, y = 21 }, name = 'grass-1' }, + { position = { x = 20, y = 22 }, name = 'grass-1' }, + { position = { x = 20, y = 23 }, name = 'grass-1' }, + { position = { x = 20, y = 24 }, name = 'grass-1' }, + { position = { x = 20, y = 25 }, name = 'grass-1' }, + { position = { x = 20, y = 26 }, name = 'grass-1' }, + { position = { x = 20, y = 27 }, name = 'grass-1' }, + { position = { x = 20, y = 28 }, name = 'grass-1' }, + { position = { x = 20, y = 29 }, name = 'grass-1' }, + { position = { x = 20, y = 30 }, name = 'grass-1' }, + { position = { x = 20, y = 31 }, name = 'grass-1' }, + { position = { x = 21, y = 0 }, name = 'grass-1' }, + { position = { x = 21, y = 1 }, name = 'grass-1' }, + { position = { x = 21, y = 2 }, name = 'grass-1' }, + { position = { x = 21, y = 3 }, name = 'grass-1' }, + { position = { x = 21, y = 4 }, name = 'grass-1' }, + { position = { x = 21, y = 5 }, name = 'grass-1' }, + { position = { x = 21, y = 6 }, name = 'grass-1' }, + { position = { x = 21, y = 7 }, name = 'grass-1' }, + { position = { x = 21, y = 8 }, name = 'grass-1' }, + { position = { x = 21, y = 9 }, name = 'grass-1' }, + { position = { x = 21, y = 10 }, name = 'grass-1' }, + { position = { x = 21, y = 11 }, name = 'grass-1' }, + { position = { x = 21, y = 12 }, name = 'grass-1' }, + { position = { x = 21, y = 13 }, name = 'grass-1' }, + { position = { x = 21, y = 14 }, name = 'grass-1' }, + { position = { x = 21, y = 15 }, name = 'grass-1' }, + { position = { x = 21, y = 16 }, name = 'grass-1' }, + { position = { x = 21, y = 17 }, name = 'grass-1' }, + { position = { x = 21, y = 18 }, name = 'grass-1' }, + { position = { x = 21, y = 19 }, name = 'grass-1' }, + { position = { x = 21, y = 20 }, name = 'grass-1' }, + { position = { x = 21, y = 21 }, name = 'grass-1' }, + { position = { x = 21, y = 22 }, name = 'grass-1' }, + { position = { x = 21, y = 23 }, name = 'grass-1' }, + { position = { x = 21, y = 24 }, name = 'grass-1' }, + { position = { x = 21, y = 25 }, name = 'grass-1' }, + { position = { x = 21, y = 26 }, name = 'grass-1' }, + { position = { x = 21, y = 27 }, name = 'grass-1' }, + { position = { x = 21, y = 28 }, name = 'grass-1' }, + { position = { x = 21, y = 29 }, name = 'grass-1' }, + { position = { x = 21, y = 30 }, name = 'grass-1' }, + { position = { x = 21, y = 31 }, name = 'grass-1' }, + { position = { x = 22, y = 0 }, name = 'grass-1' }, + { position = { x = 22, y = 1 }, name = 'grass-1' }, + { position = { x = 22, y = 2 }, name = 'grass-1' }, + { position = { x = 22, y = 3 }, name = 'grass-1' }, + { position = { x = 22, y = 4 }, name = 'grass-1' }, + { position = { x = 22, y = 5 }, name = 'grass-1' }, + { position = { x = 22, y = 6 }, name = 'grass-1' }, + { position = { x = 22, y = 7 }, name = 'grass-1' }, + { position = { x = 22, y = 8 }, name = 'grass-1' }, + { position = { x = 22, y = 9 }, name = 'grass-1' }, + { position = { x = 22, y = 10 }, name = 'grass-1' }, + { position = { x = 22, y = 11 }, name = 'grass-1' }, + { position = { x = 22, y = 12 }, name = 'grass-1' }, + { position = { x = 22, y = 13 }, name = 'grass-1' }, + { position = { x = 22, y = 14 }, name = 'grass-1' }, + { position = { x = 22, y = 15 }, name = 'grass-1' }, + { position = { x = 22, y = 16 }, name = 'grass-1' }, + { position = { x = 22, y = 17 }, name = 'grass-1' }, + { position = { x = 22, y = 18 }, name = 'grass-1' }, + { position = { x = 22, y = 19 }, name = 'grass-1' }, + { position = { x = 22, y = 20 }, name = 'grass-1' }, + { position = { x = 22, y = 21 }, name = 'grass-1' }, + { position = { x = 22, y = 22 }, name = 'grass-1' }, + { position = { x = 22, y = 23 }, name = 'grass-1' }, + { position = { x = 22, y = 24 }, name = 'grass-1' }, + { position = { x = 22, y = 25 }, name = 'grass-1' }, + { position = { x = 22, y = 26 }, name = 'grass-1' }, + { position = { x = 22, y = 27 }, name = 'grass-1' }, + { position = { x = 22, y = 28 }, name = 'grass-1' }, + { position = { x = 22, y = 29 }, name = 'grass-1' }, + { position = { x = 22, y = 30 }, name = 'grass-1' }, + { position = { x = 22, y = 31 }, name = 'grass-1' }, + { position = { x = 23, y = 0 }, name = 'grass-1' }, + { position = { x = 23, y = 1 }, name = 'grass-1' }, + { position = { x = 23, y = 2 }, name = 'grass-1' }, + { position = { x = 23, y = 3 }, name = 'grass-1' }, + { position = { x = 23, y = 4 }, name = 'grass-1' }, + { position = { x = 23, y = 5 }, name = 'grass-1' }, + { position = { x = 23, y = 6 }, name = 'grass-1' }, + { position = { x = 23, y = 7 }, name = 'grass-1' }, + { position = { x = 23, y = 8 }, name = 'grass-1' }, + { position = { x = 23, y = 9 }, name = 'grass-1' }, + { position = { x = 23, y = 10 }, name = 'grass-1' }, + { position = { x = 23, y = 11 }, name = 'grass-1' }, + { position = { x = 23, y = 12 }, name = 'grass-1' }, + { position = { x = 23, y = 13 }, name = 'grass-1' }, + { position = { x = 23, y = 14 }, name = 'grass-1' }, + { position = { x = 23, y = 15 }, name = 'grass-1' }, + { position = { x = 23, y = 16 }, name = 'grass-1' }, + { position = { x = 23, y = 17 }, name = 'grass-1' }, + { position = { x = 23, y = 18 }, name = 'grass-1' }, + { position = { x = 23, y = 19 }, name = 'grass-1' }, + { position = { x = 23, y = 20 }, name = 'grass-1' }, + { position = { x = 23, y = 21 }, name = 'grass-1' }, + { position = { x = 23, y = 22 }, name = 'grass-1' }, + { position = { x = 23, y = 23 }, name = 'grass-1' }, + { position = { x = 23, y = 24 }, name = 'grass-1' }, + { position = { x = 23, y = 25 }, name = 'grass-1' }, + { position = { x = 23, y = 26 }, name = 'grass-1' }, + { position = { x = 23, y = 27 }, name = 'grass-1' }, + { position = { x = 23, y = 28 }, name = 'grass-1' }, + { position = { x = 23, y = 29 }, name = 'grass-1' }, + { position = { x = 23, y = 30 }, name = 'grass-1' }, + { position = { x = 23, y = 31 }, name = 'grass-1' }, + { position = { x = 24, y = 0 }, name = 'grass-1' }, + { position = { x = 24, y = 1 }, name = 'grass-1' }, + { position = { x = 24, y = 2 }, name = 'grass-1' }, + { position = { x = 24, y = 3 }, name = 'grass-1' }, + { position = { x = 24, y = 4 }, name = 'grass-1' }, + { position = { x = 24, y = 5 }, name = 'grass-1' }, + { position = { x = 24, y = 6 }, name = 'grass-1' }, + { position = { x = 24, y = 7 }, name = 'grass-1' }, + { position = { x = 24, y = 8 }, name = 'grass-1' }, + { position = { x = 24, y = 9 }, name = 'grass-1' }, + { position = { x = 24, y = 10 }, name = 'grass-1' }, + { position = { x = 24, y = 11 }, name = 'grass-1' }, + { position = { x = 24, y = 12 }, name = 'grass-1' }, + { position = { x = 24, y = 13 }, name = 'grass-1' }, + { position = { x = 24, y = 14 }, name = 'grass-1' }, + { position = { x = 24, y = 15 }, name = 'grass-1' }, + { position = { x = 24, y = 16 }, name = 'grass-1' }, + { position = { x = 24, y = 17 }, name = 'grass-1' }, + { position = { x = 24, y = 18 }, name = 'grass-1' }, + { position = { x = 24, y = 19 }, name = 'grass-1' }, + { position = { x = 24, y = 20 }, name = 'grass-1' }, + { position = { x = 24, y = 21 }, name = 'grass-1' }, + { position = { x = 24, y = 22 }, name = 'grass-1' }, + { position = { x = 24, y = 23 }, name = 'grass-1' }, + { position = { x = 24, y = 24 }, name = 'grass-1' }, + { position = { x = 24, y = 25 }, name = 'grass-1' }, + { position = { x = 24, y = 26 }, name = 'grass-1' }, + { position = { x = 24, y = 27 }, name = 'grass-1' }, + { position = { x = 24, y = 28 }, name = 'grass-1' }, + { position = { x = 24, y = 29 }, name = 'grass-1' }, + { position = { x = 24, y = 30 }, name = 'grass-1' }, + { position = { x = 24, y = 31 }, name = 'grass-1' }, + { position = { x = 25, y = 0 }, name = 'grass-1' }, + { position = { x = 25, y = 1 }, name = 'grass-1' }, + { position = { x = 25, y = 2 }, name = 'grass-1' }, + { position = { x = 25, y = 3 }, name = 'grass-1' }, + { position = { x = 25, y = 4 }, name = 'grass-1' }, + { position = { x = 25, y = 5 }, name = 'grass-1' }, + { position = { x = 25, y = 6 }, name = 'grass-1' }, + { position = { x = 25, y = 7 }, name = 'grass-1' }, + { position = { x = 25, y = 8 }, name = 'grass-1' }, + { position = { x = 25, y = 9 }, name = 'grass-1' }, + { position = { x = 25, y = 10 }, name = 'grass-1' }, + { position = { x = 25, y = 11 }, name = 'grass-1' }, + { position = { x = 25, y = 12 }, name = 'grass-1' }, + { position = { x = 25, y = 13 }, name = 'grass-1' }, + { position = { x = 25, y = 14 }, name = 'grass-1' }, + { position = { x = 25, y = 15 }, name = 'grass-1' }, + { position = { x = 25, y = 16 }, name = 'grass-1' }, + { position = { x = 25, y = 17 }, name = 'grass-1' }, + { position = { x = 25, y = 18 }, name = 'grass-1' }, + { position = { x = 25, y = 19 }, name = 'grass-1' }, + { position = { x = 25, y = 20 }, name = 'grass-1' }, + { position = { x = 25, y = 21 }, name = 'grass-1' }, + { position = { x = 25, y = 22 }, name = 'grass-1' }, + { position = { x = 25, y = 23 }, name = 'grass-1' }, + { position = { x = 25, y = 24 }, name = 'grass-1' }, + { position = { x = 25, y = 25 }, name = 'grass-1' }, + { position = { x = 25, y = 26 }, name = 'grass-1' }, + { position = { x = 25, y = 27 }, name = 'grass-1' }, + { position = { x = 25, y = 28 }, name = 'grass-1' }, + { position = { x = 25, y = 29 }, name = 'grass-1' }, + { position = { x = 25, y = 30 }, name = 'grass-1' }, + { position = { x = 25, y = 31 }, name = 'grass-1' }, + { position = { x = 26, y = 0 }, name = 'grass-1' }, + { position = { x = 26, y = 1 }, name = 'grass-1' }, + { position = { x = 26, y = 2 }, name = 'grass-1' }, + { position = { x = 26, y = 3 }, name = 'grass-1' }, + { position = { x = 26, y = 4 }, name = 'grass-1' }, + { position = { x = 26, y = 5 }, name = 'grass-1' }, + { position = { x = 26, y = 6 }, name = 'grass-1' }, + { position = { x = 26, y = 7 }, name = 'grass-1' }, + { position = { x = 26, y = 8 }, name = 'grass-1' }, + { position = { x = 26, y = 9 }, name = 'grass-1' }, + { position = { x = 26, y = 10 }, name = 'grass-1' }, + { position = { x = 26, y = 11 }, name = 'grass-1' }, + { position = { x = 26, y = 12 }, name = 'grass-1' }, + { position = { x = 26, y = 13 }, name = 'grass-1' }, + { position = { x = 26, y = 14 }, name = 'grass-1' }, + { position = { x = 26, y = 15 }, name = 'grass-1' }, + { position = { x = 26, y = 16 }, name = 'grass-1' }, + { position = { x = 26, y = 17 }, name = 'grass-1' }, + { position = { x = 26, y = 18 }, name = 'grass-1' }, + { position = { x = 26, y = 19 }, name = 'grass-1' }, + { position = { x = 26, y = 20 }, name = 'grass-1' }, + { position = { x = 26, y = 21 }, name = 'grass-1' }, + { position = { x = 26, y = 22 }, name = 'grass-1' }, + { position = { x = 26, y = 23 }, name = 'grass-1' }, + { position = { x = 26, y = 24 }, name = 'grass-1' }, + { position = { x = 26, y = 25 }, name = 'grass-1' }, + { position = { x = 26, y = 26 }, name = 'grass-1' }, + { position = { x = 26, y = 27 }, name = 'grass-1' }, + { position = { x = 26, y = 28 }, name = 'grass-1' }, + { position = { x = 26, y = 29 }, name = 'grass-1' }, + { position = { x = 26, y = 30 }, name = 'grass-1' }, + { position = { x = 26, y = 31 }, name = 'grass-1' }, + { position = { x = 27, y = 0 }, name = 'grass-1' }, + { position = { x = 27, y = 1 }, name = 'grass-1' }, + { position = { x = 27, y = 2 }, name = 'grass-1' }, + { position = { x = 27, y = 3 }, name = 'grass-1' }, + { position = { x = 27, y = 4 }, name = 'grass-1' }, + { position = { x = 27, y = 5 }, name = 'grass-1' }, + { position = { x = 27, y = 6 }, name = 'grass-1' }, + { position = { x = 27, y = 7 }, name = 'grass-1' }, + { position = { x = 27, y = 8 }, name = 'grass-1' }, + { position = { x = 27, y = 9 }, name = 'grass-1' }, + { position = { x = 27, y = 10 }, name = 'grass-1' }, + { position = { x = 27, y = 11 }, name = 'grass-1' }, + { position = { x = 27, y = 12 }, name = 'grass-1' }, + { position = { x = 27, y = 13 }, name = 'grass-1' }, + { position = { x = 27, y = 14 }, name = 'grass-1' }, + { position = { x = 27, y = 15 }, name = 'grass-1' }, + { position = { x = 27, y = 16 }, name = 'grass-1' }, + { position = { x = 27, y = 17 }, name = 'grass-1' }, + { position = { x = 27, y = 18 }, name = 'grass-1' }, + { position = { x = 27, y = 19 }, name = 'grass-1' }, + { position = { x = 27, y = 20 }, name = 'grass-1' }, + { position = { x = 27, y = 21 }, name = 'grass-1' }, + { position = { x = 27, y = 22 }, name = 'grass-1' }, + { position = { x = 27, y = 23 }, name = 'grass-1' }, + { position = { x = 27, y = 24 }, name = 'grass-1' }, + { position = { x = 27, y = 25 }, name = 'grass-1' }, + { position = { x = 27, y = 26 }, name = 'grass-1' }, + { position = { x = 27, y = 27 }, name = 'grass-1' }, + { position = { x = 27, y = 28 }, name = 'grass-1' }, + { position = { x = 27, y = 29 }, name = 'grass-1' }, + { position = { x = 27, y = 30 }, name = 'grass-1' }, + { position = { x = 27, y = 31 }, name = 'grass-1' }, + { position = { x = 28, y = 0 }, name = 'grass-1' }, + { position = { x = 28, y = 1 }, name = 'grass-1' }, + { position = { x = 28, y = 2 }, name = 'grass-1' }, + { position = { x = 28, y = 3 }, name = 'grass-1' }, + { position = { x = 28, y = 4 }, name = 'grass-1' }, + { position = { x = 28, y = 5 }, name = 'grass-1' }, + { position = { x = 28, y = 6 }, name = 'grass-1' }, + { position = { x = 28, y = 7 }, name = 'grass-1' }, + { position = { x = 28, y = 8 }, name = 'grass-1' }, + { position = { x = 28, y = 9 }, name = 'grass-1' }, + { position = { x = 28, y = 10 }, name = 'grass-1' }, + { position = { x = 28, y = 11 }, name = 'grass-1' }, + { position = { x = 28, y = 12 }, name = 'grass-1' }, + { position = { x = 28, y = 13 }, name = 'grass-1' }, + { position = { x = 28, y = 14 }, name = 'grass-1' }, + { position = { x = 28, y = 15 }, name = 'grass-1' }, + { position = { x = 28, y = 16 }, name = 'grass-1' }, + { position = { x = 28, y = 17 }, name = 'grass-1' }, + { position = { x = 28, y = 18 }, name = 'grass-1' }, + { position = { x = 28, y = 19 }, name = 'grass-1' }, + { position = { x = 28, y = 20 }, name = 'grass-1' }, + { position = { x = 28, y = 21 }, name = 'grass-1' }, + { position = { x = 28, y = 22 }, name = 'grass-1' }, + { position = { x = 28, y = 23 }, name = 'grass-1' }, + { position = { x = 28, y = 24 }, name = 'grass-1' }, + { position = { x = 28, y = 25 }, name = 'grass-1' }, + { position = { x = 28, y = 26 }, name = 'grass-1' }, + { position = { x = 28, y = 27 }, name = 'grass-1' }, + { position = { x = 28, y = 28 }, name = 'grass-1' }, + { position = { x = 28, y = 29 }, name = 'grass-1' }, + { position = { x = 28, y = 30 }, name = 'grass-1' }, + { position = { x = 28, y = 31 }, name = 'grass-1' }, + { position = { x = 29, y = 0 }, name = 'grass-1' }, + { position = { x = 29, y = 1 }, name = 'grass-1' }, + { position = { x = 29, y = 2 }, name = 'grass-1' }, + { position = { x = 29, y = 3 }, name = 'grass-1' }, + { position = { x = 29, y = 4 }, name = 'grass-1' }, + { position = { x = 29, y = 5 }, name = 'grass-1' }, + { position = { x = 29, y = 6 }, name = 'grass-1' }, + { position = { x = 29, y = 7 }, name = 'grass-1' }, + { position = { x = 29, y = 8 }, name = 'grass-1' }, + { position = { x = 29, y = 9 }, name = 'grass-1' }, + { position = { x = 29, y = 10 }, name = 'grass-1' }, + { position = { x = 29, y = 11 }, name = 'grass-1' }, + { position = { x = 29, y = 12 }, name = 'grass-1' }, + { position = { x = 29, y = 13 }, name = 'grass-1' }, + { position = { x = 29, y = 14 }, name = 'grass-1' }, + { position = { x = 29, y = 15 }, name = 'grass-1' }, + { position = { x = 29, y = 16 }, name = 'grass-1' }, + { position = { x = 29, y = 17 }, name = 'grass-1' }, + { position = { x = 29, y = 18 }, name = 'grass-1' }, + { position = { x = 29, y = 19 }, name = 'grass-1' }, + { position = { x = 29, y = 20 }, name = 'grass-1' }, + { position = { x = 29, y = 21 }, name = 'grass-1' }, + { position = { x = 29, y = 22 }, name = 'grass-1' }, + { position = { x = 29, y = 23 }, name = 'grass-1' }, + { position = { x = 29, y = 24 }, name = 'grass-1' }, + { position = { x = 29, y = 25 }, name = 'grass-1' }, + { position = { x = 29, y = 26 }, name = 'grass-1' }, + { position = { x = 29, y = 27 }, name = 'grass-1' }, + { position = { x = 29, y = 28 }, name = 'grass-1' }, + { position = { x = 29, y = 29 }, name = 'grass-1' }, + { position = { x = 29, y = 30 }, name = 'grass-1' }, + { position = { x = 29, y = 31 }, name = 'grass-1' }, + { position = { x = 30, y = 0 }, name = 'grass-1' }, + { position = { x = 30, y = 1 }, name = 'grass-1' }, + { position = { x = 30, y = 2 }, name = 'grass-1' }, + { position = { x = 30, y = 3 }, name = 'grass-1' }, + { position = { x = 30, y = 4 }, name = 'grass-1' }, + { position = { x = 30, y = 5 }, name = 'grass-1' }, + { position = { x = 30, y = 6 }, name = 'grass-1' }, + { position = { x = 30, y = 7 }, name = 'grass-1' }, + { position = { x = 30, y = 8 }, name = 'grass-1' }, + { position = { x = 30, y = 9 }, name = 'grass-1' }, + { position = { x = 30, y = 10 }, name = 'grass-1' }, + { position = { x = 30, y = 11 }, name = 'grass-1' }, + { position = { x = 30, y = 12 }, name = 'grass-1' }, + { position = { x = 30, y = 13 }, name = 'grass-1' }, + { position = { x = 30, y = 14 }, name = 'grass-1' }, + { position = { x = 30, y = 15 }, name = 'grass-1' }, + { position = { x = 30, y = 16 }, name = 'grass-1' }, + { position = { x = 30, y = 17 }, name = 'grass-1' }, + { position = { x = 30, y = 18 }, name = 'grass-1' }, + { position = { x = 30, y = 19 }, name = 'grass-1' }, + { position = { x = 30, y = 20 }, name = 'grass-1' }, + { position = { x = 30, y = 21 }, name = 'grass-1' }, + { position = { x = 30, y = 22 }, name = 'grass-1' }, + { position = { x = 30, y = 23 }, name = 'grass-1' }, + { position = { x = 30, y = 24 }, name = 'grass-1' }, + { position = { x = 30, y = 25 }, name = 'grass-1' }, + { position = { x = 30, y = 26 }, name = 'grass-1' }, + { position = { x = 30, y = 27 }, name = 'grass-1' }, + { position = { x = 30, y = 28 }, name = 'grass-1' }, + { position = { x = 30, y = 29 }, name = 'grass-1' }, + { position = { x = 30, y = 30 }, name = 'grass-1' }, + { position = { x = 30, y = 31 }, name = 'grass-1' }, + { position = { x = 31, y = 0 }, name = 'grass-1' }, + { position = { x = 31, y = 1 }, name = 'grass-1' }, + { position = { x = 31, y = 2 }, name = 'grass-1' }, + { position = { x = 31, y = 3 }, name = 'grass-1' }, + { position = { x = 31, y = 4 }, name = 'grass-1' }, + { position = { x = 31, y = 5 }, name = 'grass-1' }, + { position = { x = 31, y = 6 }, name = 'grass-1' }, + { position = { x = 31, y = 7 }, name = 'grass-1' }, + { position = { x = 31, y = 8 }, name = 'grass-1' }, + { position = { x = 31, y = 9 }, name = 'grass-1' }, + { position = { x = 31, y = 10 }, name = 'grass-1' }, + { position = { x = 31, y = 11 }, name = 'grass-1' }, + { position = { x = 31, y = 12 }, name = 'grass-1' }, + { position = { x = 31, y = 13 }, name = 'grass-1' }, + { position = { x = 31, y = 14 }, name = 'grass-1' }, + { position = { x = 31, y = 15 }, name = 'grass-1' }, + { position = { x = 31, y = 16 }, name = 'grass-1' }, + { position = { x = 31, y = 17 }, name = 'grass-1' }, + { position = { x = 31, y = 18 }, name = 'grass-1' }, + { position = { x = 31, y = 19 }, name = 'grass-1' }, + { position = { x = 31, y = 20 }, name = 'grass-1' }, + { position = { x = 31, y = 21 }, name = 'grass-1' }, + { position = { x = 31, y = 22 }, name = 'grass-1' }, + { position = { x = 31, y = 23 }, name = 'grass-1' }, + { position = { x = 31, y = 24 }, name = 'grass-1' }, + { position = { x = 31, y = 25 }, name = 'grass-1' }, + { position = { x = 31, y = 26 }, name = 'grass-1' }, + { position = { x = 31, y = 27 }, name = 'grass-1' }, + { position = { x = 31, y = 28 }, name = 'grass-1' }, + { position = { x = 31, y = 29 }, name = 'grass-1' }, + { position = { x = 31, y = 30 }, name = 'grass-1' }, + { position = { x = 31, y = 31 }, name = 'grass-1' } } } } diff --git a/maps/lost.lua b/maps/lost.lua index c9ba4b33..5a4d910c 100644 --- a/maps/lost.lua +++ b/maps/lost.lua @@ -12,9 +12,9 @@ local simplex_noise = require 'utils.simplex_noise'.d2 local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['mineable-wreckage'] = true } @@ -45,15 +45,15 @@ local function generate_outer_content(event) for x = 0, 31, 1 do for y = 0, 31, 1 do local tile_to_insert = false - local pos = {x = left_top.x + x, y = left_top.y + y} + local pos = { x = left_top.x + x, y = left_top.y + y } local noise = get_noise('ocean', pos) if math.floor(noise * 8) % 2 == 1 then - surface.set_tiles({{name = 'deepwater', position = pos}}) + surface.set_tiles({ { name = 'deepwater', position = pos } }) else - surface.set_tiles({{name = 'water', position = pos}}) + surface.set_tiles({ { name = 'water', position = pos } }) end if math_random(1, 256) == 1 then - surface.create_entity({name = 'fish', position = pos}) + surface.create_entity({ name = 'fish', position = pos }) end end end @@ -65,23 +65,23 @@ local function generate_inner_content(event) for x = 0, 31, 1 do for y = 0, 31, 1 do local tile_to_insert = false - local pos = {x = left_top.x + x, y = left_top.y + y} + local pos = { x = left_top.x + x, y = left_top.y + y } if pos.x < 2 and pos.y < 2 and pos.x > -3 and pos.y > -3 then - surface.set_tiles({{name = 'grass-1', position = pos}}) - surface.create_entity({name = 'stone', position = pos, amount = 999999}) + surface.set_tiles({ { name = 'grass-1', position = pos } }) + surface.create_entity({ name = 'stone', position = pos, amount = 999999 }) else local noise = get_noise('ocean', pos) if math.floor(noise * 8) % 2 == 1 then - surface.set_tiles({{name = 'deepwater', position = pos}}) + surface.set_tiles({ { name = 'deepwater', position = pos } }) else - surface.set_tiles({{name = 'water', position = pos}}) + surface.set_tiles({ { name = 'water', position = pos } }) end if math_random(1, 256) == 1 then - surface.create_entity({name = 'fish', position = pos}) + surface.create_entity({ name = 'fish', position = pos }) end end if pos.x == 0 and pos.y == 0 then - surface.create_entity({name = 'rock-big', position = pos}) + surface.create_entity({ name = 'big-rock', position = pos }) end end end @@ -96,7 +96,7 @@ local function on_chunk_generated(event) local tiles = {} local entities = {} - for _, e in pairs(surface.find_entities_filtered({area = event.area})) do + for _, e in pairs(surface.find_entities_filtered({ area = event.area })) do if e.name ~= 'character' then e.destroy() end @@ -116,20 +116,20 @@ local function init_map() local map_gen_settings = {} map_gen_settings.water = 'small' - map_gen_settings.cliff_settings = {cliff_elevation_interval = 22, cliff_elevation_0 = 22} + map_gen_settings.cliff_settings = { cliff_elevation_interval = 22, cliff_elevation_0 = 22 } map_gen_settings.autoplace_controls = { - ['coal'] = {frequency = 'none', size = 'none', richness = 'none'}, - ['stone'] = {frequency = 'none', size = 'none', richness = 'none'}, - ['copper-ore'] = {frequency = 'none', size = 'none', richness = 'none'}, - ['iron-ore'] = {frequency = 'none', size = 'none', richness = 'none'}, - ['crude-oil'] = {frequency = 'none', size = 'none', richness = 'none'}, - ['trees'] = {frequency = 'none', size = 'none', richness = 'none'}, - ['enemy-base'] = {frequency = 'none', size = 'none', richness = 'none'} + ['coal'] = { frequency = 'none', size = 'none', richness = 'none' }, + ['stone'] = { frequency = 'none', size = 'none', richness = 'none' }, + ['copper-ore'] = { frequency = 'none', size = 'none', richness = 'none' }, + ['iron-ore'] = { frequency = 'none', size = 'none', richness = 'none' }, + ['crude-oil'] = { frequency = 'none', size = 'none', richness = 'none' }, + ['trees'] = { frequency = 'none', size = 'none', richness = 'none' }, + ['enemy-base'] = { frequency = 'none', size = 'none', richness = 'none' } } game.create_surface('lost', map_gen_settings) game.surfaces['lost'].ticks_per_day = game.surfaces['lost'].ticks_per_day * 2 - game.surfaces['lost'].request_to_generate_chunks({0, 0}, 3) + game.surfaces['lost'].request_to_generate_chunks({ 0, 0 }, 3) game.surfaces['lost'].force_generate_chunk_requests() game.forces.player.manual_mining_speed_modifier = 0.5 @@ -142,7 +142,7 @@ local function on_player_joined_game(event) local player = game.players[event.player_index] if player.online_time == 0 then - player.teleport(game.surfaces['lost'].find_non_colliding_position('character', {0, 2}, 50, 0.5), 'lost') + player.teleport(game.surfaces['lost'].find_non_colliding_position('character', { 0, 2 }, 50, 0.5), 'lost') end end @@ -155,7 +155,7 @@ local function on_player_mined_entity(event) return end if entity.position.x == 0 and entity.position.y == 0 then - entity.surface.create_entity({name = 'rock-big', position = {0, 0}}) + entity.surface.create_entity({ name = 'big-rock', position = { 0, 0 } }) end end diff --git a/maps/lost_desert.lua b/maps/lost_desert.lua index 7d8e2b77..643e34d3 100644 --- a/maps/lost_desert.lua +++ b/maps/lost_desert.lua @@ -36,9 +36,9 @@ local decorative_whitelist = { local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['mineable-wreckage'] = true } @@ -92,7 +92,7 @@ local function shipwreck(position, surface) end local worm_raffle = { 'small-worm-turret', 'small-worm-turret', 'small-worm-turret', 'medium-worm-turret', 'medium-worm-turret', 'big-worm-turret' } -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local ore_spawn_raffle = { 'iron-ore', 'iron-ore', 'iron-ore', 'copper-ore', 'copper-ore', 'copper-ore', 'coal', 'coal', 'stone', 'stone', 'uranium-ore', 'crude-oil' } local function on_chunk_generated(event) @@ -142,9 +142,9 @@ local function on_chunk_generated(event) if noise > 0.5 then if math_random(1, 3) ~= 1 then if math_random(1, 2) == 1 then - surface.create_entity({ name = 'rock-big', position = pos }) + surface.create_entity({ name = 'big-rock', position = pos }) else - surface.create_entity({ name = 'rock-huge', position = pos }) + surface.create_entity({ name = 'huge-rock', position = pos }) end else if math_random(1, 2048) == 1 then diff --git a/maps/mountain_fortress.lua b/maps/mountain_fortress.lua index 7bbf88b2..3753248f 100644 --- a/maps/mountain_fortress.lua +++ b/maps/mountain_fortress.lua @@ -26,9 +26,9 @@ local spawn_point = { x = 0, y = 2 } local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true } local worm_raffle_table = { [1] = { 'small-worm-turret', 'small-worm-turret', 'small-worm-turret', 'small-worm-turret', 'small-worm-turret', 'small-worm-turret' }, @@ -42,7 +42,7 @@ local worm_raffle_table = { [9] = { 'medium-worm-turret', 'medium-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret' }, [10] = { 'medium-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret' } } -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local nest_raffle = { 'biter-spawner', 'biter-spawner', 'biter-spawner', 'spitter-spawner' } local function shuffle(tbl) @@ -413,7 +413,7 @@ local function on_chunk_generated(event) surface.create_decoratives { check_collision = false, decoratives = { - { name = 'rock-medium', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } + { name = 'medium-rock', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } } } end @@ -421,7 +421,7 @@ local function on_chunk_generated(event) surface.create_decoratives { check_collision = false, decoratives = { - { name = 'rock-small', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } + { name = 'small-rock', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } } } end @@ -429,7 +429,7 @@ local function on_chunk_generated(event) surface.create_decoratives { check_collision = false, decoratives = { - { name = 'rock-tiny', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } + { name = 'tiny-rock', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } } } end diff --git a/maps/mountain_fortress_v2/terrain.lua b/maps/mountain_fortress_v2/terrain.lua index 01883bd1..f47d2259 100644 --- a/maps/mountain_fortress_v2/terrain.lua +++ b/maps/mountain_fortress_v2/terrain.lua @@ -7,7 +7,7 @@ local math_random = math.random local math_floor = math.floor local math_abs = math.abs local simplex_noise = require 'utils.simplex_noise'.d2 -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local wagon_raffle = { 'cargo-wagon', 'cargo-wagon', 'cargo-wagon', 'locomotive', 'fluid-wagon' } local size_of_rock_raffle = #rock_raffle local spawner_raffle = { 'biter-spawner', 'biter-spawner', 'biter-spawner', 'spitter-spawner' } @@ -1035,7 +1035,7 @@ local function border_chunk(surface, left_top) surface.create_decoratives { check_collision = false, decoratives = { - { name = 'rock-medium', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } + { name = 'medium-rock', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } } } end @@ -1043,7 +1043,7 @@ local function border_chunk(surface, left_top) surface.create_decoratives { check_collision = false, decoratives = { - { name = 'rock-small', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } + { name = 'small-rock', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } } } end @@ -1051,7 +1051,7 @@ local function border_chunk(surface, left_top) surface.create_decoratives { check_collision = false, decoratives = { - { name = 'rock-tiny', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } + { name = 'tiny-rock', position = pos, amount = math_random(1, 1 + math.ceil(20 - y / 2)) } } } end diff --git a/maps/mountain_fortress_v3/gui.lua b/maps/mountain_fortress_v3/gui.lua index dc94ba60..66939c08 100644 --- a/maps/mountain_fortress_v3/gui.lua +++ b/maps/mountain_fortress_v3/gui.lua @@ -629,7 +629,7 @@ function Public.update_gui(player) gui.global_pool.tooltip = ({ 'gui.global_pool_amount', floor(rpg_extra.global_pool) }) end - gui.scrap_mined.caption = ' [img=entity.tree-01][img=entity.rock-huge]: ' .. format_number(mined_scrap, true) + gui.scrap_mined.caption = ' [img=entity.tree-01][img=entity.huge-rock]: ' .. format_number(mined_scrap, true) gui.scrap_mined.tooltip = ({ 'gui.amount_harvested' }) local pickaxe_upgrades = Public.pickaxe_upgrades diff --git a/maps/mountain_race/terrain.lua b/maps/mountain_race/terrain.lua index fcbd2f53..63252164 100644 --- a/maps/mountain_race/terrain.lua +++ b/maps/mountain_race/terrain.lua @@ -6,7 +6,7 @@ local GetNoise = require 'utils.get_noise' local LootRaffle = require 'utils.functions.loot_raffle' local wagon_raffle = { 'cargo-wagon', 'cargo-wagon', 'cargo-wagon', 'locomotive', 'fluid-wagon' } -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local function draw_border(surface, left_x, height) local tiles = {} diff --git a/maps/planet_prison.lua b/maps/planet_prison.lua index f9ed20fa..ddf5fab6 100644 --- a/maps/planet_prison.lua +++ b/maps/planet_prison.lua @@ -394,9 +394,9 @@ local swampy_rivers_layers = { type = 'LuaEntity', name = 'rocky', objects = { - 'sand-rock-big', - 'rock-big', - 'rock-huge' + 'big-sand-rock', + 'big-rock', + 'huge-rock' }, elevation = 0.5, resolution = 0.1, @@ -1384,9 +1384,9 @@ local valid_ents = { ['crash-site-spaceship-wreck-small-5'] = true, ['crash-site-spaceship-wreck-small-6'] = true, ['mineable-wreckage'] = true, - ['sand-rock-big'] = true, - ['rock-big'] = true, - ['rock-huge'] = true + ['big-sand-rock'] = true, + ['big-rock'] = true, + ['huge-rock'] = true } local function mined_wreckage(e) diff --git a/maps/quarters.lua b/maps/quarters.lua index 55033521..6ee8db21 100644 --- a/maps/quarters.lua +++ b/maps/quarters.lua @@ -98,7 +98,7 @@ local function spawn_area(event) end if noise < -0.75 then if math.random(1, 16) == 1 then - event.surface.create_entity({ name = 'rock-big', position = p, force = 'neutral' }) + event.surface.create_entity({ name = 'big-rock', position = p, force = 'neutral' }) end end end diff --git a/maps/rivers.lua b/maps/rivers.lua index 9882a43a..e1e8d928 100644 --- a/maps/rivers.lua +++ b/maps/rivers.lua @@ -16,7 +16,7 @@ local disabled_for_deconstruction = { ['fish'] = true } -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local tile_replacements = { ['water'] = 'grass-2', diff --git a/maps/rocky_waste.lua b/maps/rocky_waste.lua index d5f1d0e2..86b2b63f 100644 --- a/maps/rocky_waste.lua +++ b/maps/rocky_waste.lua @@ -54,7 +54,7 @@ local function init_surface() return surface end -local wastes = { 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'mineable-wreckage', 'mineable-wreckage', 'mineable-wreckage', 'rock-huge' } +local wastes = { 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'mineable-wreckage', 'mineable-wreckage', 'mineable-wreckage', 'huge-rock' } local function get_noise(name, pos) local seed = game.surfaces[1].map_gen_settings.seed @@ -106,7 +106,7 @@ local function process_tile(surface, pos) end if math.random(1, 6) ~= 1 then - surface.create_entity({ name = 'rock-big', position = pos, force = 'neutral' }) + surface.create_entity({ name = 'big-rock', position = pos, force = 'neutral' }) end end @@ -131,19 +131,19 @@ local function on_chunk_generated(event) end for _, e in pairs(surface.find_entities_filtered({ type = 'unit-spawner', area = event.area })) do - clear_entities_around_position(surface, 7, e.position, { 'rock-big' }) + clear_entities_around_position(surface, 7, e.position, { 'big-rock' }) end for _, e in pairs(surface.find_entities_filtered({ type = 'cliff', area = event.area })) do - clear_entities_around_position(surface, 2.25, e.position, { 'rock-big' }) + clear_entities_around_position(surface, 2.25, e.position, { 'big-rock' }) end for _, e in pairs(surface.find_entities_filtered({ type = 'tree', area = event.area })) do - clear_entities_around_position(surface, 1, e.position, { 'rock-big' }) + clear_entities_around_position(surface, 1, e.position, { 'big-rock' }) end if left_top.x == 128 and left_top.y == 128 then - clear_entities_around_position(surface, 5, { x = 0, y = 0 }, { 'rock-big' }) + clear_entities_around_position(surface, 5, { x = 0, y = 0 }, { 'big-rock' }) end end diff --git a/maps/scrap_towny_ffa/nauvis.lua b/maps/scrap_towny_ffa/nauvis.lua index 4abd5948..b534c124 100644 --- a/maps/scrap_towny_ffa/nauvis.lua +++ b/maps/scrap_towny_ffa/nauvis.lua @@ -160,18 +160,18 @@ function Public.initialize(init) mgs.autoplace_settings = { entity = { settings = { - ['rock-huge'] = { frequency = 2, size = 1, richness = 1 }, - ['rock-big'] = { frequency = 2, size = 1, richness = 1 }, - ['sand-rock-big'] = { frequency = 2, size = 1, richness = 1 } + ['huge-rock'] = { frequency = 2, size = 1, richness = 1 }, + ['big-rock'] = { frequency = 2, size = 1, richness = 1 }, + ['big-sand-rock'] = { frequency = 2, size = 1, richness = 1 } } }, decorative = { settings = { - ['rock-tiny'] = { frequency = 10, size = 'normal', richness = 'normal' }, - ['rock-small'] = { frequency = 5, size = 'normal', richness = 'normal' }, - ['rock-medium'] = { frequency = 2, size = 'normal', richness = 'normal' }, - ['sand-rock-small'] = { frequency = 10, size = 'normal', richness = 'normal' }, - ['sand-rock-medium'] = { frequency = 5, size = 'normal', richness = 'normal' } + ['tiny-rock'] = { frequency = 10, size = 'normal', richness = 'normal' }, + ['small-rock'] = { frequency = 5, size = 'normal', richness = 'normal' }, + ['medium-rock'] = { frequency = 2, size = 'normal', richness = 'normal' }, + ['sand-small-rock'] = { frequency = 10, size = 'normal', richness = 'normal' }, + ['sand-medium-rock'] = { frequency = 5, size = 'normal', richness = 'normal' } } }, tile = { @@ -258,7 +258,7 @@ function Public.initialize(init) surface.freeze_daytime = false -- surface.map_gen_settings.water = 0.5 surface.clear(true) - surface.regenerate_entity({ 'rock-huge', 'rock-big', 'sand-rock-big' }) + surface.regenerate_entity({ 'huge-rock', 'big-rock', 'big-sand-rock' }) surface.regenerate_decorative() end diff --git a/maps/scrap_towny_ffa/rocks_yield_ore_veins.lua b/maps/scrap_towny_ffa/rocks_yield_ore_veins.lua index 09e6911f..0eb5da60 100644 --- a/maps/scrap_towny_ffa/rocks_yield_ore_veins.lua +++ b/maps/scrap_towny_ffa/rocks_yield_ore_veins.lua @@ -8,9 +8,9 @@ local table_shuffle = table.shuffle_table local valid_entities = { - ['rock-big'] = true, - ['rock-huge'] = true, - ['sand-rock-big'] = true + ['big-rock'] = true, + ['huge-rock'] = true, + ['big-sand-rock'] = true } local size_raffle = { diff --git a/maps/spiral_troopers.lua b/maps/spiral_troopers.lua index c7beeebb..15f7e20b 100644 --- a/maps/spiral_troopers.lua +++ b/maps/spiral_troopers.lua @@ -22,129 +22,129 @@ local function treasure_chest(position, surface) local math_random = math.random local chest_raffle = {} local chest_loot = { - { { name = 'submachine-gun', count = math_random(1, 3) }, weight = 3, evolution_min = 0.0, evolution_max = 0.1 }, - { { name = 'slowdown-capsule', count = math_random(16, 32) }, weight = 1, evolution_min = 0.0, evolution_max = 1 }, - { { name = 'poison-capsule', count = math_random(16, 32) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'uranium-cannon-shell', count = math_random(16, 32) }, weight = 5, evolution_min = 0.6, evolution_max = 1 }, - { { name = 'cannon-shell', count = math_random(16, 32) }, weight = 5, evolution_min = 0.4, evolution_max = 0.7 }, - { { name = 'explosive-uranium-cannon-shell', count = math_random(16, 32) }, weight = 5, evolution_min = 0.6, evolution_max = 1 }, - { { name = 'explosive-cannon-shell', count = math_random(16, 32) }, weight = 5, evolution_min = 0.4, evolution_max = 0.8 }, - { { name = 'shotgun', count = 1 }, weight = 2, evolution_min = 0.0, evolution_max = 0.2 }, - { { name = 'shotgun-shell', count = math_random(16, 32) }, weight = 5, evolution_min = 0.0, evolution_max = 0.2 }, - { { name = 'combat-shotgun', count = 1 }, weight = 10, evolution_min = 0.3, evolution_max = 0.8 }, - { { name = 'piercing-shotgun-shell', count = math_random(16, 32) }, weight = 10, evolution_min = 0.2, evolution_max = 1 }, - { { name = 'flamethrower', count = 1 }, weight = 3, evolution_min = 0.3, evolution_max = 0.6 }, - { { name = 'flamethrower-ammo', count = math_random(16, 32) }, weight = 5, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'rocket-launcher', count = 1 }, weight = 5, evolution_min = 0.2, evolution_max = 0.6 }, - { { name = 'rocket', count = math_random(16, 32) }, weight = 10, evolution_min = 0.2, evolution_max = 0.7 }, - { { name = 'explosive-rocket', count = math_random(16, 32) }, weight = 10, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'land-mine', count = math_random(8, 16) }, weight = 10, evolution_min = 0.2, evolution_max = 0.7 }, - { { name = 'grenade', count = math_random(8, 16) }, weight = 10, evolution_min = 0.0, evolution_max = 0.5 }, - { { name = 'cluster-grenade', count = math_random(8, 16) }, weight = 5, evolution_min = 0.4, evolution_max = 1 }, - { { name = 'firearm-magazine', count = math_random(32, 128) }, weight = 10, evolution_min = 0, evolution_max = 0.3 }, - { { name = 'piercing-rounds-magazine', count = math_random(32, 128) }, weight = 10, evolution_min = 0.1, evolution_max = 0.8 }, - { { name = 'uranium-rounds-magazine', count = math_random(32, 128) }, weight = 10, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'defender-capsule', count = math_random(8, 16) }, weight = 10, evolution_min = 0.0, evolution_max = 0.7 }, - { { name = 'distractor-capsule', count = math_random(8, 16) }, weight = 10, evolution_min = 0.2, evolution_max = 1 }, - { { name = 'destroyer-capsule', count = math_random(8, 16) }, weight = 10, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'atomic-bomb', count = math_random(1, 2) }, weight = 1, evolution_min = 0.2, evolution_max = 1 }, - { { name = 'light-armor', count = 1 }, weight = 3, evolution_min = 0, evolution_max = 0.1 }, - { { name = 'heavy-armor', count = 1 }, weight = 3, evolution_min = 0.1, evolution_max = 0.3 }, - { { name = 'modular-armor', count = 1 }, weight = 2, evolution_min = 0.2, evolution_max = 0.6 }, - { { name = 'power-armor', count = 1 }, weight = 2, evolution_min = 0.4, evolution_max = 1 }, - { { name = 'power-armor-mk2', count = 1 }, weight = 1, evolution_min = 0.8, evolution_max = 1 }, - { { name = 'battery-equipment', count = 1 }, weight = 2, evolution_min = 0.3, evolution_max = 0.7 }, - { { name = 'battery-mk2-equipment', count = 1 }, weight = 2, evolution_min = 0.6, evolution_max = 1 }, - { { name = 'belt-immunity-equipment', count = 1 }, weight = 1, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'solar-panel-equipment', count = math_random(1, 4) }, weight = 5, evolution_min = 0.3, evolution_max = 0.8 }, - { { name = 'discharge-defense-equipment', count = 1 }, weight = 1, evolution_min = 0.5, evolution_max = 0.8 }, - { { name = 'energy-shield-equipment', count = math_random(1, 2) }, weight = 2, evolution_min = 0.3, evolution_max = 0.8 }, - { { name = 'energy-shield-mk2-equipment', count = 1 }, weight = 2, evolution_min = 0.7, evolution_max = 1 }, - { { name = 'exoskeleton-equipment', count = 1 }, weight = 1, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'fusion-reactor-equipment', count = 1 }, weight = 1, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'night-vision-equipment', count = 1 }, weight = 1, evolution_min = 0.3, evolution_max = 0.8 }, - { { name = 'personal-laser-defense-equipment', count = 1 }, weight = 2, evolution_min = 0.4, evolution_max = 1 }, - { { name = 'exoskeleton-equipment', count = 1 }, weight = 1, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'iron-gear-wheel', count = math_random(80, 100) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, - { { name = 'copper-cable', count = math_random(100, 200) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, - { { name = 'engine-unit', count = math_random(16, 32) }, weight = 2, evolution_min = 0.1, evolution_max = 0.5 }, - { { name = 'electric-engine-unit', count = math_random(16, 32) }, weight = 2, evolution_min = 0.4, evolution_max = 0.8 }, - { { name = 'battery', count = math_random(100, 200) }, weight = 2, evolution_min = 0.3, evolution_max = 0.8 }, - { { name = 'advanced-circuit', count = math_random(100, 200) }, weight = 3, evolution_min = 0.4, evolution_max = 1 }, - { { name = 'electronic-circuit', count = math_random(100, 200) }, weight = 3, evolution_min = 0.0, evolution_max = 0.4 }, - { { name = 'processing-unit', count = math_random(100, 200) }, weight = 3, evolution_min = 0.7, evolution_max = 1 }, - { { name = 'explosives', count = math_random(25, 50) }, weight = 1, evolution_min = 0.2, evolution_max = 0.6 }, - { { name = 'lubricant-barrel', count = math_random(4, 10) }, weight = 1, evolution_min = 0.3, evolution_max = 0.5 }, - { { name = 'rocket-fuel', count = math_random(4, 10) }, weight = 2, evolution_min = 0.3, evolution_max = 0.7 }, - { { name = 'steel-plate', count = math_random(50, 100) }, weight = 2, evolution_min = 0.1, evolution_max = 0.3 }, - { { name = 'nuclear-fuel', count = 1 }, weight = 2, evolution_min = 0.7, evolution_max = 1 }, - { { name = 'burner-inserter', count = math_random(16, 32) }, weight = 3, evolution_min = 0.0, evolution_max = 0.1 }, - { { name = 'inserter', count = math_random(16, 32) }, weight = 3, evolution_min = 0.0, evolution_max = 0.4 }, - { { name = 'long-handed-inserter', count = math_random(16, 32) }, weight = 3, evolution_min = 0.0, evolution_max = 0.4 }, - { { name = 'fast-inserter', count = math_random(16, 32) }, weight = 3, evolution_min = 0.1, evolution_max = 1 }, - { { name = 'bulk-inserter', count = math_random(4, 8) }, weight = 1, evolution_min = 0.4, evolution_max = 1 }, - { { name = 'stack-inserter', count = math_random(4, 8) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'small-electric-pole', count = math_random(8, 16) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, - { { name = 'medium-electric-pole', count = math_random(8, 16) }, weight = 3, evolution_min = 0.2, evolution_max = 1 }, - { { name = 'big-electric-pole', count = math_random(8, 16) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'substation', count = math_random(4, 8) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'wooden-chest', count = math_random(8, 16) }, weight = 3, evolution_min = 0.0, evolution_max = 0.2 }, - { { name = 'iron-chest', count = math_random(8, 16) }, weight = 3, evolution_min = 0.1, evolution_max = 0.4 }, - { { name = 'steel-chest', count = math_random(8, 16) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'small-lamp', count = math_random(8, 16) }, weight = 3, evolution_min = 0.1, evolution_max = 0.3 }, - { { name = 'rail', count = math_random(50, 100) }, weight = 3, evolution_min = 0.1, evolution_max = 0.6 }, - { { name = 'assembling-machine-1', count = math_random(2, 4) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, - { { name = 'assembling-machine-2', count = math_random(2, 4) }, weight = 3, evolution_min = 0.2, evolution_max = 0.8 }, - { { name = 'assembling-machine-3', count = math_random(2, 4) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'accumulator', count = math_random(4, 8) }, weight = 3, evolution_min = 0.4, evolution_max = 1 }, - { { name = 'offshore-pump', count = math_random(2, 4) }, weight = 2, evolution_min = 0.0, evolution_max = 0.1 }, - { { name = 'beacon', count = math_random(2, 4) }, weight = 3, evolution_min = 0.7, evolution_max = 1 }, - { { name = 'boiler', count = math_random(4, 8) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, - { { name = 'steam-engine', count = math_random(4, 8) }, weight = 3, evolution_min = 0.0, evolution_max = 0.5 }, - { { name = 'steam-turbine', count = math_random(2, 4) }, weight = 2, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'nuclear-reactor', count = 1 }, weight = 1, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'centrifuge', count = math_random(1, 2) }, weight = 2, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'heat-pipe', count = math_random(8, 16) }, weight = 2, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'heat-exchanger', count = math_random(4, 8) }, weight = 2, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'arithmetic-combinator', count = math_random(25, 50) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, - { { name = 'constant-combinator', count = math_random(25, 50) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, - { { name = 'decider-combinator', count = math_random(25, 50) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, - { { name = 'power-switch', count = math_random(8, 16) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, - { { name = 'programmable-speaker', count = math_random(8, 16) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, - { { name = 'green-wire', count = math_random(100, 200) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, - { { name = 'red-wire', count = math_random(100, 200) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, - { { name = 'chemical-plant', count = math_random(2, 4) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'burner-mining-drill', count = math_random(8, 16) }, weight = 3, evolution_min = 0.0, evolution_max = 0.2 }, - { { name = 'electric-mining-drill', count = math_random(4, 8) }, weight = 3, evolution_min = 0.2, evolution_max = 0.6 }, - { { name = 'express-transport-belt', count = math_random(50, 100) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'express-underground-belt', count = math_random(4, 16) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'express-splitter', count = math_random(8, 16) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'fast-transport-belt', count = math_random(50, 100) }, weight = 3, evolution_min = 0.2, evolution_max = 0.7 }, - { { name = 'fast-underground-belt', count = math_random(4, 16) }, weight = 3, evolution_min = 0.2, evolution_max = 0.7 }, - { { name = 'fast-splitter', count = math_random(8, 16) }, weight = 3, evolution_min = 0.2, evolution_max = 0.3 }, - { { name = 'transport-belt', count = math_random(50, 100) }, weight = 3, evolution_min = 0, evolution_max = 0.3 }, - { { name = 'underground-belt', count = math_random(4, 16) }, weight = 3, evolution_min = 0, evolution_max = 0.3 }, - { { name = 'splitter', count = math_random(8, 16) }, weight = 3, evolution_min = 0, evolution_max = 0.3 }, - { { name = 'oil-refinery', count = math_random(1, 2) }, weight = 2, evolution_min = 0.3, evolution_max = 1 }, - { { name = 'pipe', count = math_random(40, 50) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, - { { name = 'pipe-to-ground', count = math_random(25, 50) }, weight = 1, evolution_min = 0.2, evolution_max = 0.5 }, - { { name = 'pumpjack', count = math_random(2, 4) }, weight = 1, evolution_min = 0.3, evolution_max = 0.8 }, - { { name = 'pump', count = math_random(2, 4) }, weight = 1, evolution_min = 0.3, evolution_max = 0.8 }, - { { name = 'solar-panel', count = math_random(4, 8) }, weight = 3, evolution_min = 0.4, evolution_max = 0.9 }, - { { name = 'electric-furnace', count = math_random(2, 4) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'steel-furnace', count = math_random(4, 8) }, weight = 3, evolution_min = 0.2, evolution_max = 0.7 }, - { { name = 'stone-furnace', count = math_random(8, 16) }, weight = 3, evolution_min = 0.0, evolution_max = 0.1 }, - { { name = 'radar', count = math_random(1, 2) }, weight = 1, evolution_min = 0.1, evolution_max = 0.3 }, - { { name = 'rail-signal', count = math_random(8, 16) }, weight = 2, evolution_min = 0.2, evolution_max = 0.8 }, - { { name = 'rail-chain-signal', count = math_random(8, 16) }, weight = 2, evolution_min = 0.2, evolution_max = 0.8 }, - { { name = 'stone-wall', count = math_random(50, 100) }, weight = 1, evolution_min = 0.1, evolution_max = 0.5 }, - { { name = 'gate', count = math_random(8, 16) }, weight = 1, evolution_min = 0.1, evolution_max = 0.5 }, - { { name = 'storage-tank', count = math_random(4, 8) }, weight = 3, evolution_min = 0.3, evolution_max = 0.6 }, - { { name = 'train-stop', count = math_random(2, 4) }, weight = 1, evolution_min = 0.2, evolution_max = 0.7 }, - { { name = 'express-loader', count = math_random(1, 2) }, weight = 1, evolution_min = 0.5, evolution_max = 1 }, - { { name = 'fast-loader', count = math_random(1, 2) }, weight = 1, evolution_min = 0.2, evolution_max = 0.7 }, - { { name = 'loader', count = math_random(1, 2) }, weight = 1, evolution_min = 0.0, evolution_max = 0.5 }, - { { name = 'lab', count = math_random(2, 4) }, weight = 2, evolution_min = 0.0, evolution_max = 0.1 } + { { name = 'submachine-gun', count = math_random(1, 3) }, weight = 3, evolution_min = 0.0, evolution_max = 0.1 }, + { { name = 'slowdown-capsule', count = math_random(16, 32) }, weight = 1, evolution_min = 0.0, evolution_max = 1 }, + { { name = 'poison-capsule', count = math_random(16, 32) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'uranium-cannon-shell', count = math_random(16, 32) }, weight = 5, evolution_min = 0.6, evolution_max = 1 }, + { { name = 'cannon-shell', count = math_random(16, 32) }, weight = 5, evolution_min = 0.4, evolution_max = 0.7 }, + { { name = 'explosive-uranium-cannon-shell', count = math_random(16, 32) }, weight = 5, evolution_min = 0.6, evolution_max = 1 }, + { { name = 'explosive-cannon-shell', count = math_random(16, 32) }, weight = 5, evolution_min = 0.4, evolution_max = 0.8 }, + { { name = 'shotgun', count = 1 }, weight = 2, evolution_min = 0.0, evolution_max = 0.2 }, + { { name = 'shotgun-shell', count = math_random(16, 32) }, weight = 5, evolution_min = 0.0, evolution_max = 0.2 }, + { { name = 'combat-shotgun', count = 1 }, weight = 10, evolution_min = 0.3, evolution_max = 0.8 }, + { { name = 'piercing-shotgun-shell', count = math_random(16, 32) }, weight = 10, evolution_min = 0.2, evolution_max = 1 }, + { { name = 'flamethrower', count = 1 }, weight = 3, evolution_min = 0.3, evolution_max = 0.6 }, + { { name = 'flamethrower-ammo', count = math_random(16, 32) }, weight = 5, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'rocket-launcher', count = 1 }, weight = 5, evolution_min = 0.2, evolution_max = 0.6 }, + { { name = 'rocket', count = math_random(16, 32) }, weight = 10, evolution_min = 0.2, evolution_max = 0.7 }, + { { name = 'explosive-rocket', count = math_random(16, 32) }, weight = 10, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'land-mine', count = math_random(8, 16) }, weight = 10, evolution_min = 0.2, evolution_max = 0.7 }, + { { name = 'grenade', count = math_random(8, 16) }, weight = 10, evolution_min = 0.0, evolution_max = 0.5 }, + { { name = 'cluster-grenade', count = math_random(8, 16) }, weight = 5, evolution_min = 0.4, evolution_max = 1 }, + { { name = 'firearm-magazine', count = math_random(32, 128) }, weight = 10, evolution_min = 0, evolution_max = 0.3 }, + { { name = 'piercing-rounds-magazine', count = math_random(32, 128) }, weight = 10, evolution_min = 0.1, evolution_max = 0.8 }, + { { name = 'uranium-rounds-magazine', count = math_random(32, 128) }, weight = 10, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'defender-capsule', count = math_random(8, 16) }, weight = 10, evolution_min = 0.0, evolution_max = 0.7 }, + { { name = 'distractor-capsule', count = math_random(8, 16) }, weight = 10, evolution_min = 0.2, evolution_max = 1 }, + { { name = 'destroyer-capsule', count = math_random(8, 16) }, weight = 10, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'atomic-bomb', count = math_random(1, 2) }, weight = 1, evolution_min = 0.2, evolution_max = 1 }, + { { name = 'light-armor', count = 1 }, weight = 3, evolution_min = 0, evolution_max = 0.1 }, + { { name = 'heavy-armor', count = 1 }, weight = 3, evolution_min = 0.1, evolution_max = 0.3 }, + { { name = 'modular-armor', count = 1 }, weight = 2, evolution_min = 0.2, evolution_max = 0.6 }, + { { name = 'power-armor', count = 1 }, weight = 2, evolution_min = 0.4, evolution_max = 1 }, + { { name = 'power-armor-mk2', count = 1 }, weight = 1, evolution_min = 0.8, evolution_max = 1 }, + { { name = 'battery-equipment', count = 1 }, weight = 2, evolution_min = 0.3, evolution_max = 0.7 }, + { { name = 'battery-mk2-equipment', count = 1 }, weight = 2, evolution_min = 0.6, evolution_max = 1 }, + { { name = 'belt-immunity-equipment', count = 1 }, weight = 1, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'solar-panel-equipment', count = math_random(1, 4) }, weight = 5, evolution_min = 0.3, evolution_max = 0.8 }, + { { name = 'discharge-defense-equipment', count = 1 }, weight = 1, evolution_min = 0.5, evolution_max = 0.8 }, + { { name = 'energy-shield-equipment', count = math_random(1, 2) }, weight = 2, evolution_min = 0.3, evolution_max = 0.8 }, + { { name = 'energy-shield-mk2-equipment', count = 1 }, weight = 2, evolution_min = 0.7, evolution_max = 1 }, + { { name = 'exoskeleton-equipment', count = 1 }, weight = 1, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'fusion-reactor-equipment', count = 1 }, weight = 1, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'night-vision-equipment', count = 1 }, weight = 1, evolution_min = 0.3, evolution_max = 0.8 }, + { { name = 'personal-laser-defense-equipment', count = 1 }, weight = 2, evolution_min = 0.4, evolution_max = 1 }, + { { name = 'exoskeleton-equipment', count = 1 }, weight = 1, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'iron-gear-wheel', count = math_random(80, 100) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, + { { name = 'copper-cable', count = math_random(100, 200) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, + { { name = 'engine-unit', count = math_random(16, 32) }, weight = 2, evolution_min = 0.1, evolution_max = 0.5 }, + { { name = 'electric-engine-unit', count = math_random(16, 32) }, weight = 2, evolution_min = 0.4, evolution_max = 0.8 }, + { { name = 'battery', count = math_random(100, 200) }, weight = 2, evolution_min = 0.3, evolution_max = 0.8 }, + { { name = 'advanced-circuit', count = math_random(100, 200) }, weight = 3, evolution_min = 0.4, evolution_max = 1 }, + { { name = 'electronic-circuit', count = math_random(100, 200) }, weight = 3, evolution_min = 0.0, evolution_max = 0.4 }, + { { name = 'processing-unit', count = math_random(100, 200) }, weight = 3, evolution_min = 0.7, evolution_max = 1 }, + { { name = 'explosives', count = math_random(25, 50) }, weight = 1, evolution_min = 0.2, evolution_max = 0.6 }, + { { name = 'lubricant-barrel', count = math_random(4, 10) }, weight = 1, evolution_min = 0.3, evolution_max = 0.5 }, + { { name = 'rocket-fuel', count = math_random(4, 10) }, weight = 2, evolution_min = 0.3, evolution_max = 0.7 }, + { { name = 'steel-plate', count = math_random(50, 100) }, weight = 2, evolution_min = 0.1, evolution_max = 0.3 }, + { { name = 'nuclear-fuel', count = 1 }, weight = 2, evolution_min = 0.7, evolution_max = 1 }, + { { name = 'burner-inserter', count = math_random(16, 32) }, weight = 3, evolution_min = 0.0, evolution_max = 0.1 }, + { { name = 'inserter', count = math_random(16, 32) }, weight = 3, evolution_min = 0.0, evolution_max = 0.4 }, + { { name = 'long-handed-inserter', count = math_random(16, 32) }, weight = 3, evolution_min = 0.0, evolution_max = 0.4 }, + { { name = 'fast-inserter', count = math_random(16, 32) }, weight = 3, evolution_min = 0.1, evolution_max = 1 }, + { { name = 'bulk-inserter', count = math_random(4, 8) }, weight = 1, evolution_min = 0.4, evolution_max = 1 }, + { { name = 'stack-inserter', count = math_random(4, 8) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'small-electric-pole', count = math_random(8, 16) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, + { { name = 'medium-electric-pole', count = math_random(8, 16) }, weight = 3, evolution_min = 0.2, evolution_max = 1 }, + { { name = 'big-electric-pole', count = math_random(8, 16) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'substation', count = math_random(4, 8) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'wooden-chest', count = math_random(8, 16) }, weight = 3, evolution_min = 0.0, evolution_max = 0.2 }, + { { name = 'iron-chest', count = math_random(8, 16) }, weight = 3, evolution_min = 0.1, evolution_max = 0.4 }, + { { name = 'steel-chest', count = math_random(8, 16) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'small-lamp', count = math_random(8, 16) }, weight = 3, evolution_min = 0.1, evolution_max = 0.3 }, + { { name = 'rail', count = math_random(50, 100) }, weight = 3, evolution_min = 0.1, evolution_max = 0.6 }, + { { name = 'assembling-machine-1', count = math_random(2, 4) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, + { { name = 'assembling-machine-2', count = math_random(2, 4) }, weight = 3, evolution_min = 0.2, evolution_max = 0.8 }, + { { name = 'assembling-machine-3', count = math_random(2, 4) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'accumulator', count = math_random(4, 8) }, weight = 3, evolution_min = 0.4, evolution_max = 1 }, + { { name = 'offshore-pump', count = math_random(2, 4) }, weight = 2, evolution_min = 0.0, evolution_max = 0.1 }, + { { name = 'beacon', count = math_random(2, 4) }, weight = 3, evolution_min = 0.7, evolution_max = 1 }, + { { name = 'boiler', count = math_random(4, 8) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, + { { name = 'steam-engine', count = math_random(4, 8) }, weight = 3, evolution_min = 0.0, evolution_max = 0.5 }, + { { name = 'steam-turbine', count = math_random(2, 4) }, weight = 2, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'nuclear-reactor', count = 1 }, weight = 1, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'centrifuge', count = math_random(1, 2) }, weight = 2, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'heat-pipe', count = math_random(8, 16) }, weight = 2, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'heat-exchanger', count = math_random(4, 8) }, weight = 2, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'arithmetic-combinator', count = math_random(25, 50) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, + { { name = 'constant-combinator', count = math_random(25, 50) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, + { { name = 'decider-combinator', count = math_random(25, 50) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, + { { name = 'power-switch', count = math_random(8, 16) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, + { { name = 'programmable-speaker', count = math_random(8, 16) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, + { { name = 'green-wire', count = math_random(100, 200) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, + { { name = 'red-wire', count = math_random(100, 200) }, weight = 1, evolution_min = 0.1, evolution_max = 1 }, + { { name = 'chemical-plant', count = math_random(2, 4) }, weight = 3, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'burner-mining-drill', count = math_random(8, 16) }, weight = 3, evolution_min = 0.0, evolution_max = 0.2 }, + { { name = 'electric-mining-drill', count = math_random(4, 8) }, weight = 3, evolution_min = 0.2, evolution_max = 0.6 }, + { { name = 'express-transport-belt', count = math_random(50, 100) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'express-underground-belt', count = math_random(4, 16) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'express-splitter', count = math_random(8, 16) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'fast-transport-belt', count = math_random(50, 100) }, weight = 3, evolution_min = 0.2, evolution_max = 0.7 }, + { { name = 'fast-underground-belt', count = math_random(4, 16) }, weight = 3, evolution_min = 0.2, evolution_max = 0.7 }, + { { name = 'fast-splitter', count = math_random(8, 16) }, weight = 3, evolution_min = 0.2, evolution_max = 0.3 }, + { { name = 'transport-belt', count = math_random(50, 100) }, weight = 3, evolution_min = 0, evolution_max = 0.3 }, + { { name = 'underground-belt', count = math_random(4, 16) }, weight = 3, evolution_min = 0, evolution_max = 0.3 }, + { { name = 'splitter', count = math_random(8, 16) }, weight = 3, evolution_min = 0, evolution_max = 0.3 }, + { { name = 'oil-refinery', count = math_random(1, 2) }, weight = 2, evolution_min = 0.3, evolution_max = 1 }, + { { name = 'pipe', count = math_random(40, 50) }, weight = 3, evolution_min = 0.0, evolution_max = 0.3 }, + { { name = 'pipe-to-ground', count = math_random(25, 50) }, weight = 1, evolution_min = 0.2, evolution_max = 0.5 }, + { { name = 'pumpjack', count = math_random(2, 4) }, weight = 1, evolution_min = 0.3, evolution_max = 0.8 }, + { { name = 'pump', count = math_random(2, 4) }, weight = 1, evolution_min = 0.3, evolution_max = 0.8 }, + { { name = 'solar-panel', count = math_random(4, 8) }, weight = 3, evolution_min = 0.4, evolution_max = 0.9 }, + { { name = 'electric-furnace', count = math_random(2, 4) }, weight = 3, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'steel-furnace', count = math_random(4, 8) }, weight = 3, evolution_min = 0.2, evolution_max = 0.7 }, + { { name = 'stone-furnace', count = math_random(8, 16) }, weight = 3, evolution_min = 0.0, evolution_max = 0.1 }, + { { name = 'radar', count = math_random(1, 2) }, weight = 1, evolution_min = 0.1, evolution_max = 0.3 }, + { { name = 'rail-signal', count = math_random(8, 16) }, weight = 2, evolution_min = 0.2, evolution_max = 0.8 }, + { { name = 'rail-chain-signal', count = math_random(8, 16) }, weight = 2, evolution_min = 0.2, evolution_max = 0.8 }, + { { name = 'stone-wall', count = math_random(50, 100) }, weight = 1, evolution_min = 0.1, evolution_max = 0.5 }, + { { name = 'gate', count = math_random(8, 16) }, weight = 1, evolution_min = 0.1, evolution_max = 0.5 }, + { { name = 'storage-tank', count = math_random(4, 8) }, weight = 3, evolution_min = 0.3, evolution_max = 0.6 }, + { { name = 'train-stop', count = math_random(2, 4) }, weight = 1, evolution_min = 0.2, evolution_max = 0.7 }, + { { name = 'express-loader', count = math_random(1, 2) }, weight = 1, evolution_min = 0.5, evolution_max = 1 }, + { { name = 'fast-loader', count = math_random(1, 2) }, weight = 1, evolution_min = 0.2, evolution_max = 0.7 }, + { { name = 'loader', count = math_random(1, 2) }, weight = 1, evolution_min = 0.0, evolution_max = 0.5 }, + { { name = 'lab', count = math_random(2, 4) }, weight = 2, evolution_min = 0.0, evolution_max = 0.1 } } local level = storage.spiral_troopers_level / 40 @@ -239,7 +239,7 @@ local function level_finished() game.forces.player.chart(surface, { { x = -1 * radius, y = -1 * radius }, { x = radius, y = radius } }) end -local rock_raffle = { 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local ore_rotation = { 'iron-ore', 'copper-ore', 'coal', 'stone' } local function get_furthest_chunk() diff --git a/maps/spooky_forest.lua b/maps/spooky_forest.lua index 6a121c43..de3d00fe 100644 --- a/maps/spooky_forest.lua +++ b/maps/spooky_forest.lua @@ -73,7 +73,7 @@ local biters_in_the_trees = { [20] = { 'behemoth-biter', 'behemoth-biter', 'behemoth-biter', 'behemoth-biter', 'behemoth-spitter', 'behemoth-spitter' } } -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local function secret_shop(pos, surface) local secret_market_items = { @@ -610,9 +610,9 @@ end local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['tree-02'] = true, ['tree-04'] = true, ['dead-tree-desert'] = true diff --git a/maps/stone_maze/main.lua b/maps/stone_maze/main.lua index 0381279a..8caf4fd1 100644 --- a/maps/stone_maze/main.lua +++ b/maps/stone_maze/main.lua @@ -24,9 +24,9 @@ local math_random = math.random local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['mineable-wreckage'] = true } @@ -39,7 +39,7 @@ map_functions = require 'utils.tools.map_functions' grid_size = 24 --manual_mining_speed_modifier = 1 main_ground_tile = 'dirt-3' -rock_raffle = { 'rock-huge', 'rock-big', 'rock-big', 'rock-big' } +rock_raffle = { 'huge-rock', 'big-rock', 'big-rock', 'big-rock' } tree_raffle = { 'tree-01', 'tree-02', diff --git a/maps/stoneblock.lua b/maps/stoneblock.lua index 0d21b5c7..bc97639b 100644 --- a/maps/stoneblock.lua +++ b/maps/stoneblock.lua @@ -28,9 +28,9 @@ local spawn_point = { x = 0, y = 2 } local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true } local worm_raffle_table = { [1] = { 'small-worm-turret', 'small-worm-turret', 'small-worm-turret', 'small-worm-turret', 'small-worm-turret', 'small-worm-turret' }, @@ -44,7 +44,7 @@ local worm_raffle_table = { [9] = { 'medium-worm-turret', 'medium-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret' }, [10] = { 'medium-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret', 'big-worm-turret' } } -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local nest_raffle = { 'biter-spawner', 'biter-spawner', 'biter-spawner', 'spitter-spawner' } local function shuffle(tbl) diff --git a/maps/tank_battles.lua b/maps/tank_battles.lua index 93bd51dd..9942fd42 100644 --- a/maps/tank_battles.lua +++ b/maps/tank_battles.lua @@ -395,7 +395,7 @@ local function get_arena_entity(surface, pos) local noise2 = get_noise('rocks_2', pos) if noise > -0.1 and noise < 0.1 and noise2 > -0.3 and noise2 < 0.3 then - return { name = 'rock-big', position = pos } + return { name = 'big-rock', position = pos } end if random(1, 16) == 1 and noise2 > 0.78 then diff --git a/maps/territorial_control.lua b/maps/territorial_control.lua index daf83a92..231e2e72 100644 --- a/maps/territorial_control.lua +++ b/maps/territorial_control.lua @@ -103,19 +103,19 @@ local ore_spawn_raffle = { 'crude-oil' } -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local rock_raffle_valid = { - ['sand-rock-big'] = true, - ['sand-rock-big'] = true, - ['rock-big'] = true, - ['rock-big'] = true, - ['rock-big'] = true, - ['rock-big'] = true, - ['rock-big'] = true, - ['rock-big'] = true, - ['rock-big'] = true, - ['rock-big'] = true, - ['rock-huge'] = true + ['big-sand-rock'] = true, + ['big-sand-rock'] = true, + ['big-rock'] = true, + ['big-rock'] = true, + ['big-rock'] = true, + ['big-rock'] = true, + ['big-rock'] = true, + ['big-rock'] = true, + ['big-rock'] = true, + ['big-rock'] = true, + ['huge-rock'] = true } local tree_raffle = { 'tree-02-red', @@ -133,45 +133,45 @@ local tree_raffle = { local function secret_shop(pos, surface) local secret_market_items = { - { price = { { 'coin', math_random(75, 125) } }, offer = { type = 'give-item', item = 'combat-shotgun' } }, - { price = { { 'coin', math_random(40, 60) } }, offer = { type = 'give-item', item = 'rocket-launcher' } }, - { price = { { 'coin', math_random(1, 2) } }, offer = { type = 'give-item', item = 'piercing-rounds-magazine' } }, - { price = { { 'coin', math_random(3, 6) } }, offer = { type = 'give-item', item = 'uranium-rounds-magazine' } }, - { price = { { 'coin', math_random(1, 4) } }, offer = { type = 'give-item', item = 'piercing-shotgun-shell' } }, - { price = { { 'coin', math_random(1, 2) } }, offer = { type = 'give-item', item = 'rocket' } }, - { price = { { 'coin', math_random(2, 3) } }, offer = { type = 'give-item', item = 'explosive-rocket' } }, - { price = { { 'coin', math_random(1, 2) } }, offer = { type = 'give-item', item = 'explosive-cannon-shell' } }, - { price = { { 'coin', math_random(3, 6) } }, offer = { type = 'give-item', item = 'explosive-uranium-cannon-shell' } }, - { price = { { 'coin', math_random(4, 8) } }, offer = { type = 'give-item', item = 'cluster-grenade' } }, - { price = { { 'coin', math_random(1, 2) } }, offer = { type = 'give-item', item = 'land-mine' } }, - { price = { { 'coin', math_random(25, 50) } }, offer = { type = 'give-item', item = 'heavy-armor' } }, + { price = { { 'coin', math_random(75, 125) } }, offer = { type = 'give-item', item = 'combat-shotgun' } }, + { price = { { 'coin', math_random(40, 60) } }, offer = { type = 'give-item', item = 'rocket-launcher' } }, + { price = { { 'coin', math_random(1, 2) } }, offer = { type = 'give-item', item = 'piercing-rounds-magazine' } }, + { price = { { 'coin', math_random(3, 6) } }, offer = { type = 'give-item', item = 'uranium-rounds-magazine' } }, + { price = { { 'coin', math_random(1, 4) } }, offer = { type = 'give-item', item = 'piercing-shotgun-shell' } }, + { price = { { 'coin', math_random(1, 2) } }, offer = { type = 'give-item', item = 'rocket' } }, + { price = { { 'coin', math_random(2, 3) } }, offer = { type = 'give-item', item = 'explosive-rocket' } }, + { price = { { 'coin', math_random(1, 2) } }, offer = { type = 'give-item', item = 'explosive-cannon-shell' } }, + { price = { { 'coin', math_random(3, 6) } }, offer = { type = 'give-item', item = 'explosive-uranium-cannon-shell' } }, + { price = { { 'coin', math_random(4, 8) } }, offer = { type = 'give-item', item = 'cluster-grenade' } }, + { price = { { 'coin', math_random(1, 2) } }, offer = { type = 'give-item', item = 'land-mine' } }, + { price = { { 'coin', math_random(25, 50) } }, offer = { type = 'give-item', item = 'heavy-armor' } }, { price = { { 'coin', math_random(125, 250) } }, offer = { type = 'give-item', item = 'modular-armor' } }, { price = { { 'coin', math_random(300, 600) } }, offer = { type = 'give-item', item = 'power-armor' } }, { price = { { 'coin', math_random(300, 600) } }, offer = { type = 'give-item', item = 'fusion-reactor-equipment' } }, - { price = { { 'coin', math_random(20, 40) } }, offer = { type = 'give-item', item = 'battery-equipment' } }, + { price = { { 'coin', math_random(20, 40) } }, offer = { type = 'give-item', item = 'battery-equipment' } }, { price = { { 'coin', math_random(100, 150) } }, offer = { type = 'give-item', item = 'belt-immunity-equipment' } }, - { price = { { 'coin', math_random(40, 80) } }, offer = { type = 'give-item', item = 'night-vision-equipment' } }, - { price = { { 'coin', math_random(60, 120) } }, offer = { type = 'give-item', item = 'exoskeleton-equipment' } }, - { price = { { 'coin', math_random(60, 120) } }, offer = { type = 'give-item', item = 'personal-roboport-equipment' } }, - { price = { { 'coin', math_random(3, 9) } }, offer = { type = 'give-item', item = 'construction-robot' } }, + { price = { { 'coin', math_random(40, 80) } }, offer = { type = 'give-item', item = 'night-vision-equipment' } }, + { price = { { 'coin', math_random(60, 120) } }, offer = { type = 'give-item', item = 'exoskeleton-equipment' } }, + { price = { { 'coin', math_random(60, 120) } }, offer = { type = 'give-item', item = 'personal-roboport-equipment' } }, + { price = { { 'coin', math_random(3, 9) } }, offer = { type = 'give-item', item = 'construction-robot' } }, { price = { { 'coin', math_random(100, 200) } }, offer = { type = 'give-item', item = 'energy-shield-equipment' } }, { price = { { 'coin', math_random(200, 400) } }, offer = { type = 'give-item', item = 'personal-laser-defense-equipment' } }, - { price = { { 'coin', math_random(30, 60) } }, offer = { type = 'give-item', item = 'loader' } }, - { price = { { 'coin', math_random(50, 80) } }, offer = { type = 'give-item', item = 'fast-loader' } }, - { price = { { 'coin', math_random(70, 100) } }, offer = { type = 'give-item', item = 'express-loader' } }, - { price = { { 'coin', math_random(30, 60) } }, offer = { type = 'give-item', item = 'locomotive' } }, - { price = { { 'coin', math_random(15, 35) } }, offer = { type = 'give-item', item = 'cargo-wagon' } }, - { price = { { 'coin', math_random(1, 4) } }, offer = { type = 'give-item', item = 'grenade' } }, - { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'rail', count = 4 } }, - { price = { { 'coin', 5 } }, offer = { type = 'give-item', item = 'train-stop' } }, - { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'small-lamp' } }, - { price = { { 'coin', 2 } }, offer = { type = 'give-item', item = 'firearm-magazine' } }, - { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'wood', count = math_random(25, 75) } }, - { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'iron-ore', count = math_random(25, 75) } }, - { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'copper-ore', count = math_random(25, 75) } }, - { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'stone', count = math_random(25, 75) } }, - { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'coal', count = math_random(25, 75) } }, - { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'uranium-ore', count = math_random(25, 75) } } + { price = { { 'coin', math_random(30, 60) } }, offer = { type = 'give-item', item = 'loader' } }, + { price = { { 'coin', math_random(50, 80) } }, offer = { type = 'give-item', item = 'fast-loader' } }, + { price = { { 'coin', math_random(70, 100) } }, offer = { type = 'give-item', item = 'express-loader' } }, + { price = { { 'coin', math_random(30, 60) } }, offer = { type = 'give-item', item = 'locomotive' } }, + { price = { { 'coin', math_random(15, 35) } }, offer = { type = 'give-item', item = 'cargo-wagon' } }, + { price = { { 'coin', math_random(1, 4) } }, offer = { type = 'give-item', item = 'grenade' } }, + { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'rail', count = 4 } }, + { price = { { 'coin', 5 } }, offer = { type = 'give-item', item = 'train-stop' } }, + { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'small-lamp' } }, + { price = { { 'coin', 2 } }, offer = { type = 'give-item', item = 'firearm-magazine' } }, + { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'wood', count = math_random(25, 75) } }, + { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'iron-ore', count = math_random(25, 75) } }, + { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'copper-ore', count = math_random(25, 75) } }, + { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'stone', count = math_random(25, 75) } }, + { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'coal', count = math_random(25, 75) } }, + { price = { { 'coin', 1 } }, offer = { type = 'give-item', item = 'uranium-ore', count = math_random(25, 75) } } } secret_market_items = shuffle(secret_market_items) local market = surface.create_entity { name = 'market', position = pos } @@ -616,9 +616,9 @@ end local disabled_for_deconstruction = { ['fish'] = true, - ['rock-huge'] = true, - ['rock-big'] = true, - ['sand-rock-big'] = true, + ['huge-rock'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, ['tree-02'] = true, ['tree-04'] = true, ['dead-tree-desert'] = true, diff --git a/maps/wave_of_death/terrain.lua b/maps/wave_of_death/terrain.lua index e1e490c0..334ced6f 100644 --- a/maps/wave_of_death/terrain.lua +++ b/maps/wave_of_death/terrain.lua @@ -143,9 +143,9 @@ local function place_entities(surface, position, noise_position, seed) local random_noise = get_noise('random_things', noise_position, seed) if random_noise > 0.5 then if random_noise > 0.75 then - surface.create_entity({ name = 'rock-big', position = position }) + surface.create_entity({ name = 'big-rock', position = position }) else - surface.create_entity({ name = 'rock-huge', position = position }) + surface.create_entity({ name = 'huge-rock', position = position }) end end return diff --git a/maps/wip/func.lua b/maps/wip/func.lua index f98bf1c2..0dcb7bdd 100644 --- a/maps/wip/func.lua +++ b/maps/wip/func.lua @@ -14,15 +14,15 @@ local ceil = math.ceil local floor = math.floor local rock_raffle = { - 'sand-rock-big', - 'sand-rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-big', - 'rock-huge' + 'big-sand-rock', + 'big-sand-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'big-rock', + 'huge-rock' } local draw_path_tile_whitelist = { diff --git a/modules/manual_mining_booster.lua b/modules/manual_mining_booster.lua index 2f7cb6cc..fcb5ec91 100644 --- a/modules/manual_mining_booster.lua +++ b/modules/manual_mining_booster.lua @@ -3,9 +3,9 @@ local Event = require 'utils.event' local valid_entities = { - ['rock-big'] = true, - ['rock-huge'] = true, - ['sand-rock-big'] = true + ['big-rock'] = true, + ['huge-rock'] = true, + ['big-sand-rock'] = true } local function mining_speed_cooldown(p) diff --git a/modules/rocks_broken_paint_tiles.lua b/modules/rocks_broken_paint_tiles.lua index 8a4bc7fd..d1f48a37 100644 --- a/modules/rocks_broken_paint_tiles.lua +++ b/modules/rocks_broken_paint_tiles.lua @@ -2,9 +2,9 @@ local Event = require 'utils.event' local valid_entities = { - ['rock-big'] = true, - ['rock-huge'] = true, - ['sand-rock-big'] = true + ['big-rock'] = true, + ['huge-rock'] = true, + ['big-sand-rock'] = true } local replacement_tiles = { diff --git a/modules/rocks_heal_over_time.lua b/modules/rocks_heal_over_time.lua index 0fdddbda..856aee54 100644 --- a/modules/rocks_heal_over_time.lua +++ b/modules/rocks_heal_over_time.lua @@ -2,9 +2,9 @@ local Event = require 'utils.event' local entity_whitelist = { - ['rock-big'] = true, - ['sand-rock-big'] = true, - ['rock-huge'] = true, + ['big-rock'] = true, + ['big-sand-rock'] = true, + ['huge-rock'] = true, ['mineable-wreckage'] = true } diff --git a/modules/rocks_yield_coins.lua b/modules/rocks_yield_coins.lua index dd7f3568..74e5dbce 100644 --- a/modules/rocks_yield_coins.lua +++ b/modules/rocks_yield_coins.lua @@ -1,16 +1,16 @@ local Event = require 'utils.event' local coin_yield = { - ['rock-big'] = 3, - ['rock-huge'] = 6, - ['sand-rock-big'] = 3 + ['big-rock'] = 3, + ['huge-rock'] = 6, + ['big-sand-rock'] = 3 } local function on_player_mined_entity(event) if coin_yield[event.entity.name] then event.entity.surface.spill_item_stack( event.entity.position, - {name = 'coin', count = math.random(math.ceil(coin_yield[event.entity.name] * 0.5), math.ceil(coin_yield[event.entity.name] * 2))}, + { name = 'coin', count = math.random(math.ceil(coin_yield[event.entity.name] * 0.5), math.ceil(coin_yield[event.entity.name] * 2)) }, true ) end diff --git a/modules/rocks_yield_ore.lua b/modules/rocks_yield_ore.lua index b108d9aa..35edb316 100644 --- a/modules/rocks_yield_ore.lua +++ b/modules/rocks_yield_ore.lua @@ -5,9 +5,9 @@ local math_floor = math.floor local math_sqrt = math.sqrt local rock_yield = { - ['rock-big'] = 1, - ['rock-huge'] = 2, - ['sand-rock-big'] = 1 + ['big-rock'] = 1, + ['huge-rock'] = 2, + ['big-sand-rock'] = 1 } local particles = { diff --git a/modules/rocks_yield_ore_veins.lua b/modules/rocks_yield_ore_veins.lua index f259ad57..0f768893 100644 --- a/modules/rocks_yield_ore_veins.lua +++ b/modules/rocks_yield_ore_veins.lua @@ -1,9 +1,9 @@ local math_random = math.random local valid_entities = { - ['rock-big'] = true, - ['rock-huge'] = true, - ['sand-rock-big'] = true, + ['big-rock'] = true, + ['huge-rock'] = true, + ['big-sand-rock'] = true, ['mineable-wreckage'] = true } diff --git a/modules/rpg/spells.lua b/modules/rpg/spells.lua index 66b4eaa2..acbad57e 100644 --- a/modules/rpg/spells.lua +++ b/modules/rpg/spells.lua @@ -17,74 +17,74 @@ local repeat_sound_token local repair_buildings = Task.register( - function(data) - local entity = data.entity - if entity and entity.valid then - local rng = 0.1 - if random(1, 5) == 1 then - rng = 0.2 - elseif random(1, 8) == 1 then - rng = 0.4 - end - local to_heal = entity.prototype.max_health * rng - if entity.health and to_heal then - entity.health = entity.health + to_heal + function (data) + local entity = data.entity + if entity and entity.valid then + local rng = 0.1 + if random(1, 5) == 1 then + rng = 0.2 + elseif random(1, 8) == 1 then + rng = 0.4 + end + local to_heal = entity.prototype.max_health * rng + if entity.health and to_heal then + entity.health = entity.health + to_heal + end end end - end -) + ) repeat_sound_token = Task.register( - function(event) - local player_index = event.player_index - local player = game.get_player(player_index) - if not player or not player.valid then - return - end - - local sound = event.sound or 'utility/armor_insert' - - if event.once then - player.play_sound {path = sound, volume_modifier = 1} - if player.character ~= nil then - player.character.surface.create_entity({name = 'water-splash', position = player.position}) + function (event) + local player_index = event.player_index + local player = game.get_player(player_index) + if not player or not player.valid then + return end - return - end - local tick = event.tick - local now = game.tick - if now >= tick then - return - end + local sound = event.sound or 'utility/armor_insert' - player.play_sound {path = sound, volume_modifier = 1} - if player.character ~= nil then - player.character.surface.create_entity({name = 'water-splash', position = player.position}) + if event.once then + player.play_sound { path = sound, volume_modifier = 1 } + if player.character ~= nil then + player.character.surface.create_entity({ name = 'water-splash', position = player.position }) + end + return + end + + local tick = event.tick + local now = game.tick + if now >= tick then + return + end + + player.play_sound { path = sound, volume_modifier = 1 } + if player.character ~= nil then + player.character.surface.create_entity({ name = 'water-splash', position = player.position }) + end + Task.set_timeout_in_ticks(30, repeat_sound_token, event) end - Task.set_timeout_in_ticks(30, repeat_sound_token, event) - end -) + ) local x_marks_the_spot_token = Task.register( - function(event) - local player_index = event.player_index - local old_surface_index = event.old_surface_index - local player = game.get_player(player_index) - if not player or not player.valid then - return - end - local old_position = event.old_position - if not old_position then - return - end + function (event) + local player_index = event.player_index + local old_surface_index = event.old_surface_index + local player = game.get_player(player_index) + if not player or not player.valid then + return + end + local old_position = event.old_position + if not old_position then + return + end - player.teleport(old_position, old_surface_index) - Task.set_timeout_in_ticks(5, repeat_sound_token, {player_index = player.index, sound = 'utility/new_objective', once = true}) - end -) + player.teleport(old_position, old_surface_index) + Task.set_timeout_in_ticks(5, repeat_sound_token, { player_index = player.index, sound = 'utility/new_objective', once = true }) + end + ) local function get_area(pos, dist) local area = { @@ -101,12 +101,12 @@ local function get_area(pos, dist) end local levels = { - [150] = {length = 26, max_spread = 6}, - [250] = {length = 27, max_spread = 6}, - [350] = {length = 28, max_spread = 7}, - [450] = {length = 29, max_spread = 7}, - [550] = {length = 30, max_spread = 8}, - [650] = {length = 31, max_spread = 8} + [150] = { length = 26, max_spread = 6 }, + [250] = { length = 27, max_spread = 6 }, + [350] = { length = 28, max_spread = 7 }, + [450] = { length = 29, max_spread = 7 }, + [550] = { length = 30, max_spread = 8 }, + [650] = { length = 31, max_spread = 8 } } local function get_level_data(player_level) @@ -123,7 +123,7 @@ local function get_level_data(player_level) if closest_level then return levels[closest_level] else - return {length = 18, max_spread = 4} + return { length = 18, max_spread = 4 } end end @@ -149,9 +149,9 @@ local function area_of_effect(player, position, state, radius, callback, find_en for y = area.left_top.y, area.right_bottom.y, 1 do local d = floor((cp.x - x) ^ 2 + (cp.y - y) ^ 2) if d < radius then - local p = {x = x, y = y} + local p = { x = x, y = y } if find_entities then - for _, e in pairs(cs.find_entities({{p.x - 1, p.y - 1}, {p.x + 1, p.y + 1}})) do + for _, e in pairs(cs.find_entities({ { p.x - 1, p.y - 1 }, { p.x + 1, p.y + 1 } })) do if e and e.valid and e.name ~= 'character' and e.health and e.destructible and e.type ~= 'simple-entity' and e.type ~= 'simple-entity-with-owner' then callback(e, p) end @@ -159,7 +159,7 @@ local function area_of_effect(player, position, state, radius, callback, find_en else callback(p) end - cs.create_trivial_smoke({name = states[state], position = p}) + cs.create_trivial_smoke({ name = states[state], position = p }) end end end @@ -167,18 +167,18 @@ end local restore_movement_speed_token = Task.register( - function(event) - local player_index = event.player_index + function (event) + local player_index = event.player_index - local player = game.get_player(player_index) - if not player or not player.valid then - return + local player = game.get_player(player_index) + if not player or not player.valid then + return + end + + Modifiers.update_single_modifier(player, 'character_running_speed_modifier', 'rpg_spell', 0) + Modifiers.update_player_modifiers(player) end - - Modifiers.update_single_modifier(player, 'character_running_speed_modifier', 'rpg_spell', 0) - Modifiers.update_player_modifiers(player) - end -) + ) local function do_projectile(player_surface, name, _position, _force, target, max_range) player_surface.create_entity( @@ -216,28 +216,28 @@ local function create_projectiles(data) end local damage_area = { - left_top = {x = position.x - 2, y = position.y - 2}, - right_bottom = {x = position.x + 2, y = position.y + 2} + left_top = { x = position.x - 2, y = position.y - 2 }, + right_bottom = { x = position.x + 2, y = position.y + 2 } } do_projectile(surface, projectile_types[self.entityName].name, position, force, target_pos, range) Public.remove_mana(player, self.mana_cost) rpg_t.amount = rpg_t.amount + 1 if self.damage then - for _, e in pairs(surface.find_entities_filtered({area = damage_area})) do + for _, e in pairs(surface.find_entities_filtered({ area = damage_area })) do damage_entity(e) end end end else local damage_area = { - left_top = {x = position.x - 2, y = position.y - 2}, - right_bottom = {x = position.x + 2, y = position.y + 2} + left_top = { x = position.x - 2, y = position.y - 2 }, + right_bottom = { x = position.x + 2, y = position.y + 2 } } do_projectile(surface, projectile_types[self.entityName].name, position, force, target_pos, range) Public.remove_mana(player, self.mana_cost) if self.damage then - for _, e in pairs(surface.find_entities_filtered({area = damage_area})) do + for _, e in pairs(surface.find_entities_filtered({ area = damage_area })) do damage_entity(e) end end @@ -268,8 +268,8 @@ local function create_entity(data) Public.set_last_spell_cast(player, position) if self.biter then - if surface.can_place_entity {name = self.entityName, position = position} then - local e = surface.create_entity({name = self.entityName, position = position, force = force}) + if surface.can_place_entity { name = self.entityName, position = position } then + local e = surface.create_entity({ name = self.entityName, position = position, force = force }) tame_unit_effects(player, e) Public.remove_mana(player, self.mana_cost) return true @@ -283,12 +283,12 @@ local function create_entity(data) local has_cast = false for x = 1, -1, -1 do for y = 1, -1, -1 do - local pos = {x = position.x + x, y = position.y + y} - if surface.can_place_entity {name = self.entityName, position = pos} then + local pos = { x = position.x + x, y = position.y + y } + if surface.can_place_entity { name = self.entityName, position = pos } then if self.mana_cost > rpg_t.mana then break end - local e = surface.create_entity({name = self.entityName, position = pos, force = force}) + local e = surface.create_entity({ name = self.entityName, position = pos, force = force }) has_cast = true e.direction = player.character.direction Public.remove_mana(player, self.mana_cost) @@ -303,8 +303,8 @@ local function create_entity(data) return false end else - if surface.can_place_entity {name = self.entityName, position = position} then - local e = surface.create_entity({name = self.entityName, position = position, force = force}) + if surface.can_place_entity { name = self.entityName, position = position } then + local e = surface.create_entity({ name = self.entityName, position = position, force = force }) e.direction = player.character.direction Public.remove_mana(player, self.mana_cost) else @@ -328,12 +328,12 @@ local function insert_onto(data) break end - player.insert({name = self.entityName, count = self.amount}) + player.insert({ name = self.entityName, count = self.amount }) Public.remove_mana(player, self.mana_cost) rpg_t.amount = rpg_t.amount + 1 end else - player.insert({name = self.entityName, count = self.amount}) + player.insert({ name = self.entityName, count = self.amount }) Public.remove_mana(player, self.mana_cost) end @@ -342,7 +342,7 @@ local function insert_onto(data) end spells[#spells + 1] = { - name = {'entity-name.stone-wall'}, + name = { 'entity-name.stone-wall' }, entityName = 'stone-wall', level = 1, type = 'item', @@ -352,12 +352,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/stone-wall', tooltip = 'Spawns some walls', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.wooden-chest'}, + name = { 'entity-name.wooden-chest' }, entityName = 'wooden-chest', level = 1, type = 'item', @@ -367,12 +367,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/wooden-chest', tooltip = 'Spawns some wooden chests', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.iron-chest'}, + name = { 'entity-name.iron-chest' }, entityName = 'iron-chest', level = 1, type = 'item', @@ -382,12 +382,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/iron-chest', tooltip = 'Spawns some iron chests', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.steel-chest'}, + name = { 'entity-name.steel-chest' }, entityName = 'steel-chest', level = 30, type = 'item', @@ -397,12 +397,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/steel-chest', tooltip = 'Spawns some steel chests', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.transport-belt'}, + name = { 'entity-name.transport-belt' }, entityName = 'transport-belt', level = 1, type = 'item', @@ -412,12 +412,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/transport-belt', tooltip = 'Spawns some transport belts', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.fast-transport-belt'}, + name = { 'entity-name.fast-transport-belt' }, entityName = 'fast-transport-belt', level = 10, type = 'item', @@ -427,12 +427,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/fast-transport-belt', tooltip = 'Spawns some fast transport belts', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.express-transport-belt'}, + name = { 'entity-name.express-transport-belt' }, entityName = 'express-transport-belt', level = 20, type = 'item', @@ -442,12 +442,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/express-transport-belt', tooltip = 'Spawns some express transport belts', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.underground-belt'}, + name = { 'entity-name.underground-belt' }, entityName = 'underground-belt', level = 1, type = 'item', @@ -457,12 +457,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/underground-belt', tooltip = 'Spawns some underground belts', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.fast-underground-belt'}, + name = { 'entity-name.fast-underground-belt' }, entityName = 'fast-underground-belt', level = 10, type = 'item', @@ -472,12 +472,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/fast-underground-belt', tooltip = 'Spawns some fast underground belts', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.express-underground-belt'}, + name = { 'entity-name.express-underground-belt' }, entityName = 'express-underground-belt', level = 20, type = 'item', @@ -487,12 +487,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/express-underground-belt', tooltip = 'Spawns some express underground belts', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.pipe'}, + name = { 'entity-name.pipe' }, entityName = 'pipe', level = 1, type = 'item', @@ -502,12 +502,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/pipe', tooltip = 'Spawns some pipes', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.pipe-to-ground'}, + name = { 'entity-name.pipe-to-ground' }, entityName = 'pipe-to-ground', level = 1, type = 'item', @@ -517,12 +517,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/pipe-to-ground', tooltip = 'Spawns some pipe to ground', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.tree'}, + name = { 'entity-name.tree' }, entityName = 'tree-05', level = 20, type = 'entity', @@ -532,27 +532,27 @@ spells[#spells + 1] = { enabled = true, sprite = 'entity/tree-05', tooltip = 'Spawns some trees', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.sand-rock-big'}, - entityName = 'sand-rock-big', + name = { 'entity-name.big-sand-rock' }, + entityName = 'big-sand-rock', level = 60, type = 'entity', mana_cost = 60, cooldown = 300, aoe = true, enabled = true, - sprite = 'entity/sand-rock-big', + sprite = 'entity/big-sand-rock', tooltip = 'Spawns some sandy rocks', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.small-biter'}, + name = { 'entity-name.small-biter' }, entityName = 'small-biter', level = 30, biter = true, @@ -562,12 +562,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'entity/small-biter', tooltip = 'Spawns a small biter', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.small-spitter'}, + name = { 'entity-name.small-spitter' }, entityName = 'small-spitter', level = 30, biter = true, @@ -577,12 +577,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'entity/small-spitter', tooltip = 'Spawns a small spitter', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.medium-biter'}, + name = { 'entity-name.medium-biter' }, entityName = 'medium-biter', level = 60, biter = true, @@ -592,12 +592,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'entity/medium-biter', tooltip = 'Spawns a medium biter', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.medium-spitter'}, + name = { 'entity-name.medium-spitter' }, entityName = 'medium-spitter', level = 60, biter = true, @@ -607,12 +607,12 @@ spells[#spells + 1] = { enabled = true, sprite = 'entity/medium-spitter', tooltip = 'Spawns a medium spitter', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.biter-spawner'}, + name = { 'entity-name.biter-spawner' }, entityName = 'biter-spawner', level = 100, biter = true, @@ -623,12 +623,12 @@ spells[#spells + 1] = { log_spell = true, sprite = 'entity/biter-spawner', tooltip = 'Spawns a biter spawner', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'entity-name.spitter-spawner'}, + name = { 'entity-name.spitter-spawner' }, entityName = 'spitter-spawner', level = 100, biter = true, @@ -639,13 +639,13 @@ spells[#spells + 1] = { log_spell = true, sprite = 'entity/spitter-spawner', tooltip = 'Spawns a spitter spawner', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'item-name.shotgun-shell'}, + name = { 'item-name.shotgun-shell' }, entityName = 'shotgun-shell', target = true, amount = 1, @@ -659,12 +659,12 @@ spells[#spells + 1] = { log_spell = true, sprite = 'recipe/shotgun-shell', tooltip = 'Spawns some shotgun shells', - callback = function(data) + callback = function (data) return create_projectiles(data) end } spells[#spells + 1] = { - name = {'item-name.grenade'}, + name = { 'item-name.grenade' }, entityName = 'grenade', target = true, amount = 1, @@ -678,7 +678,7 @@ spells[#spells + 1] = { log_spell = true, sprite = 'recipe/grenade', tooltip = 'Spawns a nade where the mouse cursor is at', - callback = function(data) + callback = function (data) return create_projectiles(data) end } @@ -699,15 +699,15 @@ if _DEBUG then log_spell = false, sprite = 'recipe/cluster-grenade', tooltip = 'Spawns a cluster nade where the mouse cursor is at', - callback = function(data) + callback = function (data) local player = data.player - player.insert({name = 'raw-fish'}) + player.insert({ name = 'raw-fish' }) return create_projectiles(data) end } end spells[#spells + 1] = { - name = {'item-name.cluster-grenade'}, + name = { 'item-name.cluster-grenade' }, entityName = 'cluster-grenade', target = true, amount = 2, @@ -721,12 +721,12 @@ spells[#spells + 1] = { log_spell = true, sprite = 'recipe/cluster-grenade', tooltip = 'Spawns a cluster nade where the mouse cursor is at', - callback = function(data) + callback = function (data) return create_projectiles(data) end } spells[#spells + 1] = { - name = {'item-name.cannon-shell'}, + name = { 'item-name.cannon-shell' }, entityName = 'cannon-shell', target = true, amount = 1, @@ -740,12 +740,12 @@ spells[#spells + 1] = { log_spell = true, sprite = 'recipe/cannon-shell', tooltip = 'Spawns a cannon shell where the mouse cursor is at', - callback = function(data) + callback = function (data) return create_projectiles(data) end } spells[#spells + 1] = { - name = {'item-name.explosive-cannon-shell'}, + name = { 'item-name.explosive-cannon-shell' }, entityName = 'explosive-cannon-shell', target = true, amount = 2, @@ -760,13 +760,13 @@ spells[#spells + 1] = { log_spell = true, sprite = 'recipe/explosive-cannon-shell', tooltip = 'Spawns a explosive cannon shell where the mouse cursor is at', - callback = function(data) + callback = function (data) Public.register_cooldown_for_spell(data.player) return create_projectiles(data) end } spells[#spells + 1] = { - name = {'item-name.uranium-cannon-shell'}, + name = { 'item-name.uranium-cannon-shell' }, entityName = 'uranium-cannon-shell', target = true, amount = 2, @@ -781,14 +781,14 @@ spells[#spells + 1] = { log_spell = true, sprite = 'recipe/uranium-cannon-shell', tooltip = 'Spawns a uranium cannon shell where the mouse cursor is at', - callback = function(data) + callback = function (data) Public.register_cooldown_for_spell(data.player) return create_projectiles(data) end } spells[#spells + 1] = { - name = {'item-name.rocket'}, + name = { 'item-name.rocket' }, entityName = 'rocket', range = 240, target = true, @@ -803,12 +803,12 @@ spells[#spells + 1] = { log_spell = true, sprite = 'recipe/rocket', tooltip = 'Spawns a rocket where the mouse cursor is at', - callback = function(data) + callback = function (data) return create_projectiles(data) end } spells[#spells + 1] = { - name = {'spells.pointy_explosives'}, + name = { 'spells.pointy_explosives' }, entityName = 'pointy_explosives', target = true, amount = 1, @@ -823,7 +823,7 @@ spells[#spells + 1] = { log_spell = true, sprite = 'recipe/explosives', tooltip = 'Spawns a pointy explosive', - callback = function(data) + callback = function (data) local self = data.self local player = data.player local Explosives = data.explosives @@ -831,10 +831,10 @@ spells[#spells + 1] = { local entities = player.surface.find_entities_filtered { - force = player.force, - type = 'container', - area = {{position.x - 1, position.y - 1}, {position.x + 1, position.y + 1}} - } + force = player.force, + type = 'container', + area = { { position.x - 1, position.y - 1 }, { position.x + 1, position.y + 1 } } + } local detonate_chest for i = 1, #entities do @@ -852,7 +852,7 @@ spells[#spells + 1] = { end } spells[#spells + 1] = { - name = {'spells.repair_aoe'}, + name = { 'spells.repair_aoe' }, entityName = 'repair_aoe', target = true, amount = 1, @@ -868,7 +868,7 @@ spells[#spells + 1] = { log_spell = true, sprite = 'recipe/repair-pack', tooltip = 'Repairs multiple entities in a range', - callback = function(data) + callback = function (data) local self = data.self local rpg_t = data.rpg_t local player = data.player @@ -883,10 +883,10 @@ spells[#spells + 1] = { position, 'support', range, - function(entity) + function (entity) if entity.prototype.max_health ~= entity.health then if self.mana_cost < rpg_t.mana then - Task.set_timeout_in_ticks(10, repair_buildings, {entity = entity}) + Task.set_timeout_in_ticks(10, repair_buildings, { entity = entity }) Public.remove_mana(player, self.mana_cost) end end @@ -900,7 +900,7 @@ spells[#spells + 1] = { end } spells[#spells + 1] = { - name = {'spells.acid_stream'}, + name = { 'spells.acid_stream' }, entityName = 'acid-stream-spitter-big', target = true, amount = 2, @@ -915,7 +915,7 @@ spells[#spells + 1] = { enforce_cooldown = true, sprite = Gui.spew_icon, tooltip = 'Creates a puddle of acid stream', - callback = function(data) + callback = function (data) local self = data.self local player = data.player Public.register_cooldown_for_spell(player) @@ -929,7 +929,7 @@ spells[#spells + 1] = { position, 'attack', range, - function(p) + function (p) do_projectile(player.surface, 'acid-stream-spitter-big', p, player.force, p) end, false @@ -941,7 +941,7 @@ spells[#spells + 1] = { end } spells[#spells + 1] = { - name = {'spells.tank'}, + name = { 'spells.tank' }, entityName = 'tank', amount = 1, capsule = true, @@ -953,12 +953,12 @@ spells[#spells + 1] = { enabled = false, sprite = 'entity/tank', tooltip = 'Spawns a tank', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'spells.spidertron'}, + name = { 'spells.spidertron' }, entityName = 'spidertron', amount = 1, capsule = true, @@ -971,12 +971,12 @@ spells[#spells + 1] = { log_spell = true, sprite = 'entity/spidertron', tooltip = 'Spawns a spidertron', - callback = function(data) + callback = function (data) return create_entity(data) end } spells[#spells + 1] = { - name = {'spells.raw_fish'}, + name = { 'spells.raw_fish' }, entityName = 'raw-fish', target = false, amount = 4, @@ -992,14 +992,14 @@ spells[#spells + 1] = { enabled = true, sprite = 'item/raw-fish', tooltip = 'Spawns some fishies', - callback = function(data) + callback = function (data) Public.register_cooldown_for_spell(data.player) return insert_onto(data) end } spells[#spells + 1] = { - name = {'spells.dynamites'}, + name = { 'spells.dynamites' }, entityName = 'explosives', target = false, amount = 3, @@ -1016,14 +1016,14 @@ spells[#spells + 1] = { enabled = true, sprite = 'item/explosives', tooltip = 'Spawns some explosives', - callback = function(data) + callback = function (data) Public.register_cooldown_for_spell(data.player) return insert_onto(data) end } spells[#spells + 1] = { - name = {'spells.distractor'}, + name = { 'spells.distractor' }, entityName = 'distractor-capsule', target = true, amount = 1, @@ -1038,7 +1038,7 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/distractor-capsule', tooltip = 'Spawns disctractors', - callback = function(data) + callback = function (data) Public.register_cooldown_for_spell(data.player) return create_projectiles(data) @@ -1046,7 +1046,7 @@ spells[#spells + 1] = { } spells[#spells + 1] = { - name = {'spells.defender'}, + name = { 'spells.defender' }, entityName = 'defender-capsule', target = true, amount = 1, @@ -1061,14 +1061,14 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/defender-capsule', tooltip = 'Spawns defenders', - callback = function(data) + callback = function (data) Public.register_cooldown_for_spell(data.player) return create_projectiles(data) end } spells[#spells + 1] = { - name = {'spells.destroyer'}, + name = { 'spells.destroyer' }, entityName = 'destroyer-capsule', target = true, amount = 1, @@ -1083,14 +1083,14 @@ spells[#spells + 1] = { enabled = true, sprite = 'recipe/destroyer-capsule', tooltip = 'Spawns destroyers', - callback = function(data) + callback = function (data) Public.register_cooldown_for_spell(data.player) return create_projectiles(data) end } spells[#spells + 1] = { - name = {'spells.warp'}, + name = { 'spells.warp' }, entityName = 'warp-gate', target = true, force = 'player', @@ -1103,7 +1103,7 @@ spells[#spells + 1] = { log_spell = true, sprite = Gui.warp_icon, tooltip = 'Warps you back to base', - callback = function(data) + callback = function (data) local player = data.player Public.register_cooldown_for_spell(player) @@ -1118,14 +1118,14 @@ spells[#spells + 1] = { end Public.remove_mana(player, 999999) Public.damage_player_over_time(player, random(8, 16)) - player.play_sound {path = 'utility/armor_insert', volume_modifier = 1} + player.play_sound { path = 'utility/armor_insert', volume_modifier = 1 } Public.cast_spell(player) return true end } spells[#spells + 1] = { - name = {'spells.mark_spot'}, + name = { 'spells.mark_spot' }, entityName = 'mark-spot', target = true, force = 'player', @@ -1138,7 +1138,7 @@ spells[#spells + 1] = { log_spell = true, sprite = Gui.x_icon, tooltip = 'Warps you back to the locomotive and after a couple of seconds you return to your previous location.', - callback = function(data) + callback = function (data) local player = data.player local surface = data.surface local old_position = player.position @@ -1153,8 +1153,8 @@ spells[#spells + 1] = { player.teleport(pos, surface) end - Task.set_timeout_in_ticks(5, repeat_sound_token, {player_index = player.index, tick = game.tick + 600}) - Task.set_timeout_in_ticks(600, x_marks_the_spot_token, {player_index = player.index, old_position = old_position, old_surface_index = surface.index}) + Task.set_timeout_in_ticks(5, repeat_sound_token, { player_index = player.index, tick = game.tick + 600 }) + Task.set_timeout_in_ticks(600, x_marks_the_spot_token, { player_index = player.index, old_position = old_position, old_surface_index = surface.index }) Public.remove_mana(player, 340) Public.cast_spell(player) return true @@ -1162,7 +1162,7 @@ spells[#spells + 1] = { } spells[#spells + 1] = { - name = {'spells.tidal_wave'}, + name = { 'spells.tidal_wave' }, entityName = 'tidal-wave', target = true, force = 'player', @@ -1175,7 +1175,7 @@ spells[#spells + 1] = { log_spell = false, sprite = Gui.tidal_icon, tooltip = 'Spawns a tidal wave that pushes the enemies back.', - callback = function(data) + callback = function (data) local player = data.player local rpg_t = data.rpg_t local cursor_position = data.position @@ -1198,7 +1198,7 @@ spells[#spells + 1] = { end } spells[#spells + 1] = { - name = {'spells.charge'}, + name = { 'spells.charge' }, entityName = 'haste', target = false, force = 'player', @@ -1211,7 +1211,7 @@ spells[#spells + 1] = { log_spell = true, sprite = 'item/exoskeleton-equipment', tooltip = 'Gives you a temporary movement boost.', - callback = function(data) + callback = function (data) local self = data.self local player = data.player local rpg_t = data.rpg_t @@ -1219,10 +1219,10 @@ spells[#spells + 1] = { Public.remove_mana(player, self.mana_cost) for _ = 1, 3 do - player.play_sound {path = 'utility/armor_insert', volume_modifier = 1} + player.play_sound { path = 'utility/armor_insert', volume_modifier = 1 } end - Task.set_timeout_in_ticks(300, restore_movement_speed_token, {player_index = player.index, rpg_t = rpg_t}) + Task.set_timeout_in_ticks(300, restore_movement_speed_token, { player_index = player.index, rpg_t = rpg_t }) Modifiers.update_single_modifier(player, 'character_running_speed_modifier', 'rpg_spell', 1) Modifiers.update_player_modifiers(player) Public.cast_spell(player) @@ -1230,7 +1230,7 @@ spells[#spells + 1] = { end } spells[#spells + 1] = { - name = {'spells.eternal_blades'}, + name = { 'spells.eternal_blades' }, entityName = 'eternal_blades', target = false, force = 'player', @@ -1243,7 +1243,7 @@ spells[#spells + 1] = { log_spell = true, sprite = Gui.berserk_icon, tooltip = 'Damages enemies in radius when cast. Scales with player level.', - callback = function(data) + callback = function (data) local self = data.self local player = data.player local position = data.position @@ -1261,7 +1261,7 @@ spells[#spells + 1] = { position, 'attack', range, - function(entity) + function (entity) if entity.force.index ~= player.force.index then local get_health_pool = Public.has_health_boost(entity, damage, damage, player.character) if get_health_pool then @@ -1297,7 +1297,7 @@ spells[#spells + 1] = { } local drone_enemy = { - name = {'spells.drone_enemy'}, + name = { 'spells.drone_enemy' }, entityName = 'drone_enemy', target = false, force = 'player', @@ -1310,11 +1310,11 @@ local drone_enemy = { log_spell = true, sprite = 'entity/character', tooltip = 'Creates a drone that searches for enemies and destroys them.', - callback = function(data) + callback = function (data) local self = data.self local player = data.player Public.register_cooldown_for_spell(player) - local suc = Ai.create_char({player_index = player.index, command = 1, search_local = true}) + local suc = Ai.create_char({ player_index = player.index, command = 1, search_local = true }) if not suc then Public.cast_spell(player, true) return false @@ -1329,7 +1329,7 @@ local drone_enemy = { spells[#spells + 1] = drone_enemy local drone_mine = { - name = {'spells.drone_mine'}, + name = { 'spells.drone_mine' }, entityName = 'drone_mine', target = false, force = 'player', @@ -1342,11 +1342,11 @@ local drone_mine = { log_spell = true, sprite = 'entity/character', tooltip = 'Creates a drone that mines entities around you.', - callback = function(data) + callback = function (data) local self = data.self local player = data.player Public.register_cooldown_for_spell(player) - local suc = Ai.create_char({player_index = player.index, command = 2, search_local = false}) + local suc = Ai.create_char({ player_index = player.index, command = 2, search_local = false }) if not suc then Public.cast_spell(player, true) return false @@ -1370,31 +1370,31 @@ spells[#spells + 1] = drone_mine -- end Public.projectile_types = { - ['explosives'] = {name = 'grenade', count = 0.5, max_range = 32, tick_speed = 1}, - ['distractor-capsule'] = {name = 'distractor-capsule', count = 1, max_range = 32, tick_speed = 1}, - ['defender-capsule'] = {name = 'defender-capsule', count = 1, max_range = 32, tick_speed = 1}, - ['destroyer-capsule'] = {name = 'destroyer-capsule', count = 1, max_range = 32, tick_speed = 1}, - ['land-mine'] = {name = 'grenade', count = 1, max_range = 32, tick_speed = 1}, - ['grenade'] = {name = 'grenade', count = 1, max_range = 40, tick_speed = 1}, - ['cluster-grenade'] = {name = 'cluster-grenade', count = 1, max_range = 40, tick_speed = 3}, - ['artillery-shell'] = {name = 'artillery-projectile', count = 1, max_range = 60, tick_speed = 3}, - ['cannon-shell'] = {name = 'cannon-projectile', count = 1, max_range = 60, tick_speed = 1}, - ['explosive-cannon-shell'] = {name = 'explosive-cannon-projectile', count = 1, max_range = 60, tick_speed = 1}, + ['explosives'] = { name = 'grenade', count = 0.5, max_range = 32, tick_speed = 1 }, + ['distractor-capsule'] = { name = 'distractor-capsule', count = 1, max_range = 32, tick_speed = 1 }, + ['defender-capsule'] = { name = 'defender-capsule', count = 1, max_range = 32, tick_speed = 1 }, + ['destroyer-capsule'] = { name = 'destroyer-capsule', count = 1, max_range = 32, tick_speed = 1 }, + ['land-mine'] = { name = 'grenade', count = 1, max_range = 32, tick_speed = 1 }, + ['grenade'] = { name = 'grenade', count = 1, max_range = 40, tick_speed = 1 }, + ['cluster-grenade'] = { name = 'cluster-grenade', count = 1, max_range = 40, tick_speed = 3 }, + ['artillery-shell'] = { name = 'artillery-projectile', count = 1, max_range = 60, tick_speed = 3 }, + ['cannon-shell'] = { name = 'cannon-projectile', count = 1, max_range = 60, tick_speed = 1 }, + ['explosive-cannon-shell'] = { name = 'explosive-cannon-projectile', count = 1, max_range = 60, tick_speed = 1 }, ['explosive-uranium-cannon-shell'] = { name = 'explosive-uranium-cannon-projectile', count = 1, max_range = 60, tick_speed = 1 }, - ['uranium-cannon-shell'] = {name = 'uranium-cannon-projectile', count = 1, max_range = 60, tick_speed = 1}, - ['atomic-bomb'] = {name = 'atomic-rocket', count = 1, max_range = 80, tick_speed = 20}, - ['explosive-rocket'] = {name = 'explosive-rocket', count = 1, max_range = 48, tick_speed = 1}, - ['rocket'] = {name = 'rocket', count = 1, max_range = 48, tick_speed = 1}, - ['flamethrower-ammo'] = {name = 'flamethrower-fire-stream', count = 4, max_range = 28, tick_speed = 1}, - ['crude-oil-barrel'] = {name = 'flamethrower-fire-stream', count = 3, max_range = 24, tick_speed = 1}, - ['petroleum-gas-barrel'] = {name = 'flamethrower-fire-stream', count = 4, max_range = 24, tick_speed = 1}, - ['light-oil-barrel'] = {name = 'flamethrower-fire-stream', count = 4, max_range = 24, tick_speed = 1}, - ['heavy-oil-barrel'] = {name = 'flamethrower-fire-stream', count = 4, max_range = 24, tick_speed = 1}, + ['uranium-cannon-shell'] = { name = 'uranium-cannon-projectile', count = 1, max_range = 60, tick_speed = 1 }, + ['atomic-bomb'] = { name = 'atomic-rocket', count = 1, max_range = 80, tick_speed = 20 }, + ['explosive-rocket'] = { name = 'explosive-rocket', count = 1, max_range = 48, tick_speed = 1 }, + ['rocket'] = { name = 'rocket', count = 1, max_range = 48, tick_speed = 1 }, + ['flamethrower-ammo'] = { name = 'flamethrower-fire-stream', count = 4, max_range = 28, tick_speed = 1 }, + ['crude-oil-barrel'] = { name = 'flamethrower-fire-stream', count = 3, max_range = 24, tick_speed = 1 }, + ['petroleum-gas-barrel'] = { name = 'flamethrower-fire-stream', count = 4, max_range = 24, tick_speed = 1 }, + ['light-oil-barrel'] = { name = 'flamethrower-fire-stream', count = 4, max_range = 24, tick_speed = 1 }, + ['heavy-oil-barrel'] = { name = 'flamethrower-fire-stream', count = 4, max_range = 24, tick_speed = 1 }, ['acid-stream-spitter-big'] = { name = 'acid-stream-spitter-big', count = 3, @@ -1402,13 +1402,13 @@ Public.projectile_types = { tick_speed = 1, force = 'enemy' }, - ['lubricant-barrel'] = {name = 'acid-stream-spitter-big', count = 3, max_range = 16, tick_speed = 1}, - ['shotgun-shell'] = {name = 'shotgun-pellet', count = 16, max_range = 24, tick_speed = 1}, - ['piercing-shotgun-shell'] = {name = 'piercing-shotgun-pellet', count = 16, max_range = 24, tick_speed = 1}, - ['firearm-magazine'] = {name = 'shotgun-pellet', count = 16, max_range = 24, tick_speed = 1}, - ['piercing-rounds-magazine'] = {name = 'piercing-shotgun-pellet', count = 16, max_range = 24, tick_speed = 1}, - ['uranium-rounds-magazine'] = {name = 'piercing-shotgun-pellet', count = 32, max_range = 24, tick_speed = 1}, - ['cliff-explosives'] = {name = 'cliff-explosives', count = 1, max_range = 48, tick_speed = 2} + ['lubricant-barrel'] = { name = 'acid-stream-spitter-big', count = 3, max_range = 16, tick_speed = 1 }, + ['shotgun-shell'] = { name = 'shotgun-pellet', count = 16, max_range = 24, tick_speed = 1 }, + ['piercing-shotgun-shell'] = { name = 'piercing-shotgun-pellet', count = 16, max_range = 24, tick_speed = 1 }, + ['firearm-magazine'] = { name = 'shotgun-pellet', count = 16, max_range = 24, tick_speed = 1 }, + ['piercing-rounds-magazine'] = { name = 'piercing-shotgun-pellet', count = 16, max_range = 24, tick_speed = 1 }, + ['uranium-rounds-magazine'] = { name = 'piercing-shotgun-pellet', count = 32, max_range = 24, tick_speed = 1 }, + ['cliff-explosives'] = { name = 'cliff-explosives', count = 1, max_range = 48, tick_speed = 2 } } Public.get_projectiles = Public.projectile_types diff --git a/utils/functions/room_generator.lua b/utils/functions/room_generator.lua index cca03f58..7b54e815 100644 --- a/utils/functions/room_generator.lua +++ b/utils/functions/room_generator.lua @@ -399,7 +399,7 @@ function Public.draw_random_room(surface, position, shape) for _, tile in pairs(room.room_border_tiles) do surface.set_tiles({ { name = 'dirt-7', position = tile.position } }, true) if math_random(1, 2) == 1 then - surface.create_entity({ name = 'rock-big', position = tile.position }) + surface.create_entity({ name = 'big-rock', position = tile.position }) end end diff --git a/utils/terrain_layouts/caves.lua b/utils/terrain_layouts/caves.lua index 381aecfb..5196847c 100644 --- a/utils/terrain_layouts/caves.lua +++ b/utils/terrain_layouts/caves.lua @@ -27,7 +27,7 @@ local math_random = math.random local math_floor = math.floor local math_abs = math.abs -local rock_raffle = { 'sand-rock-big', 'sand-rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-big', 'rock-huge' } +local rock_raffle = { 'big-sand-rock', 'big-sand-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'big-rock', 'huge-rock' } local size_of_rock_raffle = #rock_raffle local function place_entity(surface, position)