175 lines
322 KiB
JavaScript
175 lines
322 KiB
JavaScript
_TD.a.push(function (TD) {
|
|
var _stage_main_init = function () {
|
|
var act = new TD.Act(this, "act-1"), scene = new TD.Scene(act, "scene-1"), cfg = TD.getDefaultStageData(window.selectedLevelName || "scene_level_1");
|
|
this.config = cfg.config; TD.life = this.config.life; TD.score = this.config.score; TD.difficulty = this.config.difficulty; TD.wave_damage = this.config.wave_damage;
|
|
TD.base_health = 1000; // NEW: Siege Mode Base Health
|
|
|
|
// Fix: Actually trigger the UI to update to the selected faction right when the game starts
|
|
if (TD.loadFaction) {
|
|
TD.loadFaction(window.selectedFaction || "NCR");
|
|
}
|
|
|
|
// NEW: Override config money based on difficulty
|
|
|
|
|
|
|
|
if (TD.difficulty < 1) TD.money = 800;
|
|
else if (TD.difficulty > 1) TD.money = 200;
|
|
else TD.money = 400;
|
|
|
|
// Apply the specific map image to the board if it exists in the config block
|
|
if (cfg.bg_image) {
|
|
var board = document.getElementById("td-board");
|
|
if (board) {
|
|
board.style.backgroundImage = "url('" + cfg.bg_image + "')";
|
|
board.style.backgroundSize = "100% 100%"; // Stretches exactly to the 1920x900 aspect ratio
|
|
board.style.backgroundRepeat = "no-repeat";
|
|
}
|
|
}
|
|
|
|
var map = new TD.Map("main-map", TD.lang.mix({ scene: scene, is_main_map: true, step_level: 1, render_level: 2 }, cfg.map));
|
|
map.addToScene(scene, 1, 2, map.grids); scene.map = map;
|
|
scene.panel = new TD.Panel("panel", TD.lang.mix({ scene: scene, main_map: map, step_level: 1, render_level: 7 }, cfg.panel));
|
|
this.newWave = cfg.newWave; this.map = map; this.wait_new_wave = this.config.wait_new_wave;
|
|
},
|
|
_stage_main_step2 = function () {
|
|
var scene = this.current_act.current_scene, wave = scene.wave;
|
|
if (scene.state != 1) { return; }
|
|
|
|
if (window.is_demo_mode) return; // DEMO OVERRIDE: Disable wave logic entirely
|
|
|
|
// CRITICAL FIX: A wave is only finished if there are no monsters ON the map, AND no monsters waiting in the spawn queue
|
|
if (this.map.monsters.length === 0 && this.map._wait_add_monsters === 0 && this.map._wait_add_monsters_arr.length === 0) {
|
|
|
|
|
|
// NEW: Campaign Map Transition Check
|
|
if (window.is_campaign_mode && wave >= 15) {
|
|
scene.pause();
|
|
|
|
if (!window.campaign_map_index) window.campaign_map_index = 1;
|
|
|
|
var cOverlay = document.getElementById("campaign-modal-overlay");
|
|
var cTitle = document.getElementById("campaign-modal-title");
|
|
var cDesc = document.getElementById("campaign-modal-desc");
|
|
var cSpecial = document.getElementById("campaign-special-reward");
|
|
var btnProceed = document.getElementById("campaign-btn-proceed");
|
|
|
|
if (window.campaign_map_index >= 16) {
|
|
// Game Won!
|
|
cTitle.innerText = "CAMPAIGN COMPLETE";
|
|
cDesc.innerText = "You have secured the wasteland!";
|
|
cSpecial.style.display = "none";
|
|
btnProceed.innerText = "MAIN MENU";
|
|
} else if (window.campaign_map_index % 4 === 0) {
|
|
// Chapter Finale (Map 4, 8, 12)
|
|
cTitle.innerText = "CHAPTER " + (window.campaign_map_index / 4) + " COMPLETE";
|
|
cDesc.innerText = "Sector secured. Select your reward before moving on.";
|
|
cSpecial.style.display = "block";
|
|
btnProceed.innerText = "PROCEED TO NEXT CHAPTER";
|
|
} else {
|
|
// Normal Map Transition
|
|
cTitle.innerText = "AREA CLEARED";
|
|
cDesc.innerText = "Threat neutralized. Moving to the next sector.";
|
|
cSpecial.style.display = "none";
|
|
btnProceed.innerText = "PROCEED TO NEXT AREA";
|
|
}
|
|
|
|
if (cOverlay) cOverlay.style.display = "flex";
|
|
TD.mouseHand(false);
|
|
return;
|
|
}
|
|
|
|
// Legacy auto-healing logic completely removed. Stimpaks are now mandatory!
|
|
|
|
if (this.wait_new_wave > 0) {
|
|
this.wait_new_wave--;
|
|
|
|
// PRE-GENERATE ENDLESS WAVES: We need to know what's coming during the countdown!
|
|
if (this.config.endless && !this.config.waves[wave + 1]) {
|
|
this.config.waves[wave + 1] = TD.makeMonsters(Math.min(Math.floor(Math.pow(wave + 1, 1.1)), this.config.max_monsters_per_wave));
|
|
}
|
|
return;
|
|
}
|
|
this.wait_new_wave = this.config.wait_new_wave; wave++; scene.wave = wave; this.newWave({ map: this.map, wave: wave });
|
|
}
|
|
};
|
|
|
|
TD.getDefaultStageData = function (k) {
|
|
|
|
var config_base = {
|
|
endless: false, wait_new_wave: TD.exp_fps * 5, difficulty: window.customDifficulty || 1.0, wave: 0, max_wave: 20, wave_damage: 0, max_monsters_per_wave: 100, money: 100000000, score: 0, life: 100,
|
|
waves: [ [], [[1, 0]], [[1, 0], [1, 1]], [[2, 0], [1, 1]], [[2, 0], [1, 1]], [[3, 0], [2, 1]], [[4, 0], [2, 1]], [[5, 0], [3, 1], [1, 2]], [[6, 0], [4, 1], [1, 2]], [[7, 0], [3, 1], [2, 2]], [[8, 0], [4, 1], [3, 2]] ]
|
|
};
|
|
|
|
// Ensure waves array is pre-populated up to wave 20 for campaign maps
|
|
for (var w = config_base.waves.length; w <= 20; w++) {
|
|
config_base.waves.push(TD.makeMonsters(Math.min(Math.floor(Math.pow(w, 1.1)), 100)));
|
|
}
|
|
|
|
var newWave_func = function (cfg) {
|
|
|
|
cfg = cfg || {}; var map = cfg.map, wave = cfg.wave || 1, wave_damage = TD.wave_damage || 0;
|
|
if (wave == 1) {} else if (wave_damage == 0) {
|
|
if (wave < 5) { TD.difficulty *= 1.05; } else if (TD.difficulty > 30) { TD.difficulty *= 1.1; } else { TD.difficulty *= 1.2; }
|
|
} else if (TD.wave_damage >= 50) { TD.difficulty *= 0.6; } else if (TD.wave_damage >= 30) { TD.difficulty *= 0.7; } else if (TD.wave_damage >= 20) { TD.difficulty *= 0.8; } else if (TD.wave_damage >= 10) { TD.difficulty *= 0.9; } else {
|
|
if (wave >= 10) TD.difficulty *= 1.05;
|
|
}
|
|
if (TD.difficulty < 1) TD.difficulty = 1;
|
|
if (TD.difficulty < 1) TD.difficulty = 1;
|
|
var wave_data = this.config.waves[wave] || TD.makeMonsters(Math.min(Math.floor(Math.pow(wave, 1.1)), this.config.max_monsters_per_wave));
|
|
|
|
// --- FIX: Clone the wave data so it isn't permanently deleted when the engine shifts it! ---
|
|
var wave_clone = [];
|
|
for (var i = 0; i < wave_data.length; i++) {
|
|
wave_clone.push(wave_data[i].slice());
|
|
}
|
|
map.addMonsters2(wave_clone); TD.wave_damage = 0;
|
|
};
|
|
|
|
|
|
var data = {
|
|
stage_main: { width: 1920 * _TD.retina, height: 900 * _TD.retina, init: _stage_main_init, step2: _stage_main_step2 },
|
|
|
|
scene_level_1: { custom_waves: {"1":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"2":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"3":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"4":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"5":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"6":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"7":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"8":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"9":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"10":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"11":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"12":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"13":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"14":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"15":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]}}, bg_image: 'assets/map_images/map_E02.jpg', map: { map_type: 'traditional', spawn_mode: 'random', grid_x: 32, grid_y: 15, x: 0, y: 0, entrances: [[0, 0]], exits: [[31, 14]], assets: [{ id: 'path_dirt_1780508299209_848', src: 'assets/images/path1.png', mx: 1, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299218_378', src: 'assets/images/path1.png', mx: 1, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299226_130', src: 'assets/images/path1.png', mx: 1, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299243_973', src: 'assets/images/path1.png', mx: 0, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299260_174', src: 'assets/images/path1.png', mx: 0, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299276_898', src: 'assets/images/path1.png', mx: 0, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299293_284', src: 'assets/images/path1.png', mx: 0, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299443_571', src: 'assets/images/path1.png', mx: 0, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299459_799', src: 'assets/images/path1.png', mx: 0, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299477_628', src: 'assets/images/path1.png', mx: 1, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299493_795', src: 'assets/images/path1.png', mx: 1, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299510_953', src: 'assets/images/path1.png', mx: 1, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299526_880', src: 'assets/images/path1.png', mx: 1, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299543_480', src: 'assets/images/path1.png', mx: 1, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299560_991', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299576_150', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299593_533', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299610_472', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299627_950', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299643_655', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299660_460', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299676_400', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299693_376', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299710_309', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299726_76', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299743_288', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299760_55', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299777_170', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299793_566', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299810_392', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299826_487', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299843_131', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299860_450', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299876_791', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299893_597', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299910_648', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299927_688', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299943_471', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299960_975', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508299976_758', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300043_620', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300065_872', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300077_708', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300093_406', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300110_847', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300127_942', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300143_113', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300160_456', src: 'assets/images/path1.png', mx: 5, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300176_560', src: 'assets/images/path1.png', mx: 5, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300193_189', src: 'assets/images/path1.png', mx: 5, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300210_572', src: 'assets/images/path1.png', mx: 5, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300227_244', src: 'assets/images/path1.png', mx: 5, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300243_390', src: 'assets/images/path1.png', mx: 5, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300260_651', src: 'assets/images/path1.png', mx: 5, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300277_760', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300294_725', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300310_311', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300327_154', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300344_913', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300360_786', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300377_654', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300393_53', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300410_545', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300427_459', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300443_558', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300460_820', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300477_196', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300510_112', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300543_411', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300560_499', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300627_647', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300643_54', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300660_291', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300677_16', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300694_821', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300744_86', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300794_187', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300810_555', src: 'assets/images/path1.png', mx: 6, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300827_225', src: 'assets/images/path1.png', mx: 6, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300843_475', src: 'assets/images/path1.png', mx: 6, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300860_837', src: 'assets/images/path1.png', mx: 7, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300877_95', src: 'assets/images/path1.png', mx: 7, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300894_227', src: 'assets/images/path1.png', mx: 7, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300910_58', src: 'assets/images/path1.png', mx: 7, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300927_538', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300944_239', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300960_345', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300977_649', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508300993_125', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301011_65', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301027_483', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301044_554', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301060_375', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301077_14', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301093_324', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301110_829', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301127_523', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301144_413', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301161_352', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301177_75', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301225_280', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301244_241', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301260_320', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301277_486', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301294_727', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301311_395', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301327_995', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301344_616', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301361_15', src: 'assets/images/path1.png', mx: 9, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301377_973', src: 'assets/images/path1.png', mx: 9, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301394_133', src: 'assets/images/path1.png', mx: 9, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301411_794', src: 'assets/images/path1.png', mx: 9, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301427_264', src: 'assets/images/path1.png', mx: 9, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301444_726', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301462_6', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301477_221', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301494_350', src: 'assets/images/path1.png', mx: 9, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301511_517', src: 'assets/images/path1.png', mx: 9, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301527_946', src: 'assets/images/path1.png', mx: 9, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301544_105', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301561_240', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301577_550', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301594_593', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301610_746', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301627_9', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301644_101', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301660_780', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301677_677', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301693_952', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301710_256', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301726_458', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301743_435', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301760_206', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301776_585', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301793_510', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301810_693', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301826_473', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301843_252', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301859_696', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301876_366', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301896_610', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301977_772', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508301993_996', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302010_246', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302026_636', src: 'assets/images/path1.png', mx: 10, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302043_258', src: 'assets/images/path1.png', mx: 10, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302060_875', src: 'assets/images/path1.png', mx: 10, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302076_820', src: 'assets/images/path1.png', mx: 10, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302093_628', src: 'assets/images/path1.png', mx: 10, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302110_986', src: 'assets/images/path1.png', mx: 11, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302127_488', src: 'assets/images/path1.png', mx: 11, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302143_282', src: 'assets/images/path1.png', mx: 11, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302161_885', src: 'assets/images/path1.png', mx: 12, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302176_737', src: 'assets/images/path1.png', mx: 12, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302193_17', src: 'assets/images/path1.png', mx: 12, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302210_467', src: 'assets/images/path1.png', mx: 13, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302226_727', src: 'assets/images/path1.png', mx: 13, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302243_772', src: 'assets/images/path1.png', mx: 13, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302260_786', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302277_213', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302293_26', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302310_272', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302328_408', src: 'assets/images/path1.png', mx: 15, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302343_386', src: 'assets/images/path1.png', mx: 15, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302360_673', src: 'assets/images/path1.png', mx: 15, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302376_328', src: 'assets/images/path1.png', mx: 15, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302393_303', src: 'assets/images/path1.png', mx: 15, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302410_81', src: 'assets/images/path1.png', mx: 16, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302427_777', src: 'assets/images/path1.png', mx: 16, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302443_969', src: 'assets/images/path1.png', mx: 16, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302460_20', src: 'assets/images/path1.png', mx: 16, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302477_6', src: 'assets/images/path1.png', mx: 17, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302493_652', src: 'assets/images/path1.png', mx: 17, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302510_480', src: 'assets/images/path1.png', mx: 17, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302527_749', src: 'assets/images/path1.png', mx: 17, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302544_953', src: 'assets/images/path1.png', mx: 17, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302560_83', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302577_741', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302594_766', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302610_732', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302629_722', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302643_101', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302660_379', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302677_935', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302693_881', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302710_933', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302727_556', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302744_408', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302760_332', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302777_191', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302794_521', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302936_211', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302944_867', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302977_266', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508302994_257', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303010_789', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303027_151', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303043_10', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303060_288', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303076_707', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303093_262', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303112_153', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303127_259', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303143_849', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303160_879', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303176_435', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303193_755', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303210_125', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303227_806', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303244_73', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303260_853', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303277_170', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303294_124', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303310_693', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303352_692', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303384_40', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303394_814', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303412_179', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303427_695', src: 'assets/images/path1.png', mx: 20, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303443_18', src: 'assets/images/path1.png', mx: 20, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303461_255', src: 'assets/images/path1.png', mx: 20, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303477_575', src: 'assets/images/path1.png', mx: 20, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303494_617', src: 'assets/images/path1.png', mx: 20, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303511_634', src: 'assets/images/path1.png', mx: 21, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303527_305', src: 'assets/images/path1.png', mx: 21, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303544_551', src: 'assets/images/path1.png', mx: 21, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303560_12', src: 'assets/images/path1.png', mx: 21, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303579_544', src: 'assets/images/path1.png', mx: 22, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303594_38', src: 'assets/images/path1.png', mx: 22, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303610_938', src: 'assets/images/path1.png', mx: 22, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303627_907', src: 'assets/images/path1.png', mx: 22, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303644_394', src: 'assets/images/path1.png', mx: 22, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303661_621', src: 'assets/images/path1.png', mx: 22, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303677_266', src: 'assets/images/path1.png', mx: 22, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303694_163', src: 'assets/images/path1.png', mx: 22, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303712_574', src: 'assets/images/path1.png', mx: 22, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303727_224', src: 'assets/images/path1.png', mx: 22, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303744_78', src: 'assets/images/path1.png', mx: 23, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303761_166', src: 'assets/images/path1.png', mx: 23, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303778_290', src: 'assets/images/path1.png', mx: 23, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303794_118', src: 'assets/images/path1.png', mx: 23, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303810_429', src: 'assets/images/path1.png', mx: 23, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303827_545', src: 'assets/images/path1.png', mx: 23, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303844_440', src: 'assets/images/path1.png', mx: 23, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303927_290', src: 'assets/images/path1.png', mx: 23, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303944_575', src: 'assets/images/path1.png', mx: 23, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303961_192', src: 'assets/images/path1.png', mx: 23, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303977_706', src: 'assets/images/path1.png', mx: 23, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508303995_722', src: 'assets/images/path1.png', mx: 23, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304010_793', src: 'assets/images/path1.png', mx: 23, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304027_112', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304044_528', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304061_947', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304078_340', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304094_247', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304111_936', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304127_947', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304144_504', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304161_530', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304177_450', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304194_439', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304211_921', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304228_698', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304244_773', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304261_577', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304278_279', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304294_534', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304311_469', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304327_615', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304394_308', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304411_239', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304428_430', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304444_336', src: 'assets/images/path1.png', mx: 23, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304461_909', src: 'assets/images/path1.png', mx: 24, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304477_517', src: 'assets/images/path1.png', mx: 24, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304494_188', src: 'assets/images/path1.png', mx: 24, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304511_660', src: 'assets/images/path1.png', mx: 25, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304527_629', src: 'assets/images/path1.png', mx: 25, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304544_624', src: 'assets/images/path1.png', mx: 25, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304561_82', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304578_291', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304594_74', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304611_210', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304628_901', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304644_106', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304661_710', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304816_113', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304828_232', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304844_525', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304861_972', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304878_778', src: 'assets/images/path1.png', mx: 26, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304894_84', src: 'assets/images/path1.png', mx: 26, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304911_289', src: 'assets/images/path1.png', mx: 26, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304928_627', src: 'assets/images/path1.png', mx: 26, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304946_573', src: 'assets/images/path1.png', mx: 26, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304961_721', src: 'assets/images/path1.png', mx: 26, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304977_617', src: 'assets/images/path1.png', mx: 26, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508304995_252', src: 'assets/images/path1.png', mx: 26, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305032_442', src: 'assets/images/path1.png', mx: 26, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305044_313', src: 'assets/images/path1.png', mx: 26, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305061_950', src: 'assets/images/path1.png', mx: 26, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305078_309', src: 'assets/images/path1.png', mx: 27, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305094_569', src: 'assets/images/path1.png', mx: 27, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305111_679', src: 'assets/images/path1.png', mx: 27, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305128_215', src: 'assets/images/path1.png', mx: 27, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305145_986', src: 'assets/images/path1.png', mx: 27, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305163_106', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305178_466', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305195_811', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305211_265', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305228_990', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305244_529', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305261_620', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305429_625', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305444_587', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305462_628', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305478_960', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305495_436', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305512_485', src: 'assets/images/path1.png', mx: 28, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305528_242', src: 'assets/images/path1.png', mx: 28, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305545_595', src: 'assets/images/path1.png', mx: 28, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305561_393', src: 'assets/images/path1.png', mx: 28, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305578_535', src: 'assets/images/path1.png', mx: 28, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305595_109', src: 'assets/images/path1.png', mx: 28, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305628_919', src: 'assets/images/path1.png', mx: 28, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305695_707', src: 'assets/images/path1.png', mx: 28, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305712_290', src: 'assets/images/path1.png', mx: 28, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305728_478', src: 'assets/images/path1.png', mx: 28, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305745_272', src: 'assets/images/path1.png', mx: 28, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305761_596', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305778_254', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305795_643', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305811_304', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305828_894', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305844_560', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305864_905', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305878_140', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305945_265', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305962_322', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305978_948', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508305995_459', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306011_499', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306028_291', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306045_568', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306062_421', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306079_988', src: 'assets/images/path1.png', mx: 29, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306095_858', src: 'assets/images/path1.png', mx: 29, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306113_142', src: 'assets/images/path1.png', mx: 29, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306128_898', src: 'assets/images/path1.png', mx: 29, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306145_652', src: 'assets/images/path1.png', mx: 29, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306162_209', src: 'assets/images/path1.png', mx: 29, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306178_480', src: 'assets/images/path1.png', mx: 29, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306195_205', src: 'assets/images/path1.png', mx: 29, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306212_290', src: 'assets/images/path1.png', mx: 30, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306228_168', src: 'assets/images/path1.png', mx: 30, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306245_394', src: 'assets/images/path1.png', mx: 30, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306262_6', src: 'assets/images/path1.png', mx: 30, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306279_384', src: 'assets/images/path1.png', mx: 30, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306295_997', src: 'assets/images/path1.png', mx: 30, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306312_525', src: 'assets/images/path1.png', mx: 31, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306329_175', src: 'assets/images/path1.png', mx: 31, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306345_647', src: 'assets/images/path1.png', mx: 31, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306362_831', src: 'assets/images/path1.png', mx: 31, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306378_686', src: 'assets/images/path1.png', mx: 31, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306395_867', src: 'assets/images/path1.png', mx: 31, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306413_709', src: 'assets/images/path1.png', mx: 31, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508306489_818', src: 'assets/images/path1.png', mx: 31, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317333_515', src: 'assets/images/path1.png', mx: 0, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317350_767', src: 'assets/images/path1.png', mx: 0, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317367_346', src: 'assets/images/path1.png', mx: 0, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317384_892', src: 'assets/images/path1.png', mx: 0, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317400_259', src: 'assets/images/path1.png', mx: 0, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317417_230', src: 'assets/images/path1.png', mx: 1, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317434_271', src: 'assets/images/path1.png', mx: 1, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317450_251', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317467_423', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317483_597', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317501_375', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317517_956', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317533_911', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317551_192', src: 'assets/images/path1.png', mx: 2, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317567_960', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317585_494', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317600_660', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317617_447', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317634_789', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317650_156', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317667_952', src: 'assets/images/path1.png', mx: 3, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317684_353', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317701_300', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317717_382', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317734_61', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317751_779', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317784_93', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317800_692', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317817_818', src: 'assets/images/path1.png', mx: 4, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317833_596', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317850_341', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317867_227', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317884_507', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317967_148', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508317984_798', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318000_910', src: 'assets/images/path1.png', mx: 5, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318017_326', src: 'assets/images/path1.png', mx: 5, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318033_924', src: 'assets/images/path1.png', mx: 5, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318050_530', src: 'assets/images/path1.png', mx: 5, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318067_449', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318084_592', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318101_693', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318117_361', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318134_888', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318151_259', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318167_452', src: 'assets/images/path1.png', mx: 5, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318184_13', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318200_702', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318217_481', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318234_78', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318250_920', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318267_516', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318284_764', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318301_143', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318317_610', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318334_638', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318351_459', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318368_575', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318384_305', src: 'assets/images/path1.png', mx: 5, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318400_474', src: 'assets/images/path1.png', mx: 6, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318417_584', src: 'assets/images/path1.png', mx: 6, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318434_458', src: 'assets/images/path1.png', mx: 6, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318451_40', src: 'assets/images/path1.png', mx: 6, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318467_193', src: 'assets/images/path1.png', mx: 7, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318484_560', src: 'assets/images/path1.png', mx: 7, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318501_261', src: 'assets/images/path1.png', mx: 7, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318517_250', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318534_522', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318551_253', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318568_442', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318584_65', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318680_245', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318701_24', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318717_518', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318734_487', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318751_741', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318768_676', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318784_4', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318800_700', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318867_718', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318888_438', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318901_473', src: 'assets/images/path1.png', mx: 9, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318918_874', src: 'assets/images/path1.png', mx: 9, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318935_211', src: 'assets/images/path1.png', mx: 9, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318951_399', src: 'assets/images/path1.png', mx: 9, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318969_413', src: 'assets/images/path1.png', mx: 9, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508318984_18', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319001_274', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319018_464', src: 'assets/images/path1.png', mx: 9, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319034_912', src: 'assets/images/path1.png', mx: 9, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319051_791', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319067_999', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319084_131', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319101_719', src: 'assets/images/path1.png', mx: 9, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319118_346', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319134_896', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319151_374', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319169_19', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319184_459', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319201_635', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319218_663', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319234_84', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319251_174', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319267_189', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319289_80', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319301_677', src: 'assets/images/path1.png', mx: 9, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319317_437', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319335_722', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319351_940', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319368_341', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319392_215', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319457_483', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319484_497', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319501_522', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319518_309', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319535_930', src: 'assets/images/path1.png', mx: 9, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319551_951', src: 'assets/images/path1.png', mx: 10, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319568_724', src: 'assets/images/path1.png', mx: 10, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319585_479', src: 'assets/images/path1.png', mx: 10, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319601_621', src: 'assets/images/path1.png', mx: 11, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319618_753', src: 'assets/images/path1.png', mx: 11, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319634_702', src: 'assets/images/path1.png', mx: 11, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319651_55', src: 'assets/images/path1.png', mx: 12, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319668_524', src: 'assets/images/path1.png', mx: 12, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319684_803', src: 'assets/images/path1.png', mx: 12, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319701_132', src: 'assets/images/path1.png', mx: 13, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319717_46', src: 'assets/images/path1.png', mx: 13, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319735_727', src: 'assets/images/path1.png', mx: 13, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319751_640', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319768_510', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319784_519', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319802_254', src: 'assets/images/path1.png', mx: 15, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319818_268', src: 'assets/images/path1.png', mx: 15, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319835_35', src: 'assets/images/path1.png', mx: 15, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319851_168', src: 'assets/images/path1.png', mx: 16, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319868_406', src: 'assets/images/path1.png', mx: 16, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319885_72', src: 'assets/images/path1.png', mx: 16, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319901_325', src: 'assets/images/path1.png', mx: 17, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319918_991', src: 'assets/images/path1.png', mx: 17, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319935_441', src: 'assets/images/path1.png', mx: 17, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319952_603', src: 'assets/images/path1.png', mx: 17, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319968_666', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508319986_645', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508320001_297', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508320018_520', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508320051_332', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508320068_594', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508320085_384', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508320185_249', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508320218_773', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508320235_410', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508320252_205', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780508320268_462', src: 'assets/images/path1.png', mx: 18, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }], grids_cfg: [{ pos: [0, 0], build_flag: 0 }, { pos: [1, 0], build_flag: 0 }, { pos: [2, 0], build_flag: 0 }, { pos: [3, 0], build_flag: 0 }, { pos: [4, 0], build_flag: 0 }, { pos: [5, 0], build_flag: 0 }, { pos: [5, 1], build_flag: 0 }, { pos: [5, 2], build_flag: 0 }, { pos: [5, 3], build_flag: 0 }, { pos: [6, 3], build_flag: 0 }, { pos: [7, 3], build_flag: 0 }, { pos: [8, 3], build_flag: 0 }, { pos: [9, 3], build_flag: 0 }, { pos: [9, 4], build_flag: 0 }, { pos: [9, 5], build_flag: 0 }, { pos: [9, 6], build_flag: 0 }, { pos: [9, 7], build_flag: 0 }, { pos: [9, 8], build_flag: 0 }, { pos: [19, 8], build_flag: 0 }, { pos: [20, 8], build_flag: 0 }, { pos: [21, 8], build_flag: 0 }, { pos: [22, 8], build_flag: 0 }, { pos: [23, 8], build_flag: 0 }, { pos: [9, 9], build_flag: 0 }, { pos: [19, 9], build_flag: 0 }, { pos: [23, 9], build_flag: 0 }, { pos: [9, 10], build_flag: 0 }, { pos: [10, 10], build_flag: 0 }, { pos: [11, 10], build_flag: 0 }, { pos: [12, 10], build_flag: 0 }, { pos: [13, 10], build_flag: 0 }, { pos: [14, 10], build_flag: 0 }, { pos: [15, 10], build_flag: 0 }, { pos: [16, 10], build_flag: 0 }, { pos: [17, 10], build_flag: 0 }, { pos: [18, 10], build_flag: 0 }, { pos: [19, 10], build_flag: 0 }, { pos: [23, 10], build_flag: 0 }, { pos: [23, 11], build_flag: 0 }, { pos: [24, 11], build_flag: 0 }, { pos: [25, 11], build_flag: 0 }, { pos: [26, 11], build_flag: 0 }, { pos: [26, 12], build_flag: 0 }, { pos: [27, 12], build_flag: 0 }, { pos: [28, 12], build_flag: 0 }, { pos: [28, 13], build_flag: 0 }, { pos: [29, 13], build_flag: 0 }, { pos: [29, 14], build_flag: 0 }, { pos: [30, 14], build_flag: 0 }, { pos: [31, 14], build_flag: 0 }] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
|
|
scene_level_2: { bg_image: 'map02.jpg', map: { map_type: 'traditional', spawn_mode: 'random', grid_x: 32, grid_y: 15, x: 0, y: 0, entrances: [[8, 1]], exits: [[21, 12]], assets: [{ id: 'path_dirt_1780501861180_453', src: 'assets/images/path1.png', mx: 8, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861197_693', src: 'assets/images/path1.png', mx: 8, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861213_598', src: 'assets/images/path1.png', mx: 8, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861230_93', src: 'assets/images/path1.png', mx: 8, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861247_113', src: 'assets/images/path1.png', mx: 8, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861263_255', src: 'assets/images/path1.png', mx: 8, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861280_561', src: 'assets/images/path1.png', mx: 8, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861297_488', src: 'assets/images/path1.png', mx: 8, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861313_774', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861330_761', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861347_272', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861363_424', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861380_356', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861397_279', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861413_461', src: 'assets/images/path1.png', mx: 8, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861430_174', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861447_746', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861463_584', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861480_977', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861497_956', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861514_5', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861530_784', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861547_667', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861563_363', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861580_45', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861597_817', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861614_424', src: 'assets/images/path1.png', mx: 8, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861630_508', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861647_64', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861664_944', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861680_411', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861697_698', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861714_372', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861730_699', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861747_742', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861763_350', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861781_774', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861797_557', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861814_642', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861830_593', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861847_999', src: 'assets/images/path1.png', mx: 8, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861864_623', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861880_178', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861914_566', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861930_632', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861947_65', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861964_663', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861981_992', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501861997_217', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862080_908', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862097_597', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862114_555', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862130_823', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862147_237', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862164_522', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862180_711', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862197_808', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862214_521', src: 'assets/images/path1.png', mx: 10, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862231_995', src: 'assets/images/path1.png', mx: 10, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862247_601', src: 'assets/images/path1.png', mx: 10, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862265_364', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862280_840', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862297_293', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862314_497', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862331_307', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862347_463', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862364_932', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862381_78', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862397_236', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862414_181', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862430_355', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862448_999', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862464_107', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862481_575', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862497_630', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862514_190', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862531_127', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862547_734', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862564_176', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862581_744', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862597_188', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862614_464', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862630_47', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862649_164', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862666_79', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862683_983', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862699_249', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862716_758', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862733_376', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862749_421', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862766_113', src: 'assets/images/path1.png', mx: 13, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862783_797', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862799_647', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862816_189', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862833_634', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862850_61', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862866_672', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862883_512', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862900_484', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862916_138', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862933_5', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501862953_633', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863083_635', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863099_119', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863116_824', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863133_421', src: 'assets/images/path1.png', mx: 14, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863149_959', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863166_593', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863183_669', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863199_286', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863216_232', src: 'assets/images/path1.png', mx: 14, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863233_596', src: 'assets/images/path1.png', mx: 14, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863250_757', src: 'assets/images/path1.png', mx: 14, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863266_94', src: 'assets/images/path1.png', mx: 14, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863283_917', src: 'assets/images/path1.png', mx: 14, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863300_64', src: 'assets/images/path1.png', mx: 14, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863316_515', src: 'assets/images/path1.png', mx: 14, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863335_717', src: 'assets/images/path1.png', mx: 14, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863350_63', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863366_117', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863383_957', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863400_701', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863417_125', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863433_999', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863449_533', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863466_489', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863483_716', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863500_793', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863516_58', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863533_839', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863550_777', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863566_829', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863583_976', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863600_973', src: 'assets/images/path1.png', mx: 14, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863616_673', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863633_809', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863650_148', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863667_758', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863683_490', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863700_434', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863716_511', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863733_319', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863750_304', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863766_291', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863783_828', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863800_720', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863816_445', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863833_505', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863850_659', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863866_973', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863883_722', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863905_469', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863917_347', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863937_646', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863950_597', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863967_505', src: 'assets/images/path1.png', mx: 14, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501863983_433', src: 'assets/images/path1.png', mx: 14, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864000_536', src: 'assets/images/path1.png', mx: 14, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864017_67', src: 'assets/images/path1.png', mx: 14, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864033_191', src: 'assets/images/path1.png', mx: 14, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864050_925', src: 'assets/images/path1.png', mx: 14, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864167_747', src: 'assets/images/path1.png', mx: 14, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864233_948', src: 'assets/images/path1.png', mx: 14, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864250_45', src: 'assets/images/path1.png', mx: 14, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864268_994', src: 'assets/images/path1.png', mx: 15, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864284_606', src: 'assets/images/path1.png', mx: 15, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864300_678', src: 'assets/images/path1.png', mx: 15, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864317_837', src: 'assets/images/path1.png', mx: 15, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864333_411', src: 'assets/images/path1.png', mx: 16, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864350_951', src: 'assets/images/path1.png', mx: 16, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864367_558', src: 'assets/images/path1.png', mx: 16, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864384_177', src: 'assets/images/path1.png', mx: 16, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864400_60', src: 'assets/images/path1.png', mx: 17, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864418_430', src: 'assets/images/path1.png', mx: 17, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864433_329', src: 'assets/images/path1.png', mx: 17, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864450_150', src: 'assets/images/path1.png', mx: 18, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864467_249', src: 'assets/images/path1.png', mx: 18, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864484_617', src: 'assets/images/path1.png', mx: 18, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864500_568', src: 'assets/images/path1.png', mx: 18, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864516_723', src: 'assets/images/path1.png', mx: 18, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864533_36', src: 'assets/images/path1.png', mx: 19, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864550_230', src: 'assets/images/path1.png', mx: 19, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864567_104', src: 'assets/images/path1.png', mx: 19, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864584_35', src: 'assets/images/path1.png', mx: 19, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864600_848', src: 'assets/images/path1.png', mx: 19, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864617_680', src: 'assets/images/path1.png', mx: 20, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864633_206', src: 'assets/images/path1.png', mx: 20, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864650_646', src: 'assets/images/path1.png', mx: 20, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864667_816', src: 'assets/images/path1.png', mx: 20, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864684_377', src: 'assets/images/path1.png', mx: 20, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864700_8', src: 'assets/images/path1.png', mx: 20, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864717_494', src: 'assets/images/path1.png', mx: 20, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864733_602', src: 'assets/images/path1.png', mx: 20, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864750_478', src: 'assets/images/path1.png', mx: 20, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864767_542', src: 'assets/images/path1.png', mx: 20, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864784_91', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864817_86', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864833_321', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864850_466', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864900_150', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864917_71', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864934_808', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864950_290', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864967_705', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501864984_465', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501865000_796', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1780501865153_243', src: 'assets/images/path1.png', mx: 21, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }], grids_cfg: [{ pos: [8, 1], build_flag: 0 }, { pos: [8, 2], build_flag: 0 }, { pos: [8, 3], build_flag: 0 }, { pos: [8, 4], build_flag: 0 }, { pos: [8, 5], build_flag: 0 }, { pos: [8, 6], build_flag: 0 }, { pos: [9, 6], build_flag: 0 }, { pos: [10, 6], build_flag: 0 }, { pos: [11, 6], build_flag: 0 }, { pos: [12, 6], build_flag: 0 }, { pos: [13, 6], build_flag: 0 }, { pos: [14, 6], build_flag: 0 }, { pos: [14, 7], build_flag: 0 }, { pos: [14, 8], build_flag: 0 }, { pos: [14, 9], build_flag: 0 }, { pos: [14, 10], build_flag: 0 }, { pos: [14, 11], build_flag: 0 }, { pos: [14, 12], build_flag: 0 }, { pos: [15, 12], build_flag: 0 }, { pos: [16, 12], build_flag: 0 }, { pos: [17, 12], build_flag: 0 }, { pos: [18, 12], build_flag: 0 }, { pos: [19, 12], build_flag: 0 }, { pos: [20, 12], build_flag: 0 }, { pos: [21, 12], build_flag: 0 }] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
|
|
// --- CAMPAIGN MAPS CHAPTER 1 ---
|
|
campaign_map_1: { custom_waves: {"1":{"story_enable":true,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"CHAPTER 1\\nTHE RESOURCE WARS (2077)","desc":"ARCHIVAL SIMULATION: Anchorage, Alaska.\\n\\nTo train our elite Rangers, the Republic uses recovered pre-war VR pods. You are running the Sino-American War scenario. Hold the frozen trench lines against the invaders."},"BOS":{"title":"CHAPTER 1\\nTHE RESOURCE WARS (2077)","desc":"SCRIBE DATABANKS: Anchorage Simulation.\\n\\nPaladins must learn the history of pre-war military tactics. Enter the simulation and command the front lines in the freezing Alaskan mountains."},"MINUTEMEN":{"title":"CHAPTER 1\\nTHE RESOURCE WARS (2077)","desc":"THE ANCESTOR'S TALE: Anchorage.\\n\\nBefore the bombs, men fought in the freezing cold of Alaska to protect their homes. We study the journals of these old-world soldiers to understand true defensive warfare. Relive the battle."},"RAIDERS":{"title":"CHAPTER 1\\nTHE RESOURCE WARS (2077)","desc":"THE MURDER SIMULATOR: Anchorage.\\n\\nWe found an old Vault-Tec VR pod, hot-wired it, and pumped psycho through the ventilators. It's an endless pre-war warzone. Jump in and start killing!"}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"hidden","tower_4":"hidden","tower_5":"hidden","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":6,"monster_idx":0}]},"2":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"hidden","tower_4":"hidden","tower_5":"hidden","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":12,"monster_idx":1}]},"3":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"hidden","tower_4":"hidden","tower_5":"hidden","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":15,"monster_idx":0}]},"4":{"story_enable":true,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":"Fast-moving burrowers detected! Standard rifles can't track them. Deploy rapid-fire Scrap Turrets immediately."},"BOS":{"title":"","desc":"Agile underground abominations inbound. Single-shot weapons are inefficient. Authorizing rapid-fire laser deployments to track them."},"MINUTEMEN":{"title":"","desc":"General, we've got fast critters rushing the lines! Standard muskets won't cut it. Set up Militia LMGs to mow them down!"},"RAIDERS":{"title":"","desc":"Little freaks are rushing us! Grab the automatic scrap-shooters and spray 'em down before they get through!"}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"hidden","tower_5":"hidden","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":10,"monster_idx":2},{"qty":10,"monster_idx":0}]},"5":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"hidden","tower_5":"hidden","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":12,"monster_idx":1},{"qty":8,"monster_idx":2},{"qty":4,"monster_idx":0}]},"6":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"hidden","tower_5":"hidden","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":6,"monster_idx":4}]},"7":{"story_enable":true,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":"Invisible Nightkin are sneaking past our lines! You must build Recon Outposts to strip their active camouflage."},"BOS":{"title":"","desc":"Cloaked mutant abominations detected. Standard targeting is failing. Deploy Sensor Relays to paint them for our turrets."},"MINUTEMEN":{"title":"","desc":"General, invisible mutants are slipping by in the shadows! Build Watchtowers so our men can spot them."},"RAIDERS":{"title":"","desc":"The cowards are using stealth boys! Build Alarm Posts to light 'em up so we can blast 'em!"}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"locked","tower_5":"hidden","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":4,"monster_idx":11},{"qty":10,"monster_idx":0},{"qty":5,"monster_idx":2}]},"8":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"locked","tower_5":"hidden","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":25,"monster_idx":0},{"qty":5,"monster_idx":11}]},"9":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"locked","tower_5":"hidden","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":3,"monster_idx":3},{"qty":14,"monster_idx":1}]},"10":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"locked","tower_5":"hidden","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":30,"monster_idx":1},{"qty":10,"monster_idx":2}]},"11":{"story_enable":true,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":"Massive armored infantry advancing. Light rounds are bouncing off. Heavy Troopers authorized—melt their armor with heavy fire!"},"BOS":{"title":"","desc":"Heavily armored mechanicals approaching in groups. Standard fire is insufficient. Heavy Knights authorized. Turn them to slag."},"MINUTEMEN":{"title":"","desc":"They're sending in heavily armored units! We need more stopping power. Deploy Minuteman Snipers to pierce their shells!"},"RAIDERS":{"title":"","desc":"Look at all that walking scrap! Send in The Forged and melt 'em down with heavy weapons!"}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"locked","tower_5":"locked","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":12,"monster_idx":4},{"qty":8,"monster_idx":1},{"qty":5,"monster_idx":0},{"qty":2,"monster_idx":2}]},"12":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"locked","tower_5":"locked","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":5,"monster_idx":3},{"qty":15,"monster_idx":2}]},"13":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"locked","tower_5":"locked","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":4,"monster_idx":5},{"qty":6,"monster_idx":11}]},"14":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"locked","tower_5":"locked","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":40,"monster_idx":0},{"qty":20,"monster_idx":1}]},"15":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"locked","tower_5":"locked","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"hidden"},"spawns":[{"qty":1,"monster_idx":6},{"qty":5,"monster_idx":3},{"qty":5,"monster_idx":5}]}}, bg_image: 'assets/map_images/mapA01.png', map: { map_type: 'traditional', spawn_mode: 'random', grid_x: 32, grid_y: 15, x: 0, y: 0, entrances: [[0, 7]], exits: [[31, 7]], assets: [{ id: 'path_dirt_1783975920785_893', src: 'assets/images/path1.png', mx: 0, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920801_499', src: 'assets/images/path1.png', mx: 0, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920822_47', src: 'assets/images/path1.png', mx: 0, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920839_750', src: 'assets/images/path1.png', mx: 0, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920855_880', src: 'assets/images/path1.png', mx: 0, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920872_182', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920889_665', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920905_401', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920923_34', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920939_659', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920956_513', src: 'assets/images/path1.png', mx: 2, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920972_213', src: 'assets/images/path1.png', mx: 2, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975920989_702', src: 'assets/images/path1.png', mx: 2, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921006_889', src: 'assets/images/path1.png', mx: 2, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921022_371', src: 'assets/images/path1.png', mx: 2, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921040_24', src: 'assets/images/path1.png', mx: 2, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921055_812', src: 'assets/images/path1.png', mx: 2, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921072_973', src: 'assets/images/path1.png', mx: 2, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921089_987', src: 'assets/images/path1.png', mx: 2, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921106_358', src: 'assets/images/path1.png', mx: 3, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921122_597', src: 'assets/images/path1.png', mx: 3, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921139_429', src: 'assets/images/path1.png', mx: 3, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921156_126', src: 'assets/images/path1.png', mx: 3, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921172_231', src: 'assets/images/path1.png', mx: 3, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921191_17', src: 'assets/images/path1.png', mx: 3, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921206_564', src: 'assets/images/path1.png', mx: 3, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921222_340', src: 'assets/images/path1.png', mx: 3, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921239_480', src: 'assets/images/path1.png', mx: 3, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921256_986', src: 'assets/images/path1.png', mx: 3, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921272_456', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921289_633', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921306_141', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921372_866', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921389_384', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921406_66', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921423_190', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921439_697', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921456_357', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921529_216', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921539_291', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921556_556', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921573_453', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921589_709', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921606_849', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921623_485', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921639_670', src: 'assets/images/path1.png', mx: 4, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921656_91', src: 'assets/images/path1.png', mx: 4, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921673_972', src: 'assets/images/path1.png', mx: 4, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921689_696', src: 'assets/images/path1.png', mx: 4, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921706_857', src: 'assets/images/path1.png', mx: 4, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921722_701', src: 'assets/images/path1.png', mx: 4, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921739_89', src: 'assets/images/path1.png', mx: 4, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921756_877', src: 'assets/images/path1.png', mx: 4, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921773_272', src: 'assets/images/path1.png', mx: 4, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921789_218', src: 'assets/images/path1.png', mx: 4, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921806_488', src: 'assets/images/path1.png', mx: 4, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921822_664', src: 'assets/images/path1.png', mx: 4, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921839_976', src: 'assets/images/path1.png', mx: 4, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921856_926', src: 'assets/images/path1.png', mx: 4, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921873_689', src: 'assets/images/path1.png', mx: 4, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921889_918', src: 'assets/images/path1.png', mx: 4, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921906_875', src: 'assets/images/path1.png', mx: 4, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921922_753', src: 'assets/images/path1.png', mx: 4, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921940_649', src: 'assets/images/path1.png', mx: 4, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921956_946', src: 'assets/images/path1.png', mx: 4, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921973_131', src: 'assets/images/path1.png', mx: 4, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975921989_854', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922006_840', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922023_332', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922039_986', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922056_834', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922073_494', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922089_322', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922106_375', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922123_847', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922139_537', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922156_828', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922173_274', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922189_859', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922206_969', src: 'assets/images/path1.png', mx: 4, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922222_652', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922239_418', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922256_801', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922273_172', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922290_939', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922306_936', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922323_585', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922340_248', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922356_950', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922465_357', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922473_551', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922490_914', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922506_50', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922523_472', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922539_767', src: 'assets/images/path1.png', mx: 4, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922556_490', src: 'assets/images/path1.png', mx: 5, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922573_770', src: 'assets/images/path1.png', mx: 5, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922589_17', src: 'assets/images/path1.png', mx: 5, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922607_807', src: 'assets/images/path1.png', mx: 5, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922623_297', src: 'assets/images/path1.png', mx: 5, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922640_521', src: 'assets/images/path1.png', mx: 5, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922656_551', src: 'assets/images/path1.png', mx: 5, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922674_38', src: 'assets/images/path1.png', mx: 5, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922690_156', src: 'assets/images/path1.png', mx: 5, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922706_538', src: 'assets/images/path1.png', mx: 5, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922723_819', src: 'assets/images/path1.png', mx: 6, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922740_720', src: 'assets/images/path1.png', mx: 6, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922756_48', src: 'assets/images/path1.png', mx: 6, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922773_592', src: 'assets/images/path1.png', mx: 6, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922790_668', src: 'assets/images/path1.png', mx: 6, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922806_61', src: 'assets/images/path1.png', mx: 6, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922823_306', src: 'assets/images/path1.png', mx: 7, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922840_651', src: 'assets/images/path1.png', mx: 7, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922857_645', src: 'assets/images/path1.png', mx: 7, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922873_551', src: 'assets/images/path1.png', mx: 7, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922890_811', src: 'assets/images/path1.png', mx: 7, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922906_808', src: 'assets/images/path1.png', mx: 7, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922923_566', src: 'assets/images/path1.png', mx: 7, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922940_14', src: 'assets/images/path1.png', mx: 7, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922956_904', src: 'assets/images/path1.png', mx: 7, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922973_880', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975922993_594', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923007_297', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923023_116', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923041_395', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923057_138', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923105_17', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923156_168', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923173_466', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923223_548', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923340_682', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923356_494', src: 'assets/images/path1.png', mx: 8, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923374_81', src: 'assets/images/path1.png', mx: 8, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923390_794', src: 'assets/images/path1.png', mx: 8, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923407_391', src: 'assets/images/path1.png', mx: 8, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923424_557', src: 'assets/images/path1.png', mx: 8, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923440_142', src: 'assets/images/path1.png', mx: 8, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923457_482', src: 'assets/images/path1.png', mx: 8, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923473_723', src: 'assets/images/path1.png', mx: 8, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923490_660', src: 'assets/images/path1.png', mx: 8, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923507_758', src: 'assets/images/path1.png', mx: 8, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923523_737', src: 'assets/images/path1.png', mx: 8, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923540_138', src: 'assets/images/path1.png', mx: 8, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923557_649', src: 'assets/images/path1.png', mx: 8, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923573_367', src: 'assets/images/path1.png', mx: 8, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923590_656', src: 'assets/images/path1.png', mx: 8, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923607_962', src: 'assets/images/path1.png', mx: 8, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923623_829', src: 'assets/images/path1.png', mx: 8, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923640_937', src: 'assets/images/path1.png', mx: 8, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923657_66', src: 'assets/images/path1.png', mx: 8, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923673_454', src: 'assets/images/path1.png', mx: 8, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923690_269', src: 'assets/images/path1.png', mx: 8, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923706_326', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923723_735', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923740_963', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923757_723', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923773_906', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923790_769', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923873_565', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923890_889', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923907_670', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923929_352', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923941_77', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923957_455', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923973_673', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975923990_931', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924007_210', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924024_341', src: 'assets/images/path1.png', mx: 8, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924041_33', src: 'assets/images/path1.png', mx: 9, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924057_797', src: 'assets/images/path1.png', mx: 9, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924074_457', src: 'assets/images/path1.png', mx: 9, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924090_48', src: 'assets/images/path1.png', mx: 9, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924107_870', src: 'assets/images/path1.png', mx: 9, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924124_322', src: 'assets/images/path1.png', mx: 10, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924140_184', src: 'assets/images/path1.png', mx: 10, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924157_144', src: 'assets/images/path1.png', mx: 10, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924174_577', src: 'assets/images/path1.png', mx: 10, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924190_722', src: 'assets/images/path1.png', mx: 10, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924207_230', src: 'assets/images/path1.png', mx: 10, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924224_316', src: 'assets/images/path1.png', mx: 10, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924241_9', src: 'assets/images/path1.png', mx: 10, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924257_335', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924274_134', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924290_299', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924307_523', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924324_404', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924340_330', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924357_59', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924374_285', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924391_925', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924407_39', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924424_925', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924440_151', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924457_824', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924474_241', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924490_482', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924508_768', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924524_225', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924540_112', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924557_43', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924574_868', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924591_142', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924607_820', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924624_465', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924640_900', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924657_119', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924674_624', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924690_776', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924707_288', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924724_671', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924740_898', src: 'assets/images/path1.png', mx: 15, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924757_234', src: 'assets/images/path1.png', mx: 15, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924774_823', src: 'assets/images/path1.png', mx: 15, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924792_13', src: 'assets/images/path1.png', mx: 15, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924807_964', src: 'assets/images/path1.png', mx: 15, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924824_70', src: 'assets/images/path1.png', mx: 15, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924841_943', src: 'assets/images/path1.png', mx: 16, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924857_193', src: 'assets/images/path1.png', mx: 16, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924874_248', src: 'assets/images/path1.png', mx: 16, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924891_741', src: 'assets/images/path1.png', mx: 16, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924907_856', src: 'assets/images/path1.png', mx: 16, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924924_379', src: 'assets/images/path1.png', mx: 16, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924941_307', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924958_857', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924974_583', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975924991_869', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925007_641', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925024_831', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925041_918', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925057_399', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925074_75', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925091_905', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925107_735', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925124_982', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925141_560', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925157_126', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925174_665', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925191_885', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925224_998', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925241_194', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925257_483', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925274_335', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925291_569', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925324_389', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925341_359', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925357_770', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925374_228', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925391_154', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925458_109', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925474_687', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925491_108', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925508_490', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925574_383', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925591_67', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925608_26', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925624_497', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925641_427', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925658_65', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925769_392', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925777_542', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925791_240', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925808_98', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925824_128', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925841_277', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925858_745', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925875_410', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925891_101', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925908_495', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925924_227', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925941_306', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925958_379', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925974_238', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975925991_871', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926008_23', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926024_680', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926042_783', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926058_779', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926076_150', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926091_653', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926108_117', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926125_82', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926141_51', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926158_844', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926175_920', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926191_20', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926208_507', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926224_836', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926241_257', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926258_179', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926274_210', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926291_80', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926308_391', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926325_402', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926341_606', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926358_518', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926391_124', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926408_43', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926424_204', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926473_347', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926491_981', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926508_255', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926525_576', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926541_174', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926558_321', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926575_53', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926591_972', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926608_438', src: 'assets/images/path1.png', mx: 19, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926625_857', src: 'assets/images/path1.png', mx: 20, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926641_949', src: 'assets/images/path1.png', mx: 20, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926658_229', src: 'assets/images/path1.png', mx: 20, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926675_859', src: 'assets/images/path1.png', mx: 20, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926692_480', src: 'assets/images/path1.png', mx: 20, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926708_825', src: 'assets/images/path1.png', mx: 20, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926725_894', src: 'assets/images/path1.png', mx: 20, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926741_446', src: 'assets/images/path1.png', mx: 20, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926758_545', src: 'assets/images/path1.png', mx: 20, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926775_574', src: 'assets/images/path1.png', mx: 21, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926791_913', src: 'assets/images/path1.png', mx: 21, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926808_494', src: 'assets/images/path1.png', mx: 21, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926825_679', src: 'assets/images/path1.png', mx: 21, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926841_312', src: 'assets/images/path1.png', mx: 21, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926858_265', src: 'assets/images/path1.png', mx: 21, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926875_180', src: 'assets/images/path1.png', mx: 21, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926892_505', src: 'assets/images/path1.png', mx: 21, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926908_57', src: 'assets/images/path1.png', mx: 21, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926925_640', src: 'assets/images/path1.png', mx: 22, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926943_720', src: 'assets/images/path1.png', mx: 22, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926958_289', src: 'assets/images/path1.png', mx: 22, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926975_983', src: 'assets/images/path1.png', mx: 22, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975926991_572', src: 'assets/images/path1.png', mx: 22, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927008_4', src: 'assets/images/path1.png', mx: 22, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927025_333', src: 'assets/images/path1.png', mx: 22, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927041_437', src: 'assets/images/path1.png', mx: 22, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927058_15', src: 'assets/images/path1.png', mx: 22, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927075_102', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927091_537', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927108_642', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927125_326', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927142_519', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927158_881', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927175_965', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927191_995', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927208_103', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927225_461', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927242_77', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927258_972', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927275_993', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927291_794', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927309_811', src: 'assets/images/path1.png', mx: 23, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927325_135', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927342_708', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927359_819', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927375_708', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927392_185', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927408_705', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927425_643', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927442_113', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927458_459', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927475_297', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927492_160', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927509_427', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927529_583', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927658_23', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927675_351', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927692_691', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927708_333', src: 'assets/images/path1.png', mx: 24, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927725_486', src: 'assets/images/path1.png', mx: 24, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927742_462', src: 'assets/images/path1.png', mx: 24, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927758_566', src: 'assets/images/path1.png', mx: 24, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927775_385', src: 'assets/images/path1.png', mx: 24, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927792_240', src: 'assets/images/path1.png', mx: 24, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927809_627', src: 'assets/images/path1.png', mx: 24, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927825_981', src: 'assets/images/path1.png', mx: 24, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927842_779', src: 'assets/images/path1.png', mx: 24, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927859_466', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927875_870', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927892_454', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927908_454', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927925_733', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927942_435', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927958_223', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927975_562', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975927992_223', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928008_536', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928025_888', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928042_110', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928059_132', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928075_906', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928092_929', src: 'assets/images/path1.png', mx: 24, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928109_523', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928125_829', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928142_485', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928159_97', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928176_797', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928192_433', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928209_506', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928226_54', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928249_82', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928359_770', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928376_652', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928392_666', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928409_880', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928425_334', src: 'assets/images/path1.png', mx: 24, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928442_975', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928459_331', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928476_247', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928492_860', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928509_955', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928527_606', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928542_964', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928559_90', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928576_224', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928592_884', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928609_316', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928626_93', src: 'assets/images/path1.png', mx: 25, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928642_705', src: 'assets/images/path1.png', mx: 26, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928659_425', src: 'assets/images/path1.png', mx: 26, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928676_589', src: 'assets/images/path1.png', mx: 26, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928693_923', src: 'assets/images/path1.png', mx: 26, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928709_366', src: 'assets/images/path1.png', mx: 26, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928729_560', src: 'assets/images/path1.png', mx: 26, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928742_703', src: 'assets/images/path1.png', mx: 26, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928759_424', src: 'assets/images/path1.png', mx: 26, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928777_616', src: 'assets/images/path1.png', mx: 26, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928792_223', src: 'assets/images/path1.png', mx: 27, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928809_203', src: 'assets/images/path1.png', mx: 27, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928826_74', src: 'assets/images/path1.png', mx: 27, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928842_402', src: 'assets/images/path1.png', mx: 27, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928859_965', src: 'assets/images/path1.png', mx: 27, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928876_327', src: 'assets/images/path1.png', mx: 27, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928893_9', src: 'assets/images/path1.png', mx: 27, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928909_657', src: 'assets/images/path1.png', mx: 27, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928926_406', src: 'assets/images/path1.png', mx: 28, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928943_557', src: 'assets/images/path1.png', mx: 28, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928959_97', src: 'assets/images/path1.png', mx: 28, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928976_17', src: 'assets/images/path1.png', mx: 28, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975928993_380', src: 'assets/images/path1.png', mx: 28, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929011_865', src: 'assets/images/path1.png', mx: 29, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929026_318', src: 'assets/images/path1.png', mx: 29, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929043_854', src: 'assets/images/path1.png', mx: 29, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929059_793', src: 'assets/images/path1.png', mx: 29, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929076_248', src: 'assets/images/path1.png', mx: 29, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929095_697', src: 'assets/images/path1.png', mx: 29, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929109_341', src: 'assets/images/path1.png', mx: 29, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929126_992', src: 'assets/images/path1.png', mx: 29, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929143_278', src: 'assets/images/path1.png', mx: 29, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929159_985', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929177_698', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929192_484', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929209_894', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929226_136', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929243_167', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929259_847', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929276_930', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929293_291', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929310_549', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929326_983', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929343_296', src: 'assets/images/path1.png', mx: 30, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929359_106', src: 'assets/images/path1.png', mx: 31, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929376_129', src: 'assets/images/path1.png', mx: 31, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929394_63', src: 'assets/images/path1.png', mx: 31, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929409_944', src: 'assets/images/path1.png', mx: 31, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929426_19', src: 'assets/images/path1.png', mx: 31, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929443_556', src: 'assets/images/path1.png', mx: 31, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929459_474', src: 'assets/images/path1.png', mx: 31, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929476_329', src: 'assets/images/path1.png', mx: 31, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929493_858', src: 'assets/images/path1.png', mx: 31, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1783975929601_712', src: 'assets/images/path1.png', mx: 31, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }], grids_cfg: [{ pos: [5, 0], passable_flag: 0, build_flag: 0 }, { pos: [17, 1], passable_flag: 0, build_flag: 0 }, { pos: [24, 2], passable_flag: 0, build_flag: 0 }, { pos: [30, 2], passable_flag: 0, build_flag: 0 }, { pos: [3, 3], passable_flag: 0, build_flag: 0 }, { pos: [22, 3], passable_flag: 0, build_flag: 0 }, { pos: [4, 4], passable_flag: 0, build_flag: 0 }, { pos: [7, 4], passable_flag: 0, build_flag: 0 }, { pos: [8, 4], passable_flag: 0, build_flag: 0 }, { pos: [0, 7], build_flag: 0 }, { pos: [1, 7], build_flag: 0 }, { pos: [2, 7], build_flag: 0 }, { pos: [3, 7], build_flag: 0 }, { pos: [4, 7], build_flag: 0 }, { pos: [8, 7], build_flag: 0 }, { pos: [9, 7], build_flag: 0 }, { pos: [10, 7], build_flag: 0 }, { pos: [11, 7], build_flag: 0 }, { pos: [12, 7], build_flag: 0 }, { pos: [13, 7], build_flag: 0 }, { pos: [14, 7], build_flag: 0 }, { pos: [15, 7], build_flag: 0 }, { pos: [16, 7], build_flag: 0 }, { pos: [17, 7], build_flag: 0 }, { pos: [18, 7], build_flag: 0 }, { pos: [19, 7], build_flag: 0 }, { pos: [24, 7], build_flag: 0 }, { pos: [25, 7], build_flag: 0 }, { pos: [26, 7], build_flag: 0 }, { pos: [27, 7], build_flag: 0 }, { pos: [28, 7], build_flag: 0 }, { pos: [29, 7], build_flag: 0 }, { pos: [30, 7], build_flag: 0 }, { pos: [31, 7], build_flag: 0 }, { pos: [4, 8], build_flag: 0 }, { pos: [8, 8], build_flag: 0 }, { pos: [19, 8], build_flag: 0 }, { pos: [24, 8], build_flag: 0 }, { pos: [4, 9], build_flag: 0 }, { pos: [6, 9], passable_flag: 0, build_flag: 0 }, { pos: [8, 9], build_flag: 0 }, { pos: [19, 9], build_flag: 0 }, { pos: [24, 9], build_flag: 0 }, { pos: [4, 10], build_flag: 0 }, { pos: [8, 10], build_flag: 0 }, { pos: [19, 10], build_flag: 0 }, { pos: [20, 10], build_flag: 0 }, { pos: [21, 10], build_flag: 0 }, { pos: [22, 10], build_flag: 0 }, { pos: [23, 10], build_flag: 0 }, { pos: [24, 10], build_flag: 0 }, { pos: [26, 10], passable_flag: 0, build_flag: 0 }, { pos: [2, 11], passable_flag: 0, build_flag: 0 }, { pos: [4, 11], build_flag: 0 }, { pos: [5, 11], build_flag: 0 }, { pos: [6, 11], build_flag: 0 }, { pos: [7, 11], build_flag: 0 }, { pos: [8, 11], build_flag: 0 }, { pos: [0, 13], passable_flag: 0, build_flag: 0 }, { pos: [3, 13], passable_flag: 0, build_flag: 0 }, { pos: [17, 13], passable_flag: 0, build_flag: 0 }, { pos: [28, 14], passable_flag: 0, build_flag: 0 }] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
|
|
campaign_map_2: { custom_waves: {"1":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"CHAPTER 1\\nTHE WINTER OFFENSIVE (DECEMBER 2077)","desc":"ARCHIVAL SIMULATION: Sector Zebra, Alaska. Months have passed. Deep winter has set in, and the enemy is throwing everything they have left at our main concrete bunker lines. Hold the fortified sector."},"BOS":{"title":"CHAPTER 1\\nTHE WINTER OFFENSIVE (DECEMBER 2077)","desc":"SCRIBE DATABANKS: The Siegfried Line. Winter, 2077. Command is transferred to the heavy bunker networks. Analyze how pre-war forces utilized concrete fortifications and heavy static defenses to freeze the enemy's momentum."},"MINUTEMEN":{"title":"CHAPTER 1\\nTHE WINTER OFFENSIVE (DECEMBER 2077)","desc":"THE ANCESTOR'S TALE: The Frozen Wall. Later that winter, the war reached its coldest peak. The ancestors stood shoulder-to-shoulder behind massive concrete barriers, keeping the fires burning while the enemy battered the gates."},"RAIDERS":{"title":"CHAPTER 1\\nTHE WINTER OFFENSIVE (DECEMBER 2077)","desc":"THE MURDER SIMULATOR: Concrete Cold-War. Time jump! It's deep winter now, and we're dug into a massive concrete bunker complex. They're throwing a massive army at this wall—let's paint the snow red!"}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"unlocked","tower_5":"locked","tower_6":"hidden","tower_7":"hidden","tower_8":"hidden","tower_9":"hidden","tower_10":"hidden","tower_11":"locked"},"spawns":[]},"2":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"unlocked","tower_5":"unlocked","tower_6":"unlocked","tower_7":"unlocked","tower_8":"unlocked","tower_9":"unlocked","tower_10":"unlocked","tower_11":"unlocked"},"spawns":[]},"3":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{"tower_1":"unlocked","tower_2":"unlocked","tower_3":"unlocked","tower_4":"unlocked","tower_5":"unlocked","tower_6":"unlocked","tower_7":"unlocked","tower_8":"unlocked","tower_9":"unlocked","tower_10":"unlocked","tower_11":"unlocked"},"spawns":[]},"4":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"5":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"6":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"7":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"8":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"9":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"10":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"11":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"12":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"13":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"14":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"15":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]}}, bg_image: 'assets/map_images/mapA02.png', map: { env_effect: { src: 'assets/images/haze.jpg', type: 'pan_left', opacity: 0.7, speed: 110 }, map_type: 'traditional', spawn_mode: 'random', grid_x: 32, grid_y: 15, x: 0, y: 0, entrances: [[1, 14]], exits: [[29, 0]], assets: [{ id: 'path_dirt_1784216787954_593', src: 'assets/images/path1.png', mx: 1, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788054_41', src: 'assets/images/path1.png', mx: 1, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788071_371', src: 'assets/images/path1.png', mx: 1, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788087_171', src: 'assets/images/path1.png', mx: 1, my: 14, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788105_705', src: 'assets/images/path1.png', mx: 1, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788121_999', src: 'assets/images/path1.png', mx: 1, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788138_148', src: 'assets/images/path1.png', mx: 1, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788155_810', src: 'assets/images/path1.png', mx: 1, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788171_373', src: 'assets/images/path1.png', mx: 1, my: 13, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788188_405', src: 'assets/images/path1.png', mx: 1, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788204_273', src: 'assets/images/path1.png', mx: 1, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788221_283', src: 'assets/images/path1.png', mx: 1, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788238_791', src: 'assets/images/path1.png', mx: 1, my: 12, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788254_590', src: 'assets/images/path1.png', mx: 1, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788271_617', src: 'assets/images/path1.png', mx: 1, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788288_171', src: 'assets/images/path1.png', mx: 1, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788304_102', src: 'assets/images/path1.png', mx: 1, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788321_341', src: 'assets/images/path1.png', mx: 1, my: 11, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788338_13', src: 'assets/images/path1.png', mx: 1, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788354_935', src: 'assets/images/path1.png', mx: 1, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788371_237', src: 'assets/images/path1.png', mx: 1, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788388_432', src: 'assets/images/path1.png', mx: 1, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788405_467', src: 'assets/images/path1.png', mx: 1, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788421_830', src: 'assets/images/path1.png', mx: 1, my: 10, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788437_851', src: 'assets/images/path1.png', mx: 1, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788454_662', src: 'assets/images/path1.png', mx: 1, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788471_896', src: 'assets/images/path1.png', mx: 1, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788488_550', src: 'assets/images/path1.png', mx: 1, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788504_916', src: 'assets/images/path1.png', mx: 1, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788521_945', src: 'assets/images/path1.png', mx: 1, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788538_812', src: 'assets/images/path1.png', mx: 1, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788554_641', src: 'assets/images/path1.png', mx: 1, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788571_413', src: 'assets/images/path1.png', mx: 1, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788588_449', src: 'assets/images/path1.png', mx: 1, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788604_580', src: 'assets/images/path1.png', mx: 1, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788621_824', src: 'assets/images/path1.png', mx: 1, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788638_239', src: 'assets/images/path1.png', mx: 1, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788654_123', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788671_509', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788688_363', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788705_717', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788721_570', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788738_375', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788754_117', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788771_464', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788788_406', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788804_134', src: 'assets/images/path1.png', mx: 1, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788821_350', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788838_443', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788855_64', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788872_226', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788888_769', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216788905_811', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789104_472', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789121_347', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789138_200', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789155_469', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789172_184', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789188_235', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789205_461', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789222_879', src: 'assets/images/path1.png', mx: 1, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789238_52', src: 'assets/images/path1.png', mx: 2, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789255_20', src: 'assets/images/path1.png', mx: 2, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789272_53', src: 'assets/images/path1.png', mx: 2, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789289_261', src: 'assets/images/path1.png', mx: 2, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789305_117', src: 'assets/images/path1.png', mx: 2, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789321_905', src: 'assets/images/path1.png', mx: 2, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789338_316', src: 'assets/images/path1.png', mx: 2, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789355_486', src: 'assets/images/path1.png', mx: 2, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789371_621', src: 'assets/images/path1.png', mx: 2, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789388_336', src: 'assets/images/path1.png', mx: 3, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789405_290', src: 'assets/images/path1.png', mx: 3, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789422_650', src: 'assets/images/path1.png', mx: 3, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789438_806', src: 'assets/images/path1.png', mx: 3, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789455_39', src: 'assets/images/path1.png', mx: 3, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789472_523', src: 'assets/images/path1.png', mx: 4, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789488_380', src: 'assets/images/path1.png', mx: 4, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789505_618', src: 'assets/images/path1.png', mx: 4, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789521_940', src: 'assets/images/path1.png', mx: 4, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789538_450', src: 'assets/images/path1.png', mx: 4, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789555_696', src: 'assets/images/path1.png', mx: 4, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789572_963', src: 'assets/images/path1.png', mx: 5, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789588_137', src: 'assets/images/path1.png', mx: 5, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789605_700', src: 'assets/images/path1.png', mx: 5, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789621_718', src: 'assets/images/path1.png', mx: 5, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789639_335', src: 'assets/images/path1.png', mx: 6, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789655_315', src: 'assets/images/path1.png', mx: 6, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789672_817', src: 'assets/images/path1.png', mx: 6, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789688_592', src: 'assets/images/path1.png', mx: 6, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789705_126', src: 'assets/images/path1.png', mx: 6, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789722_167', src: 'assets/images/path1.png', mx: 7, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789738_134', src: 'assets/images/path1.png', mx: 7, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789755_302', src: 'assets/images/path1.png', mx: 7, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789772_655', src: 'assets/images/path1.png', mx: 7, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789788_125', src: 'assets/images/path1.png', mx: 7, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789805_584', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789822_575', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789839_702', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789855_60', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789872_919', src: 'assets/images/path1.png', mx: 8, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789889_124', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789905_569', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789922_709', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789938_329', src: 'assets/images/path1.png', mx: 9, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789955_12', src: 'assets/images/path1.png', mx: 10, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789972_516', src: 'assets/images/path1.png', mx: 10, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216789988_665', src: 'assets/images/path1.png', mx: 10, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790005_241', src: 'assets/images/path1.png', mx: 10, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790022_522', src: 'assets/images/path1.png', mx: 10, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790038_857', src: 'assets/images/path1.png', mx: 10, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790055_758', src: 'assets/images/path1.png', mx: 10, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790072_192', src: 'assets/images/path1.png', mx: 10, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790088_425', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790105_759', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790122_738', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790138_282', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790155_81', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790172_776', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790188_763', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790205_994', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790389_195', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790406_1', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790422_843', src: 'assets/images/path1.png', mx: 11, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790439_169', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790455_145', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790472_77', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790488_940', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790505_926', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790522_7', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790539_996', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790555_604', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790572_715', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790589_583', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790605_204', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790622_360', src: 'assets/images/path1.png', mx: 11, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790639_337', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790655_480', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790672_716', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790689_737', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790706_438', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790722_601', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790739_312', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790756_470', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790772_773', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790789_541', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790805_590', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790822_612', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790839_384', src: 'assets/images/path1.png', mx: 11, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790855_62', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790872_890', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790889_705', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790906_806', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790922_415', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790956_641', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790972_888', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216790989_957', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791005_29', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791022_83', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791106_760', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791122_939', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791140_459', src: 'assets/images/path1.png', mx: 11, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791156_225', src: 'assets/images/path1.png', mx: 12, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791172_184', src: 'assets/images/path1.png', mx: 12, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791189_703', src: 'assets/images/path1.png', mx: 12, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791206_439', src: 'assets/images/path1.png', mx: 12, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791222_700', src: 'assets/images/path1.png', mx: 13, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791239_879', src: 'assets/images/path1.png', mx: 13, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791256_278', src: 'assets/images/path1.png', mx: 13, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791273_449', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791289_138', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791306_121', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791323_689', src: 'assets/images/path1.png', mx: 14, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791339_478', src: 'assets/images/path1.png', mx: 15, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791356_112', src: 'assets/images/path1.png', mx: 15, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791372_232', src: 'assets/images/path1.png', mx: 15, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791389_31', src: 'assets/images/path1.png', mx: 16, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791406_703', src: 'assets/images/path1.png', mx: 16, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791422_883', src: 'assets/images/path1.png', mx: 16, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791439_881', src: 'assets/images/path1.png', mx: 16, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791456_288', src: 'assets/images/path1.png', mx: 16, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791473_643', src: 'assets/images/path1.png', mx: 16, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791489_950', src: 'assets/images/path1.png', mx: 17, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791506_649', src: 'assets/images/path1.png', mx: 17, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791522_342', src: 'assets/images/path1.png', mx: 17, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791539_645', src: 'assets/images/path1.png', mx: 17, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791556_170', src: 'assets/images/path1.png', mx: 17, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791573_771', src: 'assets/images/path1.png', mx: 17, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791589_681', src: 'assets/images/path1.png', mx: 17, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791606_978', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791622_947', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791640_732', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791656_963', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791673_608', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791689_465', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791706_435', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791723_978', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791739_886', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791756_995', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791773_888', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791789_71', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791806_158', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791823_976', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791839_684', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791856_230', src: 'assets/images/path1.png', mx: 18, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791873_506', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791956_721', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791973_441', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216791989_742', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792006_780', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792023_836', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792040_704', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792056_45', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792073_907', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792090_766', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792188_482', src: 'assets/images/path1.png', mx: 19, my: 9, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792790_920', src: 'assets/images/path1.png', mx: 11, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792806_37', src: 'assets/images/path1.png', mx: 11, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792823_137', src: 'assets/images/path1.png', mx: 11, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792840_457', src: 'assets/images/path1.png', mx: 11, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792856_184', src: 'assets/images/path1.png', mx: 11, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792873_310', src: 'assets/images/path1.png', mx: 11, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792890_945', src: 'assets/images/path1.png', mx: 11, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792906_954', src: 'assets/images/path1.png', mx: 11, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792923_475', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792940_109', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792956_729', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792973_375', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216792990_413', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793006_989', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793023_724', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793040_382', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793056_550', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793073_157', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793090_241', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793106_598', src: 'assets/images/path1.png', mx: 11, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793123_297', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793140_744', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793157_992', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793173_916', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793190_852', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793206_259', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793223_310', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793240_579', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793256_896', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793273_377', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793290_32', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793307_130', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793323_278', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793373_169', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793390_563', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793406_10', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793424_48', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793440_410', src: 'assets/images/path1.png', mx: 11, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793457_715', src: 'assets/images/path1.png', mx: 12, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793473_460', src: 'assets/images/path1.png', mx: 12, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793490_387', src: 'assets/images/path1.png', mx: 12, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793506_491', src: 'assets/images/path1.png', mx: 12, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793523_339', src: 'assets/images/path1.png', mx: 12, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793540_349', src: 'assets/images/path1.png', mx: 13, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793557_990', src: 'assets/images/path1.png', mx: 13, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793573_719', src: 'assets/images/path1.png', mx: 13, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793590_524', src: 'assets/images/path1.png', mx: 13, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793607_988', src: 'assets/images/path1.png', mx: 13, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793623_558', src: 'assets/images/path1.png', mx: 14, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793640_509', src: 'assets/images/path1.png', mx: 14, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793657_287', src: 'assets/images/path1.png', mx: 14, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793673_674', src: 'assets/images/path1.png', mx: 14, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793690_525', src: 'assets/images/path1.png', mx: 14, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793707_116', src: 'assets/images/path1.png', mx: 14, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793723_594', src: 'assets/images/path1.png', mx: 15, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793740_9', src: 'assets/images/path1.png', mx: 15, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793757_273', src: 'assets/images/path1.png', mx: 15, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793773_353', src: 'assets/images/path1.png', mx: 15, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793790_988', src: 'assets/images/path1.png', mx: 15, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793807_158', src: 'assets/images/path1.png', mx: 15, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793823_297', src: 'assets/images/path1.png', mx: 16, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793840_256', src: 'assets/images/path1.png', mx: 16, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793857_989', src: 'assets/images/path1.png', mx: 16, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793874_322', src: 'assets/images/path1.png', mx: 16, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793890_192', src: 'assets/images/path1.png', mx: 16, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793907_219', src: 'assets/images/path1.png', mx: 16, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793923_631', src: 'assets/images/path1.png', mx: 17, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793940_526', src: 'assets/images/path1.png', mx: 17, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793957_848', src: 'assets/images/path1.png', mx: 17, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793973_626', src: 'assets/images/path1.png', mx: 17, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216793990_517', src: 'assets/images/path1.png', mx: 17, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794007_660', src: 'assets/images/path1.png', mx: 17, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794023_436', src: 'assets/images/path1.png', mx: 17, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794040_839', src: 'assets/images/path1.png', mx: 17, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794057_801', src: 'assets/images/path1.png', mx: 17, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794074_40', src: 'assets/images/path1.png', mx: 17, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794090_698', src: 'assets/images/path1.png', mx: 18, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794107_423', src: 'assets/images/path1.png', mx: 18, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794123_955', src: 'assets/images/path1.png', mx: 18, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794140_634', src: 'assets/images/path1.png', mx: 18, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794157_724', src: 'assets/images/path1.png', mx: 18, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794173_488', src: 'assets/images/path1.png', mx: 18, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794190_201', src: 'assets/images/path1.png', mx: 18, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794207_341', src: 'assets/images/path1.png', mx: 18, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794224_485', src: 'assets/images/path1.png', mx: 18, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794241_913', src: 'assets/images/path1.png', mx: 18, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794257_651', src: 'assets/images/path1.png', mx: 18, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794275_736', src: 'assets/images/path1.png', mx: 19, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794290_323', src: 'assets/images/path1.png', mx: 19, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794307_887', src: 'assets/images/path1.png', mx: 19, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794324_688', src: 'assets/images/path1.png', mx: 19, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794540_442', src: 'assets/images/path1.png', mx: 19, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794557_758', src: 'assets/images/path1.png', mx: 19, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794574_229', src: 'assets/images/path1.png', mx: 19, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794590_61', src: 'assets/images/path1.png', mx: 19, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794607_482', src: 'assets/images/path1.png', mx: 19, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794624_81', src: 'assets/images/path1.png', mx: 19, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794640_749', src: 'assets/images/path1.png', mx: 19, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794657_773', src: 'assets/images/path1.png', mx: 19, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794674_815', src: 'assets/images/path1.png', mx: 19, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794691_251', src: 'assets/images/path1.png', mx: 19, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794707_119', src: 'assets/images/path1.png', mx: 19, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794724_867', src: 'assets/images/path1.png', mx: 19, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794741_189', src: 'assets/images/path1.png', mx: 19, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794757_110', src: 'assets/images/path1.png', mx: 19, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794774_533', src: 'assets/images/path1.png', mx: 19, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794791_340', src: 'assets/images/path1.png', mx: 19, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794807_978', src: 'assets/images/path1.png', mx: 19, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794824_73', src: 'assets/images/path1.png', mx: 19, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794840_993', src: 'assets/images/path1.png', mx: 19, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794857_858', src: 'assets/images/path1.png', mx: 19, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794874_691', src: 'assets/images/path1.png', mx: 19, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794891_783', src: 'assets/images/path1.png', mx: 19, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794908_77', src: 'assets/images/path1.png', mx: 19, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794924_525', src: 'assets/images/path1.png', mx: 19, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794941_580', src: 'assets/images/path1.png', mx: 19, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794958_638', src: 'assets/images/path1.png', mx: 19, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794974_783', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216794990_566', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795007_32', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795024_399', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795041_942', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795057_370', src: 'assets/images/path1.png', mx: 19, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795074_60', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795091_336', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795107_210', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795124_794', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795141_107', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795157_92', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795174_897', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795191_662', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216795308_694', src: 'assets/images/path1.png', mx: 19, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796091_882', src: 'assets/images/path1.png', mx: 20, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796141_356', src: 'assets/images/path1.png', mx: 20, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796158_245', src: 'assets/images/path1.png', mx: 20, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796175_749', src: 'assets/images/path1.png', mx: 20, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796191_254', src: 'assets/images/path1.png', mx: 21, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796208_365', src: 'assets/images/path1.png', mx: 21, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796224_39', src: 'assets/images/path1.png', mx: 21, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796241_431', src: 'assets/images/path1.png', mx: 22, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796259_476', src: 'assets/images/path1.png', mx: 22, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796274_444', src: 'assets/images/path1.png', mx: 22, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796291_307', src: 'assets/images/path1.png', mx: 22, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796308_780', src: 'assets/images/path1.png', mx: 22, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796324_926', src: 'assets/images/path1.png', mx: 23, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796341_162', src: 'assets/images/path1.png', mx: 23, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796358_982', src: 'assets/images/path1.png', mx: 23, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796374_67', src: 'assets/images/path1.png', mx: 23, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796391_514', src: 'assets/images/path1.png', mx: 23, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796408_176', src: 'assets/images/path1.png', mx: 24, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796424_778', src: 'assets/images/path1.png', mx: 24, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796441_500', src: 'assets/images/path1.png', mx: 24, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796458_562', src: 'assets/images/path1.png', mx: 24, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796475_891', src: 'assets/images/path1.png', mx: 24, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796491_530', src: 'assets/images/path1.png', mx: 25, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796508_981', src: 'assets/images/path1.png', mx: 25, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796525_561', src: 'assets/images/path1.png', mx: 25, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796541_550', src: 'assets/images/path1.png', mx: 25, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796558_674', src: 'assets/images/path1.png', mx: 26, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796574_450', src: 'assets/images/path1.png', mx: 26, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796592_473', src: 'assets/images/path1.png', mx: 26, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796608_469', src: 'assets/images/path1.png', mx: 26, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796624_787', src: 'assets/images/path1.png', mx: 26, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796641_566', src: 'assets/images/path1.png', mx: 26, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796658_961', src: 'assets/images/path1.png', mx: 26, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796675_924', src: 'assets/images/path1.png', mx: 27, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796691_465', src: 'assets/images/path1.png', mx: 27, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796708_996', src: 'assets/images/path1.png', mx: 27, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796725_518', src: 'assets/images/path1.png', mx: 27, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796741_490', src: 'assets/images/path1.png', mx: 27, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796758_749', src: 'assets/images/path1.png', mx: 27, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796775_331', src: 'assets/images/path1.png', mx: 27, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796791_59', src: 'assets/images/path1.png', mx: 27, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796808_295', src: 'assets/images/path1.png', mx: 27, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796825_604', src: 'assets/images/path1.png', mx: 27, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796843_105', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796858_684', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796875_580', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796891_757', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796908_952', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796925_895', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796942_413', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796958_46', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796975_165', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216796991_762', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797008_767', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797025_867', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797041_130', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797058_155', src: 'assets/images/path1.png', mx: 28, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797075_105', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797092_74', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797109_778', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797125_493', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797142_858', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797158_749', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797175_974', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797192_473', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797208_472', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797225_459', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797242_528', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797259_647', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797359_477', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797375_592', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797392_79', src: 'assets/images/path1.png', mx: 29, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797409_332', src: 'assets/images/path1.png', mx: 29, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797425_16', src: 'assets/images/path1.png', mx: 29, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797442_935', src: 'assets/images/path1.png', mx: 29, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797459_524', src: 'assets/images/path1.png', mx: 29, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797475_790', src: 'assets/images/path1.png', mx: 29, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797492_657', src: 'assets/images/path1.png', mx: 29, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797509_434', src: 'assets/images/path1.png', mx: 29, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797525_344', src: 'assets/images/path1.png', mx: 29, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797542_90', src: 'assets/images/path1.png', mx: 29, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797559_140', src: 'assets/images/path1.png', mx: 29, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797575_720', src: 'assets/images/path1.png', mx: 29, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797592_229', src: 'assets/images/path1.png', mx: 29, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797609_835', src: 'assets/images/path1.png', mx: 29, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797625_541', src: 'assets/images/path1.png', mx: 29, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797642_725', src: 'assets/images/path1.png', mx: 29, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797659_101', src: 'assets/images/path1.png', mx: 29, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797675_844', src: 'assets/images/path1.png', mx: 29, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797692_225', src: 'assets/images/path1.png', mx: 29, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797709_409', src: 'assets/images/path1.png', mx: 29, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797725_438', src: 'assets/images/path1.png', mx: 29, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797742_995', src: 'assets/images/path1.png', mx: 29, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797759_495', src: 'assets/images/path1.png', mx: 29, my: 3, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797775_580', src: 'assets/images/path1.png', mx: 29, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797792_370', src: 'assets/images/path1.png', mx: 29, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797809_353', src: 'assets/images/path1.png', mx: 29, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797825_164', src: 'assets/images/path1.png', mx: 29, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797842_659', src: 'assets/images/path1.png', mx: 29, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797859_57', src: 'assets/images/path1.png', mx: 29, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797875_292', src: 'assets/images/path1.png', mx: 29, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797892_930', src: 'assets/images/path1.png', mx: 29, my: 2, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797909_57', src: 'assets/images/path1.png', mx: 29, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797926_737', src: 'assets/images/path1.png', mx: 29, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797942_529', src: 'assets/images/path1.png', mx: 29, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797959_970', src: 'assets/images/path1.png', mx: 29, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797975_318', src: 'assets/images/path1.png', mx: 29, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216797992_408', src: 'assets/images/path1.png', mx: 29, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798009_599', src: 'assets/images/path1.png', mx: 29, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798025_289', src: 'assets/images/path1.png', mx: 29, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798042_568', src: 'assets/images/path1.png', mx: 29, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798059_563', src: 'assets/images/path1.png', mx: 29, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798075_981', src: 'assets/images/path1.png', mx: 29, my: 1, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798092_554', src: 'assets/images/path1.png', mx: 29, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798109_858', src: 'assets/images/path1.png', mx: 29, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798126_750', src: 'assets/images/path1.png', mx: 29, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798142_777', src: 'assets/images/path1.png', mx: 29, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798159_331', src: 'assets/images/path1.png', mx: 29, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798176_766', src: 'assets/images/path1.png', mx: 29, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798192_289', src: 'assets/images/path1.png', mx: 29, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798209_682', src: 'assets/images/path1.png', mx: 29, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798226_683', src: 'assets/images/path1.png', mx: 29, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798242_306', src: 'assets/images/path1.png', mx: 29, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784216798340_149', src: 'assets/images/path1.png', mx: 29, my: 0, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138101_4', src: 'assets/images/path1.png', mx: 12, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138151_187', src: 'assets/images/path1.png', mx: 12, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138168_220', src: 'assets/images/path1.png', mx: 12, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138184_359', src: 'assets/images/path1.png', mx: 12, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138201_59', src: 'assets/images/path1.png', mx: 12, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138218_99', src: 'assets/images/path1.png', mx: 12, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138235_871', src: 'assets/images/path1.png', mx: 12, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138251_982', src: 'assets/images/path1.png', mx: 13, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138268_88', src: 'assets/images/path1.png', mx: 13, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138285_344', src: 'assets/images/path1.png', mx: 13, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138301_171', src: 'assets/images/path1.png', mx: 14, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138318_541', src: 'assets/images/path1.png', mx: 14, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138335_840', src: 'assets/images/path1.png', mx: 14, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138351_532', src: 'assets/images/path1.png', mx: 14, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138368_660', src: 'assets/images/path1.png', mx: 15, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138384_249', src: 'assets/images/path1.png', mx: 15, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138401_593', src: 'assets/images/path1.png', mx: 15, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138418_805', src: 'assets/images/path1.png', mx: 16, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138435_320', src: 'assets/images/path1.png', mx: 16, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138451_490', src: 'assets/images/path1.png', mx: 16, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138468_147', src: 'assets/images/path1.png', mx: 16, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138485_119', src: 'assets/images/path1.png', mx: 16, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138501_25', src: 'assets/images/path1.png', mx: 17, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138518_107', src: 'assets/images/path1.png', mx: 17, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138535_725', src: 'assets/images/path1.png', mx: 17, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138552_779', src: 'assets/images/path1.png', mx: 17, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138568_392', src: 'assets/images/path1.png', mx: 17, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138585_746', src: 'assets/images/path1.png', mx: 17, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138602_292', src: 'assets/images/path1.png', mx: 17, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138618_684', src: 'assets/images/path1.png', mx: 17, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138635_234', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138651_121', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138668_452', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138685_765', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138701_261', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138718_207', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138735_408', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138752_575', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138768_163', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138785_167', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138802_950', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138868_784', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138885_366', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138901_180', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138919_404', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138935_799', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138952_909', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138968_755', src: 'assets/images/path1.png', mx: 18, my: 4, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217138985_441', src: 'assets/images/path1.png', mx: 18, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139018_329', src: 'assets/images/path1.png', mx: 18, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139035_192', src: 'assets/images/path1.png', mx: 18, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139052_278', src: 'assets/images/path1.png', mx: 18, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139068_867', src: 'assets/images/path1.png', mx: 18, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139085_345', src: 'assets/images/path1.png', mx: 18, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139102_616', src: 'assets/images/path1.png', mx: 18, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139118_987', src: 'assets/images/path1.png', mx: 18, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139135_43', src: 'assets/images/path1.png', mx: 17, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139152_715', src: 'assets/images/path1.png', mx: 17, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139168_427', src: 'assets/images/path1.png', mx: 17, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139185_75', src: 'assets/images/path1.png', mx: 17, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139202_243', src: 'assets/images/path1.png', mx: 17, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139218_228', src: 'assets/images/path1.png', mx: 16, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139235_70', src: 'assets/images/path1.png', mx: 16, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139252_716', src: 'assets/images/path1.png', mx: 16, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139269_975', src: 'assets/images/path1.png', mx: 16, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139285_822', src: 'assets/images/path1.png', mx: 15, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139302_446', src: 'assets/images/path1.png', mx: 15, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139319_556', src: 'assets/images/path1.png', mx: 15, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139335_753', src: 'assets/images/path1.png', mx: 15, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139352_811', src: 'assets/images/path1.png', mx: 15, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139368_160', src: 'assets/images/path1.png', mx: 15, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139385_367', src: 'assets/images/path1.png', mx: 14, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139402_927', src: 'assets/images/path1.png', mx: 14, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139419_893', src: 'assets/images/path1.png', mx: 14, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139435_782', src: 'assets/images/path1.png', mx: 14, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139452_804', src: 'assets/images/path1.png', mx: 14, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139469_800', src: 'assets/images/path1.png', mx: 14, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139485_633', src: 'assets/images/path1.png', mx: 14, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139502_116', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139519_400', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139535_969', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139552_62', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139569_536', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139585_827', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139602_95', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139619_54', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139635_490', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139652_100', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139669_595', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139685_4', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139702_73', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139719_676', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139736_446', src: 'assets/images/path1.png', mx: 13, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139753_470', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139769_654', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139785_945', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139802_822', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139819_440', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139836_476', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139852_317', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139869_476', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139902_516', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139919_663', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139936_105', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139952_319', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139969_200', src: 'assets/images/path1.png', mx: 12, my: 5, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217139985_205', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140002_980', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140019_475', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140052_65', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140069_104', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140086_243', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140102_796', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140119_691', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140136_202', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140152_911', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140169_721', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140185_634', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140202_676', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140219_67', src: 'assets/images/path1.png', mx: 12, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140686_8', src: 'assets/images/path1.png', mx: 18, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140702_250', src: 'assets/images/path1.png', mx: 18, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140719_147', src: 'assets/images/path1.png', mx: 18, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140736_504', src: 'assets/images/path1.png', mx: 18, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140753_454', src: 'assets/images/path1.png', mx: 18, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140769_834', src: 'assets/images/path1.png', mx: 18, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140836_207', src: 'assets/images/path1.png', mx: 18, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140853_318', src: 'assets/images/path1.png', mx: 18, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140869_266', src: 'assets/images/path1.png', mx: 18, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140886_494', src: 'assets/images/path1.png', mx: 18, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217140903_602', src: 'assets/images/path1.png', mx: 18, my: 6, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141003_704', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141019_161', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141036_915', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141053_492', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141069_91', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141086_175', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141103_994', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141119_673', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141136_609', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141153_423', src: 'assets/images/path1.png', mx: 18, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141169_885', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141186_146', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141203_585', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141219_756', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141236_441', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141253_772', src: 'assets/images/path1.png', mx: 17, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141270_717', src: 'assets/images/path1.png', mx: 16, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141286_994', src: 'assets/images/path1.png', mx: 16, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141304_111', src: 'assets/images/path1.png', mx: 16, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141319_907', src: 'assets/images/path1.png', mx: 16, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141336_175', src: 'assets/images/path1.png', mx: 15, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141353_566', src: 'assets/images/path1.png', mx: 15, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141369_660', src: 'assets/images/path1.png', mx: 15, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141386_896', src: 'assets/images/path1.png', mx: 15, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141403_691', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141419_96', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141436_365', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141453_691', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141469_881', src: 'assets/images/path1.png', mx: 14, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141486_639', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141503_627', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141520_344', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141536_256', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141553_827', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141570_927', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141586_228', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141603_569', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141619_962', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141636_90', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141653_986', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141670_28', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141686_685', src: 'assets/images/path1.png', mx: 13, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141703_81', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141720_503', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141736_977', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141753_481', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141770_466', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141786_533', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141803_27', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141820_872', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141903_509', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141920_852', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141937_566', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141953_190', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141970_932', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217141986_970', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142003_102', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142020_162', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142036_79', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142053_95', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142070_890', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142087_961', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142103_728', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142120_721', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142137_277', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142153_514', src: 'assets/images/path1.png', mx: 12, my: 7, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142170_584', src: 'assets/images/path1.png', mx: 12, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142186_443', src: 'assets/images/path1.png', mx: 12, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142203_777', src: 'assets/images/path1.png', mx: 12, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142220_494', src: 'assets/images/path1.png', mx: 12, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142236_193', src: 'assets/images/path1.png', mx: 12, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142253_206', src: 'assets/images/path1.png', mx: 12, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142287_404', src: 'assets/images/path1.png', mx: 12, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142303_31', src: 'assets/images/path1.png', mx: 12, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142320_720', src: 'assets/images/path1.png', mx: 12, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142337_910', src: 'assets/images/path1.png', mx: 12, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142353_236', src: 'assets/images/path1.png', mx: 12, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142370_506', src: 'assets/images/path1.png', mx: 13, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142387_245', src: 'assets/images/path1.png', mx: 13, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142403_367', src: 'assets/images/path1.png', mx: 13, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142420_790', src: 'assets/images/path1.png', mx: 13, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142436_922', src: 'assets/images/path1.png', mx: 14, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142453_47', src: 'assets/images/path1.png', mx: 14, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142470_836', src: 'assets/images/path1.png', mx: 14, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142487_996', src: 'assets/images/path1.png', mx: 15, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142503_181', src: 'assets/images/path1.png', mx: 15, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142520_193', src: 'assets/images/path1.png', mx: 15, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142537_82', src: 'assets/images/path1.png', mx: 16, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142553_811', src: 'assets/images/path1.png', mx: 16, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142570_30', src: 'assets/images/path1.png', mx: 16, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142587_32', src: 'assets/images/path1.png', mx: 16, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142603_96', src: 'assets/images/path1.png', mx: 16, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142620_194', src: 'assets/images/path1.png', mx: 17, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142637_182', src: 'assets/images/path1.png', mx: 17, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142653_188', src: 'assets/images/path1.png', mx: 17, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142670_916', src: 'assets/images/path1.png', mx: 17, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142687_344', src: 'assets/images/path1.png', mx: 17, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142704_919', src: 'assets/images/path1.png', mx: 17, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142720_83', src: 'assets/images/path1.png', mx: 17, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142737_632', src: 'assets/images/path1.png', mx: 17, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142753_676', src: 'assets/images/path1.png', mx: 17, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142770_239', src: 'assets/images/path1.png', mx: 17, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142787_488', src: 'assets/images/path1.png', mx: 18, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142803_232', src: 'assets/images/path1.png', mx: 18, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142820_368', src: 'assets/images/path1.png', mx: 18, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142837_953', src: 'assets/images/path1.png', mx: 18, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142870_309', src: 'assets/images/path1.png', mx: 18, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142887_240', src: 'assets/images/path1.png', mx: 18, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142904_144', src: 'assets/images/path1.png', mx: 18, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217142920_315', src: 'assets/images/path1.png', mx: 18, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217143037_194', src: 'assets/images/path1.png', mx: 18, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217143071_466', src: 'assets/images/path1.png', mx: 18, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }, { id: 'path_dirt_1784217143160_657', src: 'assets/images/path1.png', mx: 18, my: 8, grid_x: 1, grid_y: 1, blocks_path: false, category: 'path' }], grids_cfg: [{ pos: [12, 0], passable_flag: 0, build_flag: 0 }, { pos: [29, 0], build_flag: 0 }, { pos: [12, 1], passable_flag: 0, build_flag: 0 }, { pos: [13, 1], passable_flag: 0, build_flag: 0 }, { pos: [14, 1], passable_flag: 0, build_flag: 0 }, { pos: [22, 1], passable_flag: 0, build_flag: 0 }, { pos: [29, 1], build_flag: 0 }, { pos: [6, 2], passable_flag: 0, build_flag: 0 }, { pos: [7, 2], passable_flag: 0, build_flag: 0 }, { pos: [23, 2], passable_flag: 0, build_flag: 0 }, { pos: [24, 2], passable_flag: 0, build_flag: 0 }, { pos: [29, 2], build_flag: 0 }, { pos: [3, 3], passable_flag: 0, build_flag: 0 }, { pos: [4, 3], passable_flag: 0, build_flag: 0 }, { pos: [5, 3], passable_flag: 0, build_flag: 0 }, { pos: [6, 3], passable_flag: 0, build_flag: 0 }, { pos: [11, 3], build_flag: 0 }, { pos: [12, 3], build_flag: 0 }, { pos: [13, 3], build_flag: 0 }, { pos: [14, 3], build_flag: 0 }, { pos: [15, 3], build_flag: 0 }, { pos: [16, 3], build_flag: 0 }, { pos: [17, 3], build_flag: 0 }, { pos: [18, 3], build_flag: 0 }, { pos: [19, 3], build_flag: 0 }, { pos: [23, 3], passable_flag: 0, build_flag: 0 }, { pos: [24, 3], passable_flag: 0, build_flag: 0 }, { pos: [29, 3], build_flag: 0 }, { pos: [5, 4], passable_flag: 0, build_flag: 0 }, { pos: [6, 4], passable_flag: 0, build_flag: 0 }, { pos: [7, 4], passable_flag: 0, build_flag: 0 }, { pos: [11, 4], build_flag: 0 }, { pos: [12, 4], build_flag: 0 }, { pos: [13, 4], build_flag: 0 }, { pos: [14, 4], build_flag: 0 }, { pos: [15, 4], build_flag: 0 }, { pos: [16, 4], build_flag: 0 }, { pos: [17, 4], build_flag: 0 }, { pos: [18, 4], build_flag: 0 }, { pos: [19, 4], build_flag: 0 }, { pos: [29, 4], build_flag: 0 }, { pos: [7, 5], passable_flag: 0, build_flag: 0 }, { pos: [11, 5], build_flag: 0 }, { pos: [12, 5], build_flag: 0 }, { pos: [13, 5], build_flag: 0 }, { pos: [14, 5], build_flag: 0 }, { pos: [15, 5], build_flag: 0 }, { pos: [16, 5], build_flag: 0 }, { pos: [17, 5], build_flag: 0 }, { pos: [18, 5], build_flag: 0 }, { pos: [19, 5], build_flag: 0 }, { pos: [29, 5], build_flag: 0 }, { pos: [1, 6], build_flag: 0 }, { pos: [2, 6], build_flag: 0 }, { pos: [3, 6], build_flag: 0 }, { pos: [4, 6], build_flag: 0 }, { pos: [5, 6], build_flag: 0 }, { pos: [6, 6], build_flag: 0 }, { pos: [7, 6], build_flag: 0 }, { pos: [8, 6], build_flag: 0 }, { pos: [9, 6], build_flag: 0 }, { pos: [10, 6], build_flag: 0 }, { pos: [11, 6], build_flag: 0 }, { pos: [12, 6], build_flag: 0 }, { pos: [13, 6], passable_flag: 0, build_flag: 0 }, { pos: [14, 6], passable_flag: 0, build_flag: 0 }, { pos: [15, 6], passable_flag: 0, build_flag: 0 }, { pos: [16, 6], passable_flag: 0, build_flag: 0 }, { pos: [17, 6], passable_flag: 0, build_flag: 0 }, { pos: [19, 6], build_flag: 0 }, { pos: [20, 6], build_flag: 0 }, { pos: [21, 6], build_flag: 0 }, { pos: [22, 6], build_flag: 0 }, { pos: [23, 6], build_flag: 0 }, { pos: [24, 6], build_flag: 0 }, { pos: [25, 6], build_flag: 0 }, { pos: [26, 6], build_flag: 0 }, { pos: [27, 6], build_flag: 0 }, { pos: [28, 6], build_flag: 0 }, { pos: [29, 6], build_flag: 0 }, { pos: [1, 7], build_flag: 0 }, { pos: [7, 7], passable_flag: 0, build_flag: 0 }, { pos: [11, 7], build_flag: 0 }, { pos: [12, 7], build_flag: 0 }, { pos: [13, 7], build_flag: 0 }, { pos: [14, 7], build_flag: 0 }, { pos: [15, 7], build_flag: 0 }, { pos: [16, 7], build_flag: 0 }, { pos: [17, 7], build_flag: 0 }, { pos: [18, 7], build_flag: 0 }, { pos: [19, 7], build_flag: 0 }, { pos: [1, 8], build_flag: 0 }, { pos: [11, 8], build_flag: 0 }, { pos: [12, 8], build_flag: 0 }, { pos: [13, 8], build_flag: 0 }, { pos: [14, 8], build_flag: 0 }, { pos: [15, 8], build_flag: 0 }, { pos: [16, 8], build_flag: 0 }, { pos: [17, 8], build_flag: 0 }, { pos: [18, 8], build_flag: 0 }, { pos: [19, 8], build_flag: 0 }, { pos: [1, 9], build_flag: 0 }, { pos: [11, 9], build_flag: 0 }, { pos: [12, 9], build_flag: 0 }, { pos: [13, 9], build_flag: 0 }, { pos: [14, 9], build_flag: 0 }, { pos: [15, 9], build_flag: 0 }, { pos: [16, 9], build_flag: 0 }, { pos: [17, 9], build_flag: 0 }, { pos: [18, 9], build_flag: 0 }, { pos: [19, 9], build_flag: 0 }, { pos: [1, 10], build_flag: 0 }, { pos: [6, 10], passable_flag: 0, build_flag: 0 }, { pos: [7, 10], passable_flag: 0, build_flag: 0 }, { pos: [8, 10], passable_flag: 0, build_flag: 0 }, { pos: [9, 10], passable_flag: 0, build_flag: 0 }, { pos: [27, 10], passable_flag: 0, build_flag: 0 }, { pos: [1, 11], build_flag: 0 }, { pos: [4, 11], passable_flag: 0, build_flag: 0 }, { pos: [5, 11], passable_flag: 0, build_flag: 0 }, { pos: [6, 11], passable_flag: 0, build_flag: 0 }, { pos: [7, 11], passable_flag: 0, build_flag: 0 }, { pos: [8, 11], passable_flag: 0, build_flag: 0 }, { pos: [9, 11], passable_flag: 0, build_flag: 0 }, { pos: [21, 11], passable_flag: 0, build_flag: 0 }, { pos: [27, 11], passable_flag: 0, build_flag: 0 }, { pos: [28, 11], passable_flag: 0, build_flag: 0 }, { pos: [1, 12], build_flag: 0 }, { pos: [3, 12], passable_flag: 0, build_flag: 0 }, { pos: [4, 12], passable_flag: 0, build_flag: 0 }, { pos: [5, 12], passable_flag: 0, build_flag: 0 }, { pos: [6, 12], passable_flag: 0, build_flag: 0 }, { pos: [18, 12], passable_flag: 0, build_flag: 0 }, { pos: [19, 12], passable_flag: 0, build_flag: 0 }, { pos: [20, 12], passable_flag: 0, build_flag: 0 }, { pos: [21, 12], passable_flag: 0, build_flag: 0 }, { pos: [1, 13], build_flag: 0 }, { pos: [17, 13], passable_flag: 0, build_flag: 0 }, { pos: [18, 13], passable_flag: 0, build_flag: 0 }, { pos: [1, 14], build_flag: 0 }, { pos: [18, 14], passable_flag: 0, build_flag: 0 }] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
campaign_map_3: { bg_image: "map01.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
|
|
|
|
campaign_map_4: { bg_image: "map02.jpg", map: { map_type: "siege", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 7], exit: [31, 7], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
|
|
// --- CAMPAIGN MAPS CHAPTER 2 ---
|
|
campaign_map_5: { bg_image: "map01.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
campaign_map_6: { bg_image: "map01.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
campaign_map_7: { bg_image: "map01.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
campaign_map_8: { bg_image: "map02.jpg", map: { map_type: "siege", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 7], exit: [31, 7], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
|
|
// --- CAMPAIGN MAPS CHAPTER 3 ---
|
|
campaign_map_9: { bg_image: "map01.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
campaign_map_10: { bg_image: "map01.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
campaign_map_11: { bg_image: "map01.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
campaign_map_12: { bg_image: "map02.jpg", map: { map_type: "siege", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 7], exit: [31, 7], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
|
|
// --- CAMPAIGN MAPS CHAPTER 4 ---
|
|
campaign_map_13: { bg_image: "map01.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
campaign_map_14: { bg_image: "map01.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
campaign_map_15: { bg_image: "map01.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
campaign_map_16: { bg_image: "map02.jpg", map: { map_type: "siege", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 7], exit: [31, 7], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
|
|
// --- DEMO MAPS ---
|
|
demo_map_1: { custom_waves: {"1":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"2":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"3":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"4":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"5":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"6":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"7":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"8":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"9":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"10":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"11":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"12":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"13":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"14":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]},"15":{"story_enable":false,"story_data":{"ALL":{"title":"","desc":""},"NCR":{"title":"","desc":""},"BOS":{"title":"","desc":""},"MINUTEMEN":{"title":"","desc":""},"RAIDERS":{"title":"","desc":""}},"towers":{},"spawns":[]}}, bg_image: 'assets/map_images/mapE01.jpg', map: { map_type: 'traditional', spawn_mode: 'random', grid_x: 32, grid_y: 15, x: 0, y: 0, entrances: [[0, 0], [31, 14]], exits: [[14, 0], [28, 0]], grids_cfg: [{ pos: [0, 0], build_flag: 0 }, { pos: [1, 0], build_flag: 0 }, { pos: [2, 0], build_flag: 0 }, { pos: [3, 0], build_flag: 0 }, { pos: [14, 0], build_flag: 0 }, { pos: [28, 0], build_flag: 0 }, { pos: [3, 1], build_flag: 0 }, { pos: [4, 1], build_flag: 0 }, { pos: [5, 1], build_flag: 0 }, { pos: [6, 1], build_flag: 0 }, { pos: [9, 1], passable_flag: 0, build_flag: 2, building: 'rk_7', building_level: 1 }, { pos: [14, 1], build_flag: 0 }, { pos: [28, 1], build_flag: 0 }, { pos: [6, 2], build_flag: 0 }, { pos: [7, 2], build_flag: 0 }, { pos: [14, 2], build_flag: 0 }, { pos: [15, 2], build_flag: 0 }, { pos: [28, 2], build_flag: 0 }, { pos: [3, 3], passable_flag: 0, build_flag: 2, building: 'ncr_3', building_level: 4 }, { pos: [5, 3], passable_flag: 0, build_flag: 2, building: 'ncr_1', building_level: 1 }, { pos: [7, 3], build_flag: 0 }, { pos: [15, 3], build_flag: 0 }, { pos: [16, 3], build_flag: 0 }, { pos: [17, 3], build_flag: 0 }, { pos: [19, 3], passable_flag: 0, build_flag: 2, building: 'ncr_3', building_level: 4 }, { pos: [21, 3], passable_flag: 0, build_flag: 2, building: 'bos_6', building_level: 4 }, { pos: [25, 3], build_flag: 0 }, { pos: [26, 3], build_flag: 0 }, { pos: [27, 3], build_flag: 0 }, { pos: [28, 3], build_flag: 0 }, { pos: [7, 4], build_flag: 0 }, { pos: [8, 4], build_flag: 0 }, { pos: [9, 4], passable_flag: 0, build_flag: 2, building: 'bos_6', building_level: 4 }, { pos: [13, 4], passable_flag: 0, build_flag: 2, building: 'bos_6', building_level: 4 }, { pos: [17, 4], build_flag: 0 }, { pos: [18, 4], build_flag: 0 }, { pos: [23, 4], build_flag: 0 }, { pos: [24, 4], build_flag: 0 }, { pos: [25, 4], build_flag: 0 }, { pos: [8, 5], build_flag: 0 }, { pos: [18, 5], build_flag: 0 }, { pos: [19, 5], build_flag: 0 }, { pos: [23, 5], build_flag: 0 }, { pos: [8, 6], build_flag: 0 }, { pos: [13, 6], passable_flag: 0, build_flag: 2, building: 'ncr_6', building_level: 4 }, { pos: [19, 6], build_flag: 0 }, { pos: [23, 6], build_flag: 0 }, { pos: [25, 6], passable_flag: 0, build_flag: 2, building: 'ncr_4', building_level: 1 }, { pos: [27, 6], passable_flag: 0, build_flag: 2, building: 'ncr_6', building_level: 4 }, { pos: [29, 6], passable_flag: 0, build_flag: 2, building: 'ncr_9', building_level: 1 }, { pos: [5, 7], passable_flag: 0, build_flag: 2, building: 'bos_7', building_level: 1 }, { pos: [8, 7], build_flag: 0 }, { pos: [9, 7], build_flag: 0 }, { pos: [19, 7], build_flag: 0 }, { pos: [21, 7], passable_flag: 0, build_flag: 2, building: 'rk_7', building_level: 1 }, { pos: [23, 7], build_flag: 0 }, { pos: [26, 7], passable_flag: 0, build_flag: 2, building: 'ncr_1', building_level: 1 }, { pos: [9, 8], build_flag: 0 }, { pos: [11, 8], passable_flag: 0, build_flag: 2, building: 'ncr_4', building_level: 1 }, { pos: [19, 8], build_flag: 0 }, { pos: [23, 8], build_flag: 0 }, { pos: [28, 8], passable_flag: 0, build_flag: 2, building: 'bos_7', building_level: 1 }, { pos: [7, 9], passable_flag: 0, build_flag: 2, building: 'ncr_3', building_level: 4 }, { pos: [9, 9], build_flag: 0 }, { pos: [16, 9], passable_flag: 0, build_flag: 2, building: 'ncr_3', building_level: 4 }, { pos: [18, 9], build_flag: 0 }, { pos: [19, 9], build_flag: 0 }, { pos: [23, 9], build_flag: 0 }, { pos: [24, 9], build_flag: 0 }, { pos: [30, 9], passable_flag: 0, build_flag: 2, building: 'mm_8', building_level: 4 }, { pos: [9, 10], build_flag: 0 }, { pos: [10, 10], build_flag: 0 }, { pos: [11, 10], build_flag: 0 }, { pos: [12, 10], build_flag: 0 }, { pos: [14, 10], passable_flag: 0, build_flag: 2, building: 'ncr_1', building_level: 1 }, { pos: [17, 10], build_flag: 0 }, { pos: [18, 10], build_flag: 0 }, { pos: [24, 10], build_flag: 0 }, { pos: [25, 10], build_flag: 0 }, { pos: [26, 10], build_flag: 0 }, { pos: [4, 11], passable_flag: 0, build_flag: 2, building: 'ncr_9', building_level: 1 }, { pos: [12, 11], build_flag: 0 }, { pos: [13, 11], build_flag: 0 }, { pos: [14, 11], build_flag: 0 }, { pos: [15, 11], build_flag: 0 }, { pos: [16, 11], build_flag: 0 }, { pos: [17, 11], build_flag: 0 }, { pos: [26, 11], build_flag: 0 }, { pos: [27, 11], build_flag: 0 }, { pos: [28, 11], build_flag: 0 }, { pos: [10, 12], passable_flag: 0, build_flag: 2, building: 'ncr_1', building_level: 1 }, { pos: [13, 12], build_flag: 0 }, { pos: [14, 12], build_flag: 0 }, { pos: [24, 12], passable_flag: 0, build_flag: 2, building: 'ncr_1', building_level: 1 }, { pos: [25, 12], passable_flag: 0, build_flag: 2, building: 'ncr_3', building_level: 4 }, { pos: [28, 12], build_flag: 0 }, { pos: [14, 13], passable_flag: 0, build_flag: 2, building: 'mm_8', building_level: 4 }, { pos: [18, 13], passable_flag: 0, build_flag: 2, building: 'bos_7', building_level: 1 }, { pos: [24, 13], passable_flag: 0, build_flag: 2, building: 'bos_6', building_level: 4 }, { pos: [28, 13], build_flag: 0 }, { pos: [29, 13], build_flag: 0 }, { pos: [30, 13], build_flag: 0 }, { pos: [30, 14], build_flag: 0 }, { pos: [31, 14], build_flag: 0 }] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
|
|
demo_map_2: { bg_image: "map02.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func },
|
|
demo_map_3: { bg_image: "map01.jpg", map: { map_type: "traditional", grid_x: 32, grid_y: 15, x: 0, y: 0, entrance: [0, 0], exit: [31, 14], grids_cfg: [] }, panel: { x: 1920, y: TD.padding, map: { grid_x: 3, grid_y: 3, x: 0, y: 110 * _TD.retina, grids_cfg: [] } }, config: config_base, newWave: newWave_func }
|
|
|
|
};
|
|
return data[k] || {};
|
|
|
|
};
|
|
});
|