diff --git a/app/Service/MDT/MDTMappingImportService.php b/app/Service/MDT/MDTMappingImportService.php index 351938c9d2..09dbc7a222 100644 --- a/app/Service/MDT/MDTMappingImportService.php +++ b/app/Service/MDT/MDTMappingImportService.php @@ -170,21 +170,23 @@ private function importNpcs(MappingVersion $newMappingVersion, MDTDungeon $mdtDu try { if ($newlyCreated ? $npc->save() : $npc->update()) { - if ($newlyCreated) { - // For new NPCs go back and create enemy forces for all historical mapping versions - $npc->createNpcEnemyForcesForExistingMappingVersions($mdtNpc->getCount()); - - $this->log->importNpcsSaveNewNpc($npc->id); - } else { - // Create new enemy forces for this NPC for this new mapping version - NpcEnemyForces::create([ - 'mapping_version_id' => $newMappingVersion->id, - 'npc_id' => $npc->id, - 'enemy_forces' => $mdtNpc->getCount(), - 'enemy_forces_teeming' => null, - ]); - - $this->log->importNpcsUpdateExistingNpc($npc->id); + if ($mdtNpc->getCount() > 0) { + if ($newlyCreated) { + // For new NPCs go back and create enemy forces for all historical mapping versions + $npc->createNpcEnemyForcesForExistingMappingVersions($mdtNpc->getCount()); + + $this->log->importNpcsSaveNewNpc($npc->id); + } else { + // Create new enemy forces for this NPC for this new mapping version + NpcEnemyForces::create([ + 'mapping_version_id' => $newMappingVersion->id, + 'npc_id' => $npc->id, + 'enemy_forces' => $mdtNpc->getCount(), + 'enemy_forces_teeming' => null, + ]); + + $this->log->importNpcsUpdateExistingNpc($npc->id); + } } // If shrouded (zul'gamux) update the mapping version to account for that @@ -261,7 +263,7 @@ private function importEnemies( // We ignore MDT's position - we want to keep agency in the location we place enemies still // since we value VERY MUCH the enemy location being accurate to where they are in-game if (!$forceImport) { - $fields = array_merge($fields, ['lat', 'lng']); + $fields = array_merge($fields, ['floor_id', 'lat', 'lng']); } $updatedFields = []; @@ -313,13 +315,13 @@ private function importEnemyPacks(MappingVersion $newMappingVersion, MDTDungeon ->get(); // Conserve the enemy_pack_id - $enemiesWithGroups = $mdtDungeon->getClonesAsEnemies($newMappingVersion, $dungeon->floors()->active()->get()); - $enemyPacks = $enemiesWithGroups->groupBy('enemy_pack_id'); + $mdtEnemiesWithGroups = $mdtDungeon->getClonesAsEnemies($newMappingVersion, $dungeon->floors()->active()->get()); + $mdtEnemyPacks = $mdtEnemiesWithGroups->groupBy('enemy_pack_id'); // Save enemy packs - foreach ($enemyPacks as $groupIndex => $enemiesWithGroupsByEnemyPack) { - /** @var $enemiesWithGroupsByEnemyPack Collection|Enemy[] */ - $enemiesWithGroupsByEnemyPack = $enemiesWithGroupsByEnemyPack + foreach ($mdtEnemyPacks as $groupIndex => $mdtEnemiesWithGroupsByEnemyPack) { + /** @var $mdtEnemiesWithGroupsByEnemyPack Collection|Enemy[] */ + $mdtEnemiesWithGroupsByEnemyPack = $mdtEnemiesWithGroupsByEnemyPack ->filter(function (Enemy $enemy) { return $enemy->teeming === null; }) @@ -334,7 +336,7 @@ private function importEnemyPacks(MappingVersion $newMappingVersion, MDTDungeon // We do not re-import the lat/lng from MDT - we allow ourselves to adjust the lat/lng, so we must // fetch the adjusted lat/lng by matching enemies with what we actually saved // 1. Get a list of unique keys which we must look for in the real enemy list - $enemiesWithGroupsByEnemyPackUniqueIds = $enemiesWithGroupsByEnemyPack->map(function (Enemy $enemy) { + $enemiesWithGroupsByEnemyPackUniqueIds = $mdtEnemiesWithGroupsByEnemyPack->map(function (Enemy $enemy) { return $enemy->getUniqueKey(); }); // 2. Find the enemies that were saved in the database by key @@ -344,7 +346,7 @@ private function importEnemyPacks(MappingVersion $newMappingVersion, MDTDungeon $enemyPack = EnemyPack::create([ 'mapping_version_id' => $newMappingVersion->id, - 'floor_id' => $enemiesWithGroupsByEnemyPack->first()->floor_id, + 'floor_id' => $boundingBoxEnemies->first()->floor_id, 'group' => $groupIndex, 'teeming' => null, 'faction' => Faction::FACTION_ANY, @@ -355,13 +357,13 @@ private function importEnemyPacks(MappingVersion $newMappingVersion, MDTDungeon if ($enemyPack === null) { throw new Exception('Unable to save enemy pack!'); } - $this->log->importEnemyPacksSaveNewEnemyPackOK($enemyPack->id, $enemiesWithGroupsByEnemyPack->count()); + $this->log->importEnemyPacksSaveNewEnemyPackOK($enemyPack->id, $mdtEnemiesWithGroupsByEnemyPack->count()); try { $this->log->importEnemyPacksCoupleEnemyToPackStart($enemyPack->id); // logger()->channel('stderr')->info(sprintf('- Enemy Pack %d OK (%d enemies)', $enemyPack->id, $enemiesWithGroupsByEnemyPack->count())); - foreach ($enemiesWithGroupsByEnemyPack as $enemyWithGroup) { + foreach ($mdtEnemiesWithGroupsByEnemyPack as $enemyWithGroup) { // In the list of enemies that we saved to the database, find the enemy that still had the group intact. // Write the saved enemy's enemy pack back to the database $savedEnemy = $this->findSavedEnemyFromCloneEnemy($savedEnemies, $enemyWithGroup->npc_id, $enemyWithGroup->mdt_id); diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/dungeon_floor_switch_markers.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/dungeon_floor_switch_markers.json index 0ae1e9f516..f4698b0035 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/dungeon_floor_switch_markers.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/dungeon_floor_switch_markers.json @@ -30,18 +30,8 @@ "lng": 244.25 }, { - "id": 1003, - "mapping_version_id": 276, - "floor_id": 253, - "source_floor_id": null, - "target_floor_id": 254, - "direction": null, - "lat": -198, - "lng": 244.25 - }, - { - "id": 1071, - "mapping_version_id": 282, + "id": 1131, + "mapping_version_id": 287, "floor_id": 253, "source_floor_id": null, "target_floor_id": 254, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/enemies.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/enemies.json index 1e5bf4aa3e..7abf6c082d 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/enemies.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/enemies.json @@ -1311,9 +1311,9 @@ "kill_priority": null }, { - "id": 43833, - "mapping_version_id": 276, - "enemy_pack_id": 8376, + "id": 45003, + "mapping_version_id": 287, + "enemy_pack_id": 8686, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 253, @@ -1334,9 +1334,9 @@ "kill_priority": null }, { - "id": 43834, - "mapping_version_id": 276, - "enemy_pack_id": 8376, + "id": 45004, + "mapping_version_id": 287, + "enemy_pack_id": 8686, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 253, @@ -1357,9 +1357,9 @@ "kill_priority": null }, { - "id": 43835, - "mapping_version_id": 276, - "enemy_pack_id": 8377, + "id": 45005, + "mapping_version_id": 287, + "enemy_pack_id": 8687, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 253, @@ -1380,9 +1380,9 @@ "kill_priority": null }, { - "id": 43836, - "mapping_version_id": 276, - "enemy_pack_id": 8377, + "id": 45006, + "mapping_version_id": 287, + "enemy_pack_id": 8687, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 253, @@ -1403,9 +1403,9 @@ "kill_priority": null }, { - "id": 43837, - "mapping_version_id": 276, - "enemy_pack_id": 8378, + "id": 45007, + "mapping_version_id": 287, + "enemy_pack_id": 8688, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 253, @@ -1426,9 +1426,9 @@ "kill_priority": null }, { - "id": 43838, - "mapping_version_id": 276, - "enemy_pack_id": 8378, + "id": 45008, + "mapping_version_id": 287, + "enemy_pack_id": 8688, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 253, @@ -1449,9 +1449,9 @@ "kill_priority": null }, { - "id": 43839, - "mapping_version_id": 276, - "enemy_pack_id": 8379, + "id": 45009, + "mapping_version_id": 287, + "enemy_pack_id": 8689, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 253, @@ -1472,9 +1472,9 @@ "kill_priority": null }, { - "id": 43840, - "mapping_version_id": 276, - "enemy_pack_id": 8379, + "id": 45010, + "mapping_version_id": 287, + "enemy_pack_id": 8689, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 253, @@ -1495,9 +1495,9 @@ "kill_priority": null }, { - "id": 43845, - "mapping_version_id": 276, - "enemy_pack_id": 8376, + "id": 45015, + "mapping_version_id": 287, + "enemy_pack_id": 8686, "enemy_patrol_id": null, "npc_id": 205384, "floor_id": 253, @@ -1518,9 +1518,9 @@ "kill_priority": null }, { - "id": 43846, - "mapping_version_id": 276, - "enemy_pack_id": 8377, + "id": 45016, + "mapping_version_id": 287, + "enemy_pack_id": 8687, "enemy_patrol_id": null, "npc_id": 205384, "floor_id": 253, @@ -1541,9 +1541,9 @@ "kill_priority": null }, { - "id": 43847, - "mapping_version_id": 276, - "enemy_pack_id": 8377, + "id": 45017, + "mapping_version_id": 287, + "enemy_pack_id": 8687, "enemy_patrol_id": null, "npc_id": 205384, "floor_id": 253, @@ -1564,9 +1564,9 @@ "kill_priority": null }, { - "id": 43848, - "mapping_version_id": 276, - "enemy_pack_id": 8378, + "id": 45018, + "mapping_version_id": 287, + "enemy_pack_id": 8688, "enemy_patrol_id": null, "npc_id": 205384, "floor_id": 253, @@ -1587,9 +1587,9 @@ "kill_priority": null }, { - "id": 43849, - "mapping_version_id": 276, - "enemy_pack_id": 8378, + "id": 45019, + "mapping_version_id": 287, + "enemy_pack_id": 8688, "enemy_patrol_id": null, "npc_id": 205384, "floor_id": 253, @@ -1610,9 +1610,9 @@ "kill_priority": null }, { - "id": 43850, - "mapping_version_id": 276, - "enemy_pack_id": 8379, + "id": 45020, + "mapping_version_id": 287, + "enemy_pack_id": 8689, "enemy_patrol_id": null, "npc_id": 205384, "floor_id": 253, @@ -1633,9 +1633,9 @@ "kill_priority": null }, { - "id": 43853, - "mapping_version_id": 276, - "enemy_pack_id": 8384, + "id": 45023, + "mapping_version_id": 287, + "enemy_pack_id": 8694, "enemy_patrol_id": null, "npc_id": 205435, "floor_id": 253, @@ -1656,9 +1656,9 @@ "kill_priority": null }, { - "id": 43854, - "mapping_version_id": 276, - "enemy_pack_id": 8384, + "id": 45024, + "mapping_version_id": 287, + "enemy_pack_id": 8694, "enemy_patrol_id": null, "npc_id": 205435, "floor_id": 253, @@ -1679,9 +1679,9 @@ "kill_priority": null }, { - "id": 43855, - "mapping_version_id": 276, - "enemy_pack_id": 8379, + "id": 45025, + "mapping_version_id": 287, + "enemy_pack_id": 8689, "enemy_patrol_id": null, "npc_id": 205435, "floor_id": 253, @@ -1702,9 +1702,9 @@ "kill_priority": null }, { - "id": 43856, - "mapping_version_id": 276, - "enemy_pack_id": 8379, + "id": 45026, + "mapping_version_id": 287, + "enemy_pack_id": 8689, "enemy_patrol_id": null, "npc_id": 205435, "floor_id": 253, @@ -1725,9 +1725,9 @@ "kill_priority": null }, { - "id": 43860, - "mapping_version_id": 276, - "enemy_pack_id": 8385, + "id": 45030, + "mapping_version_id": 287, + "enemy_pack_id": 8695, "enemy_patrol_id": null, "npc_id": 198995, "floor_id": 253, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/enemy_packs.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/enemy_packs.json index 56d9d916c0..b036aef0eb 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/enemy_packs.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/enemy_packs.json @@ -216,8 +216,8 @@ "vertices_json": "[{\"lat\":-181.2919747508,\"lng\":228.25670326774},{\"lat\":-179.2919747508,\"lng\":228.25670326774},{\"lat\":-179.2919747508,\"lng\":230.25670326774},{\"lat\":-181.2919747508,\"lng\":230.25670326774}]" }, { - "id": 8376, - "mapping_version_id": 276, + "id": 8686, + "mapping_version_id": 287, "floor_id": 253, "group": 1, "teeming": null, @@ -228,8 +228,8 @@ "vertices_json": "[{\"lat\":-111.94915036048,\"lng\":166.49998730798},{\"lat\":-103.41256439951,\"lng\":166.49998730798},{\"lat\":-103.41256439951,\"lng\":175.95176395617},{\"lat\":-111.94915036048,\"lng\":175.95176395617}]" }, { - "id": 8377, - "mapping_version_id": 276, + "id": 8687, + "mapping_version_id": 287, "floor_id": 253, "group": 2, "teeming": null, @@ -240,8 +240,8 @@ "vertices_json": "[{\"lat\":-114.41705710331,\"lng\":187.9233750168},{\"lat\":-100.89801492399,\"lng\":187.9233750168},{\"lat\":-100.89801492399,\"lng\":200.57178410601},{\"lat\":-114.41705710331,\"lng\":200.57178410601}]" }, { - "id": 8378, - "mapping_version_id": 276, + "id": 8688, + "mapping_version_id": 287, "floor_id": 253, "group": 3, "teeming": null, @@ -252,8 +252,8 @@ "vertices_json": "[{\"lat\":-138.12497028941,\"lng\":162.40437204838},{\"lat\":-127.56419741929,\"lng\":162.40437204838},{\"lat\":-127.56419741929,\"lng\":174.85757740635},{\"lat\":-138.12497028941,\"lng\":174.85757740635}]" }, { - "id": 8379, - "mapping_version_id": 276, + "id": 8689, + "mapping_version_id": 287, "floor_id": 253, "group": 5, "teeming": null, @@ -264,8 +264,8 @@ "vertices_json": "[{\"lat\":-166.27391248652,\"lng\":204.84849361072},{\"lat\":-151.70806650769,\"lng\":204.84849361072},{\"lat\":-151.70806650769,\"lng\":221.32352113441},{\"lat\":-166.27391248652,\"lng\":221.32352113441}]" }, { - "id": 8384, - "mapping_version_id": 276, + "id": 8694, + "mapping_version_id": 287, "floor_id": 253, "group": 4, "teeming": null, @@ -276,8 +276,8 @@ "vertices_json": "[{\"lat\":-140.19970193678,\"lng\":188.81983301152},{\"lat\":-132.63194286996,\"lng\":188.81983301152},{\"lat\":-132.63194286996,\"lng\":197.9742528694},{\"lat\":-140.19970193678,\"lng\":197.9742528694}]" }, { - "id": 8385, - "mapping_version_id": 276, + "id": 8695, + "mapping_version_id": 287, "floor_id": 253, "group": 6, "teeming": null, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/map_icons.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/map_icons.json index 983c106267..2085c21a07 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/map_icons.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/1/map_icons.json @@ -39,20 +39,7 @@ "is_admin": true }, { - "mapping_version_id": 276, - "floor_id": 253, - "dungeon_route_id": null, - "team_id": null, - "map_icon_type_id": 10, - "lat": -54.75, - "lng": 128.25, - "comment": null, - "permanent_tooltip": 0, - "seasonal_index": null, - "is_admin": true - }, - { - "mapping_version_id": 282, + "mapping_version_id": 287, "floor_id": 253, "dungeon_route_id": null, "team_id": null, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/dungeon_floor_switch_markers.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/dungeon_floor_switch_markers.json index 735cdbf372..dfe357ac18 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/dungeon_floor_switch_markers.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/dungeon_floor_switch_markers.json @@ -60,8 +60,8 @@ "lng": 273.5 }, { - "id": 1004, - "mapping_version_id": 276, + "id": 1132, + "mapping_version_id": 287, "floor_id": 254, "source_floor_id": null, "target_floor_id": 253, @@ -70,28 +70,8 @@ "lng": 194.75 }, { - "id": 1005, - "mapping_version_id": 276, - "floor_id": 254, - "source_floor_id": null, - "target_floor_id": 255, - "direction": null, - "lat": -151.75, - "lng": 273.5 - }, - { - "id": 1072, - "mapping_version_id": 282, - "floor_id": 254, - "source_floor_id": null, - "target_floor_id": 253, - "direction": null, - "lat": -132.75, - "lng": 194.75 - }, - { - "id": 1073, - "mapping_version_id": 282, + "id": 1133, + "mapping_version_id": 287, "floor_id": 254, "source_floor_id": null, "target_floor_id": 255, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/enemies.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/enemies.json index 34f05d9b58..129bd69d7c 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/enemies.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/enemies.json @@ -2001,9 +2001,9 @@ "kill_priority": null }, { - "id": 43861, - "mapping_version_id": 276, - "enemy_pack_id": 8386, + "id": 45031, + "mapping_version_id": 287, + "enemy_pack_id": 8696, "enemy_patrol_id": null, "npc_id": 199749, "floor_id": 254, @@ -2024,9 +2024,9 @@ "kill_priority": null }, { - "id": 43862, - "mapping_version_id": 276, - "enemy_pack_id": 8387, + "id": 45032, + "mapping_version_id": 287, + "enemy_pack_id": 8697, "enemy_patrol_id": null, "npc_id": 199749, "floor_id": 254, @@ -2047,9 +2047,9 @@ "kill_priority": null }, { - "id": 43863, - "mapping_version_id": 276, - "enemy_pack_id": 8388, + "id": 45033, + "mapping_version_id": 287, + "enemy_pack_id": 8698, "enemy_patrol_id": null, "npc_id": 206068, "floor_id": 254, @@ -2070,9 +2070,9 @@ "kill_priority": null }, { - "id": 43864, - "mapping_version_id": 276, - "enemy_pack_id": 8388, + "id": 45034, + "mapping_version_id": 287, + "enemy_pack_id": 8698, "enemy_patrol_id": null, "npc_id": 206068, "floor_id": 254, @@ -2093,9 +2093,9 @@ "kill_priority": null }, { - "id": 43865, - "mapping_version_id": 276, - "enemy_pack_id": 8389, + "id": 45035, + "mapping_version_id": 287, + "enemy_pack_id": 8699, "enemy_patrol_id": null, "npc_id": 206068, "floor_id": 254, @@ -2116,9 +2116,9 @@ "kill_priority": null }, { - "id": 43866, - "mapping_version_id": 276, - "enemy_pack_id": 8390, + "id": 45036, + "mapping_version_id": 287, + "enemy_pack_id": 8700, "enemy_patrol_id": null, "npc_id": 206068, "floor_id": 254, @@ -2139,9 +2139,9 @@ "kill_priority": null }, { - "id": 43867, - "mapping_version_id": 276, - "enemy_pack_id": 8388, + "id": 45037, + "mapping_version_id": 287, + "enemy_pack_id": 8698, "enemy_patrol_id": null, "npc_id": 206063, "floor_id": 254, @@ -2162,9 +2162,9 @@ "kill_priority": null }, { - "id": 43868, - "mapping_version_id": 276, - "enemy_pack_id": 8388, + "id": 45038, + "mapping_version_id": 287, + "enemy_pack_id": 8698, "enemy_patrol_id": null, "npc_id": 206063, "floor_id": 254, @@ -2185,9 +2185,9 @@ "kill_priority": null }, { - "id": 43869, - "mapping_version_id": 276, - "enemy_pack_id": 8390, + "id": 45039, + "mapping_version_id": 287, + "enemy_pack_id": 8700, "enemy_patrol_id": null, "npc_id": 206063, "floor_id": 254, @@ -2208,9 +2208,9 @@ "kill_priority": null }, { - "id": 43870, - "mapping_version_id": 276, - "enemy_pack_id": 8390, + "id": 45040, + "mapping_version_id": 287, + "enemy_pack_id": 8700, "enemy_patrol_id": null, "npc_id": 206063, "floor_id": 254, @@ -2231,9 +2231,9 @@ "kill_priority": null }, { - "id": 43871, - "mapping_version_id": 276, - "enemy_pack_id": 8388, + "id": 45041, + "mapping_version_id": 287, + "enemy_pack_id": 8698, "enemy_patrol_id": null, "npc_id": 206064, "floor_id": 254, @@ -2254,9 +2254,9 @@ "kill_priority": null }, { - "id": 43872, - "mapping_version_id": 276, - "enemy_pack_id": 8387, + "id": 45042, + "mapping_version_id": 287, + "enemy_pack_id": 8697, "enemy_patrol_id": null, "npc_id": 206064, "floor_id": 254, @@ -2277,9 +2277,9 @@ "kill_priority": null }, { - "id": 43873, - "mapping_version_id": 276, - "enemy_pack_id": 8387, + "id": 45043, + "mapping_version_id": 287, + "enemy_pack_id": 8697, "enemy_patrol_id": null, "npc_id": 206064, "floor_id": 254, @@ -2300,9 +2300,9 @@ "kill_priority": null }, { - "id": 43874, - "mapping_version_id": 276, - "enemy_pack_id": 8390, + "id": 45044, + "mapping_version_id": 287, + "enemy_pack_id": 8700, "enemy_patrol_id": null, "npc_id": 206064, "floor_id": 254, @@ -2323,9 +2323,9 @@ "kill_priority": null }, { - "id": 43875, - "mapping_version_id": 276, - "enemy_pack_id": 8390, + "id": 45045, + "mapping_version_id": 287, + "enemy_pack_id": 8700, "enemy_patrol_id": null, "npc_id": 206064, "floor_id": 254, @@ -2346,9 +2346,9 @@ "kill_priority": null }, { - "id": 43876, - "mapping_version_id": 276, - "enemy_pack_id": 8391, + "id": 45046, + "mapping_version_id": 287, + "enemy_pack_id": 8701, "enemy_patrol_id": null, "npc_id": 206066, "floor_id": 254, @@ -2369,9 +2369,9 @@ "kill_priority": null }, { - "id": 43877, - "mapping_version_id": 276, - "enemy_pack_id": 8391, + "id": 45047, + "mapping_version_id": 287, + "enemy_pack_id": 8701, "enemy_patrol_id": null, "npc_id": 206066, "floor_id": 254, @@ -2392,9 +2392,9 @@ "kill_priority": null }, { - "id": 43878, - "mapping_version_id": 276, - "enemy_pack_id": 8391, + "id": 45048, + "mapping_version_id": 287, + "enemy_pack_id": 8701, "enemy_patrol_id": null, "npc_id": 206066, "floor_id": 254, @@ -2415,9 +2415,9 @@ "kill_priority": null }, { - "id": 43879, - "mapping_version_id": 276, - "enemy_pack_id": 8392, + "id": 45049, + "mapping_version_id": 287, + "enemy_pack_id": 8702, "enemy_patrol_id": null, "npc_id": 206066, "floor_id": 254, @@ -2438,9 +2438,9 @@ "kill_priority": null }, { - "id": 43880, - "mapping_version_id": 276, - "enemy_pack_id": 8392, + "id": 45050, + "mapping_version_id": 287, + "enemy_pack_id": 8702, "enemy_patrol_id": null, "npc_id": 206066, "floor_id": 254, @@ -2461,9 +2461,9 @@ "kill_priority": null }, { - "id": 43881, - "mapping_version_id": 276, - "enemy_pack_id": 8393, + "id": 45051, + "mapping_version_id": 287, + "enemy_pack_id": 8703, "enemy_patrol_id": null, "npc_id": 206066, "floor_id": 254, @@ -2484,9 +2484,9 @@ "kill_priority": null }, { - "id": 43882, - "mapping_version_id": 276, - "enemy_pack_id": 8389, + "id": 45052, + "mapping_version_id": 287, + "enemy_pack_id": 8699, "enemy_patrol_id": null, "npc_id": 206066, "floor_id": 254, @@ -2507,9 +2507,9 @@ "kill_priority": null }, { - "id": 43883, - "mapping_version_id": 276, - "enemy_pack_id": 8394, + "id": 45053, + "mapping_version_id": 287, + "enemy_pack_id": 8704, "enemy_patrol_id": null, "npc_id": 206066, "floor_id": 254, @@ -2530,9 +2530,9 @@ "kill_priority": null }, { - "id": 43884, - "mapping_version_id": 276, - "enemy_pack_id": 8394, + "id": 45054, + "mapping_version_id": 287, + "enemy_pack_id": 8704, "enemy_patrol_id": null, "npc_id": 206066, "floor_id": 254, @@ -2553,9 +2553,9 @@ "kill_priority": null }, { - "id": 43885, - "mapping_version_id": 276, - "enemy_pack_id": 8395, + "id": 45055, + "mapping_version_id": 287, + "enemy_pack_id": 8705, "enemy_patrol_id": null, "npc_id": 206066, "floor_id": 254, @@ -2576,9 +2576,9 @@ "kill_priority": null }, { - "id": 43886, - "mapping_version_id": 276, - "enemy_pack_id": 8395, + "id": 45056, + "mapping_version_id": 287, + "enemy_pack_id": 8705, "enemy_patrol_id": null, "npc_id": 206066, "floor_id": 254, @@ -2599,9 +2599,32 @@ "kill_priority": null }, { - "id": 43887, - "mapping_version_id": 276, - "enemy_pack_id": 8396, + "id": 45057, + "mapping_version_id": 287, + "enemy_pack_id": 8702, + "enemy_patrol_id": null, + "npc_id": 206066, + "floor_id": 254, + "mdt_id": 12, + "mdt_npc_id": null, + "seasonal_type": null, + "seasonal_index": null, + "teeming": null, + "faction": "any", + "required": 0, + "skippable": 0, + "hyper_respawn": 0, + "enemy_forces_override": null, + "enemy_forces_override_teeming": null, + "dungeon_difficulty": null, + "lat": -160.50776010772287, + "lng": 286.8464106060729, + "kill_priority": -1 + }, + { + "id": 45058, + "mapping_version_id": 287, + "enemy_pack_id": 8706, "enemy_patrol_id": null, "npc_id": 206140, "floor_id": 254, @@ -2622,9 +2645,9 @@ "kill_priority": null }, { - "id": 43888, - "mapping_version_id": 276, - "enemy_pack_id": 8389, + "id": 45059, + "mapping_version_id": 287, + "enemy_pack_id": 8699, "enemy_patrol_id": null, "npc_id": 206140, "floor_id": 254, @@ -2645,9 +2668,9 @@ "kill_priority": null }, { - "id": 43889, - "mapping_version_id": 276, - "enemy_pack_id": 8397, + "id": 45060, + "mapping_version_id": 287, + "enemy_pack_id": 8707, "enemy_patrol_id": null, "npc_id": 198996, "floor_id": 254, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/enemy_packs.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/enemy_packs.json index db2f2e2c8f..39f2451efd 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/enemy_packs.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/2/enemy_packs.json @@ -432,8 +432,8 @@ "vertices_json": "[{\"lat\":-149.040552664,\"lng\":258.96509251997},{\"lat\":-147.040552664,\"lng\":258.96509251997},{\"lat\":-147.040552664,\"lng\":260.96509251997},{\"lat\":-149.040552664,\"lng\":260.96509251997}]" }, { - "id": 8386, - "mapping_version_id": 276, + "id": 8696, + "mapping_version_id": 287, "floor_id": 254, "group": 7, "teeming": null, @@ -444,8 +444,8 @@ "vertices_json": "[{\"lat\":-135.34231122834,\"lng\":261.71472908575},{\"lat\":-133.34231122834,\"lng\":261.71472908575},{\"lat\":-133.34231122834,\"lng\":263.71472908575},{\"lat\":-135.34231122834,\"lng\":263.71472908575}]" }, { - "id": 8387, - "mapping_version_id": 276, + "id": 8697, + "mapping_version_id": 287, "floor_id": 254, "group": 11, "teeming": null, @@ -456,8 +456,8 @@ "vertices_json": "[{\"lat\":-172.84511576945,\"lng\":267.50435761352},{\"lat\":-166.33780169721,\"lng\":267.50435761352},{\"lat\":-166.33780169721,\"lng\":275.15443622396},{\"lat\":-172.84511576945,\"lng\":275.15443622396}]" }, { - "id": 8388, - "mapping_version_id": 276, + "id": 8698, + "mapping_version_id": 287, "floor_id": 254, "group": 9, "teeming": null, @@ -468,8 +468,8 @@ "vertices_json": "[{\"lat\":-167.90766429182,\"lng\":233.64160536818},{\"lat\":-155.70601213939,\"lng\":233.64160536818},{\"lat\":-155.70601213939,\"lng\":245.44470675588},{\"lat\":-167.90766429182,\"lng\":245.44470675588}]" }, { - "id": 8389, - "mapping_version_id": 276, + "id": 8699, + "mapping_version_id": 287, "floor_id": 254, "group": 14, "teeming": null, @@ -480,8 +480,8 @@ "vertices_json": "[{\"lat\":-133.9123533528,\"lng\":273.36355982959},{\"lat\":-126.19351986367,\"lng\":273.36355982959},{\"lat\":-126.19351986367,\"lng\":280.74731506429},{\"lat\":-133.9123533528,\"lng\":280.74731506429}]" }, { - "id": 8390, - "mapping_version_id": 276, + "id": 8700, + "mapping_version_id": 287, "floor_id": 254, "group": 16, "teeming": null, @@ -492,8 +492,8 @@ "vertices_json": "[{\"lat\":-130.01322045766,\"lng\":242.15001483988},{\"lat\":-120.85674704459,\"lng\":242.15001483988},{\"lat\":-120.85674704459,\"lng\":253.68165020844},{\"lat\":-130.01322045766,\"lng\":253.68165020844}]" }, { - "id": 8391, - "mapping_version_id": 276, + "id": 8701, + "mapping_version_id": 287, "floor_id": 254, "group": 10, "teeming": null, @@ -504,8 +504,8 @@ "vertices_json": "[{\"lat\":-176.84918156857,\"lng\":250.99528699479},{\"lat\":-170.25776451892,\"lng\":250.99528699479},{\"lat\":-170.25776451892,\"lng\":258.43510820149},{\"lat\":-176.84918156857,\"lng\":258.43510820149}]" }, { - "id": 8392, - "mapping_version_id": 276, + "id": 8702, + "mapping_version_id": 287, "floor_id": 254, "group": 12, "teeming": null, @@ -513,11 +513,11 @@ "color": null, "color_animated": null, "label": "Imported from MDT - group 12", - "vertices_json": "[{\"lat\":-165.79547199398,\"lng\":281.17135994987},{\"lat\":-159.08527907947,\"lng\":281.17135994987},{\"lat\":-159.08527907947,\"lng\":284.68624331373},{\"lat\":-165.79547199398,\"lng\":284.68624331373}]" + "vertices_json": "[{\"lat\":\"-165.795472\",\"lng\":\"281.17136\"},{\"lat\":\"-158.004927\",\"lng\":\"281.079013\"},{\"lat\":\"-157.569652\",\"lng\":\"290.002156\"},{\"lat\":\"-166.05752\",\"lng\":\"290.546251\"}]" }, { - "id": 8393, - "mapping_version_id": 276, + "id": 8703, + "mapping_version_id": 287, "floor_id": 254, "group": 13, "teeming": null, @@ -528,8 +528,8 @@ "vertices_json": "[{\"lat\":-146.32834014692,\"lng\":284.39107711867},{\"lat\":-144.32834014692,\"lng\":284.39107711867},{\"lat\":-144.32834014692,\"lng\":286.39107711867},{\"lat\":-146.32834014692,\"lng\":286.39107711867}]" }, { - "id": 8394, - "mapping_version_id": 276, + "id": 8704, + "mapping_version_id": 287, "floor_id": 254, "group": 15, "teeming": null, @@ -540,8 +540,8 @@ "vertices_json": "[{\"lat\":-120.15981469391,\"lng\":263.72708328773},{\"lat\":-116.80238876861,\"lng\":263.72708328773},{\"lat\":-116.80238876861,\"lng\":270.92487690914},{\"lat\":-120.15981469391,\"lng\":270.92487690914}]" }, { - "id": 8395, - "mapping_version_id": 276, + "id": 8705, + "mapping_version_id": 287, "floor_id": 254, "group": 17, "teeming": null, @@ -552,8 +552,8 @@ "vertices_json": "[{\"lat\":-113.99608667642,\"lng\":244.70978489501},{\"lat\":-111.96911577537,\"lng\":244.70978489501},{\"lat\":-111.96911577537,\"lng\":252.03605673116},{\"lat\":-113.99608667642,\"lng\":252.03605673116}]" }, { - "id": 8396, - "mapping_version_id": 276, + "id": 8706, + "mapping_version_id": 287, "floor_id": 254, "group": 8, "teeming": null, @@ -564,8 +564,8 @@ "vertices_json": "[{\"lat\":-163.12190495547,\"lng\":255.90890977177997},{\"lat\":-161.12190495547,\"lng\":255.90890977177997},{\"lat\":-161.12190495547,\"lng\":257.90890977178},{\"lat\":-163.12190495547,\"lng\":257.90890977178}]" }, { - "id": 8397, - "mapping_version_id": 276, + "id": 8707, + "mapping_version_id": 287, "floor_id": 254, "group": 18, "teeming": null, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/dungeon_floor_switch_markers.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/dungeon_floor_switch_markers.json index a1f4849b8f..319a0949fe 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/dungeon_floor_switch_markers.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/dungeon_floor_switch_markers.json @@ -60,8 +60,8 @@ "lng": 293 }, { - "id": 1006, - "mapping_version_id": 276, + "id": 1134, + "mapping_version_id": 287, "floor_id": 255, "source_floor_id": null, "target_floor_id": 254, @@ -70,28 +70,8 @@ "lng": 128.25 }, { - "id": 1007, - "mapping_version_id": 276, - "floor_id": 255, - "source_floor_id": null, - "target_floor_id": 257, - "direction": null, - "lat": -165.5, - "lng": 293 - }, - { - "id": 1074, - "mapping_version_id": 282, - "floor_id": 255, - "source_floor_id": null, - "target_floor_id": 254, - "direction": null, - "lat": -128, - "lng": 128.25 - }, - { - "id": 1075, - "mapping_version_id": 282, + "id": 1135, + "mapping_version_id": 287, "floor_id": 255, "source_floor_id": null, "target_floor_id": 257, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/enemies.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/enemies.json index cabc171207..082d632754 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/enemies.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/enemies.json @@ -69,9 +69,9 @@ "kill_priority": null }, { - "id": 43890, - "mapping_version_id": 276, - "enemy_pack_id": 8398, + "id": 45061, + "mapping_version_id": 287, + "enemy_pack_id": 8708, "enemy_patrol_id": null, "npc_id": 206214, "floor_id": 255, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/enemy_packs.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/enemy_packs.json index 1a4fad2169..b0db36b3c9 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/enemy_packs.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/3/enemy_packs.json @@ -36,8 +36,8 @@ "vertices_json": "[{\"lat\":-145.32936013477,\"lng\":199.10121951246},{\"lat\":-143.32936013477,\"lng\":199.10121951246},{\"lat\":-143.32936013477,\"lng\":201.10121951246},{\"lat\":-145.32936013477,\"lng\":201.10121951246}]" }, { - "id": 8398, - "mapping_version_id": 276, + "id": 8708, + "mapping_version_id": 287, "floor_id": 255, "group": 19, "teeming": null, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/dungeon_floor_switch_markers.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/dungeon_floor_switch_markers.json index 6dc05fe730..e248089742 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/dungeon_floor_switch_markers.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/dungeon_floor_switch_markers.json @@ -30,18 +30,8 @@ "lng": 125 }, { - "id": 1008, - "mapping_version_id": 276, - "floor_id": 257, - "source_floor_id": null, - "target_floor_id": 255, - "direction": null, - "lat": -37.25, - "lng": 125 - }, - { - "id": 1076, - "mapping_version_id": 282, + "id": 1136, + "mapping_version_id": 287, "floor_id": 257, "source_floor_id": null, "target_floor_id": 255, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/enemies.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/enemies.json index 7105745d85..e954276822 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/enemies.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/enemies.json @@ -3795,9 +3795,9 @@ "kill_priority": null }, { - "id": 43841, - "mapping_version_id": 276, - "enemy_pack_id": 8380, + "id": 45011, + "mapping_version_id": 287, + "enemy_pack_id": 8690, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 257, @@ -3818,9 +3818,9 @@ "kill_priority": null }, { - "id": 43842, - "mapping_version_id": 276, - "enemy_pack_id": 8381, + "id": 45012, + "mapping_version_id": 287, + "enemy_pack_id": 8691, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 257, @@ -3841,9 +3841,9 @@ "kill_priority": null }, { - "id": 43843, - "mapping_version_id": 276, - "enemy_pack_id": 8382, + "id": 45013, + "mapping_version_id": 287, + "enemy_pack_id": 8692, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 257, @@ -3864,9 +3864,9 @@ "kill_priority": null }, { - "id": 43844, - "mapping_version_id": 276, - "enemy_pack_id": 8382, + "id": 45014, + "mapping_version_id": 287, + "enemy_pack_id": 8692, "enemy_patrol_id": null, "npc_id": 205408, "floor_id": 257, @@ -3887,9 +3887,9 @@ "kill_priority": null }, { - "id": 43851, - "mapping_version_id": 276, - "enemy_pack_id": 8382, + "id": 45021, + "mapping_version_id": 287, + "enemy_pack_id": 8692, "enemy_patrol_id": null, "npc_id": 205384, "floor_id": 257, @@ -3910,9 +3910,9 @@ "kill_priority": null }, { - "id": 43852, - "mapping_version_id": 276, - "enemy_pack_id": 8383, + "id": 45022, + "mapping_version_id": 287, + "enemy_pack_id": 8693, "enemy_patrol_id": null, "npc_id": 205384, "floor_id": 257, @@ -3933,9 +3933,9 @@ "kill_priority": null }, { - "id": 43857, - "mapping_version_id": 276, - "enemy_pack_id": 8380, + "id": 45027, + "mapping_version_id": 287, + "enemy_pack_id": 8690, "enemy_patrol_id": null, "npc_id": 205435, "floor_id": 257, @@ -3956,9 +3956,9 @@ "kill_priority": null }, { - "id": 43858, - "mapping_version_id": 276, - "enemy_pack_id": 8383, + "id": 45028, + "mapping_version_id": 287, + "enemy_pack_id": 8693, "enemy_patrol_id": null, "npc_id": 205435, "floor_id": 257, @@ -3979,9 +3979,9 @@ "kill_priority": null }, { - "id": 43859, - "mapping_version_id": 276, - "enemy_pack_id": 8383, + "id": 45029, + "mapping_version_id": 287, + "enemy_pack_id": 8693, "enemy_patrol_id": null, "npc_id": 205435, "floor_id": 257, @@ -4002,9 +4002,9 @@ "kill_priority": null }, { - "id": 43891, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45062, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4025,9 +4025,9 @@ "kill_priority": null }, { - "id": 43892, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45063, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4048,9 +4048,9 @@ "kill_priority": null }, { - "id": 43893, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45064, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4071,9 +4071,9 @@ "kill_priority": null }, { - "id": 43894, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45065, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4094,9 +4094,9 @@ "kill_priority": null }, { - "id": 43895, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45066, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4117,9 +4117,9 @@ "kill_priority": null }, { - "id": 43896, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45067, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4140,9 +4140,9 @@ "kill_priority": null }, { - "id": 43897, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45068, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4163,9 +4163,9 @@ "kill_priority": null }, { - "id": 43898, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45069, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4186,9 +4186,9 @@ "kill_priority": null }, { - "id": 43899, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45070, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4209,9 +4209,9 @@ "kill_priority": null }, { - "id": 43900, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45071, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4232,9 +4232,9 @@ "kill_priority": null }, { - "id": 43901, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45072, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4255,9 +4255,9 @@ "kill_priority": null }, { - "id": 43902, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45073, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4278,9 +4278,9 @@ "kill_priority": null }, { - "id": 43903, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45074, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4301,9 +4301,9 @@ "kill_priority": null }, { - "id": 43904, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45075, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4324,9 +4324,9 @@ "kill_priority": null }, { - "id": 43905, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45076, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4347,9 +4347,9 @@ "kill_priority": null }, { - "id": 43906, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45077, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4370,9 +4370,9 @@ "kill_priority": null }, { - "id": 43907, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45078, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4393,9 +4393,9 @@ "kill_priority": null }, { - "id": 43908, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45079, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4416,9 +4416,9 @@ "kill_priority": null }, { - "id": 43909, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45080, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4439,9 +4439,9 @@ "kill_priority": null }, { - "id": 43910, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45081, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4462,9 +4462,9 @@ "kill_priority": null }, { - "id": 43911, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45082, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4485,9 +4485,9 @@ "kill_priority": null }, { - "id": 43912, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45083, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4508,9 +4508,9 @@ "kill_priority": null }, { - "id": 43913, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45084, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4531,9 +4531,9 @@ "kill_priority": null }, { - "id": 43914, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45085, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4554,9 +4554,9 @@ "kill_priority": null }, { - "id": 43915, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45086, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4577,9 +4577,9 @@ "kill_priority": null }, { - "id": 43916, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45087, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4600,9 +4600,9 @@ "kill_priority": null }, { - "id": 43917, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45088, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4623,9 +4623,9 @@ "kill_priority": null }, { - "id": 43918, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45089, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4646,9 +4646,9 @@ "kill_priority": null }, { - "id": 43919, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45090, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 204536, "floor_id": 257, @@ -4669,9 +4669,9 @@ "kill_priority": null }, { - "id": 43920, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45091, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 205804, "floor_id": 257, @@ -4692,9 +4692,9 @@ "kill_priority": null }, { - "id": 43921, - "mapping_version_id": 276, - "enemy_pack_id": 8399, + "id": 45092, + "mapping_version_id": 287, + "enemy_pack_id": 8709, "enemy_patrol_id": null, "npc_id": 205804, "floor_id": 257, @@ -4715,9 +4715,9 @@ "kill_priority": null }, { - "id": 43922, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45093, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 205804, "floor_id": 257, @@ -4738,9 +4738,9 @@ "kill_priority": null }, { - "id": 43923, - "mapping_version_id": 276, - "enemy_pack_id": 8400, + "id": 45094, + "mapping_version_id": 287, + "enemy_pack_id": 8710, "enemy_patrol_id": null, "npc_id": 205804, "floor_id": 257, @@ -4761,9 +4761,9 @@ "kill_priority": null }, { - "id": 43924, - "mapping_version_id": 276, - "enemy_pack_id": 8401, + "id": 45095, + "mapping_version_id": 287, + "enemy_pack_id": 8711, "enemy_patrol_id": null, "npc_id": 198997, "floor_id": 257, @@ -4784,9 +4784,9 @@ "kill_priority": null }, { - "id": 43925, - "mapping_version_id": 276, - "enemy_pack_id": 8401, + "id": 45096, + "mapping_version_id": 287, + "enemy_pack_id": 8711, "enemy_patrol_id": null, "npc_id": 201792, "floor_id": 257, @@ -4807,9 +4807,9 @@ "kill_priority": null }, { - "id": 43926, - "mapping_version_id": 276, - "enemy_pack_id": 8401, + "id": 45097, + "mapping_version_id": 287, + "enemy_pack_id": 8711, "enemy_patrol_id": null, "npc_id": 201788, "floor_id": 257, @@ -4830,9 +4830,9 @@ "kill_priority": null }, { - "id": 43927, - "mapping_version_id": 276, - "enemy_pack_id": 8401, + "id": 45098, + "mapping_version_id": 287, + "enemy_pack_id": 8711, "enemy_patrol_id": null, "npc_id": 201790, "floor_id": 257, @@ -4853,9 +4853,9 @@ "kill_priority": null }, { - "id": 43928, - "mapping_version_id": 276, - "enemy_pack_id": 8380, + "id": 45099, + "mapping_version_id": 287, + "enemy_pack_id": 8690, "enemy_patrol_id": null, "npc_id": 205691, "floor_id": 257, @@ -4876,9 +4876,9 @@ "kill_priority": null }, { - "id": 43929, - "mapping_version_id": 276, - "enemy_pack_id": 8381, + "id": 45100, + "mapping_version_id": 287, + "enemy_pack_id": 8691, "enemy_patrol_id": null, "npc_id": 205691, "floor_id": 257, @@ -4899,9 +4899,9 @@ "kill_priority": null }, { - "id": 43930, - "mapping_version_id": 276, - "enemy_pack_id": 8382, + "id": 45101, + "mapping_version_id": 287, + "enemy_pack_id": 8692, "enemy_patrol_id": null, "npc_id": 205691, "floor_id": 257, @@ -4922,9 +4922,9 @@ "kill_priority": null }, { - "id": 43931, - "mapping_version_id": 276, - "enemy_pack_id": 8382, + "id": 45102, + "mapping_version_id": 287, + "enemy_pack_id": 8692, "enemy_patrol_id": null, "npc_id": 205691, "floor_id": 257, @@ -4945,9 +4945,9 @@ "kill_priority": null }, { - "id": 43932, - "mapping_version_id": 276, - "enemy_pack_id": 8383, + "id": 45103, + "mapping_version_id": 287, + "enemy_pack_id": 8693, "enemy_patrol_id": null, "npc_id": 205691, "floor_id": 257, @@ -4968,9 +4968,9 @@ "kill_priority": null }, { - "id": 43933, - "mapping_version_id": 276, - "enemy_pack_id": 8402, + "id": 45104, + "mapping_version_id": 287, + "enemy_pack_id": 8712, "enemy_patrol_id": null, "npc_id": 198933, "floor_id": 257, @@ -4991,9 +4991,9 @@ "kill_priority": null }, { - "id": 43934, - "mapping_version_id": 276, - "enemy_pack_id": 8402, + "id": 45105, + "mapping_version_id": 287, + "enemy_pack_id": 8712, "enemy_patrol_id": null, "npc_id": 204449, "floor_id": 257, @@ -5014,9 +5014,9 @@ "kill_priority": null }, { - "id": 43935, - "mapping_version_id": 276, - "enemy_pack_id": 8402, + "id": 45106, + "mapping_version_id": 287, + "enemy_pack_id": 8712, "enemy_patrol_id": null, "npc_id": 204918, "floor_id": 257, @@ -5037,9 +5037,9 @@ "kill_priority": null }, { - "id": 43936, - "mapping_version_id": 276, - "enemy_pack_id": 8402, + "id": 45107, + "mapping_version_id": 287, + "enemy_pack_id": 8712, "enemy_patrol_id": null, "npc_id": 204918, "floor_id": 257, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/enemy_packs.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/enemy_packs.json index ea427852f3..79f2f5fcbd 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/enemy_packs.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/5/enemy_packs.json @@ -288,8 +288,8 @@ "vertices_json": "[{\"lat\":-203.27490909091,\"lng\":167.05236363636},{\"lat\":-187.91636363636,\"lng\":167.05236363636},{\"lat\":-187.91636363636,\"lng\":186.77454545455},{\"lat\":-203.27490909091,\"lng\":186.77454545455}]" }, { - "id": 8380, - "mapping_version_id": 276, + "id": 8690, + "mapping_version_id": 287, "floor_id": 257, "group": 23, "teeming": null, @@ -300,8 +300,8 @@ "vertices_json": "[{\"lat\":-160.44145454545,\"lng\":113.37381818182},{\"lat\":-153.25163636364,\"lng\":113.37381818182},{\"lat\":-153.25163636364,\"lng\":122.79781818182},{\"lat\":-160.44145454545,\"lng\":122.79781818182}]" }, { - "id": 8381, - "mapping_version_id": 276, + "id": 8691, + "mapping_version_id": 287, "floor_id": 257, "group": 24, "teeming": null, @@ -312,8 +312,8 @@ "vertices_json": "[{\"lat\":-174.38181818182,\"lng\":117.05090909091},{\"lat\":-170.15927272727,\"lng\":117.05090909091},{\"lat\":-170.15927272727,\"lng\":125.63709090909},{\"lat\":-174.38181818182,\"lng\":125.63709090909}]" }, { - "id": 8382, - "mapping_version_id": 276, + "id": 8692, + "mapping_version_id": 287, "floor_id": 257, "group": 25, "teeming": null, @@ -324,8 +324,8 @@ "vertices_json": "[{\"lat\":-203.84509090909,\"lng\":119.25018181818},{\"lat\":-189.54545454545,\"lng\":119.25018181818},{\"lat\":-189.54545454545,\"lng\":133.88727272727},{\"lat\":-203.84509090909,\"lng\":133.88727272727}]" }, { - "id": 8383, - "mapping_version_id": 276, + "id": 8693, + "mapping_version_id": 287, "floor_id": 257, "group": 26, "teeming": null, @@ -336,8 +336,8 @@ "vertices_json": "[{\"lat\":-206.92872727273,\"lng\":145.69963636364},{\"lat\":-196.36436363636,\"lng\":145.69963636364},{\"lat\":-196.36436363636,\"lng\":157.39272727273},{\"lat\":-206.92872727273,\"lng\":157.39272727273}]" }, { - "id": 8399, - "mapping_version_id": 276, + "id": 8709, + "mapping_version_id": 287, "floor_id": 257, "group": 20, "teeming": null, @@ -348,8 +348,8 @@ "vertices_json": "[{\"lat\":-69.933818181818,\"lng\":126.15054545455},{\"lat\":-53.446545454545,\"lng\":126.15054545455},{\"lat\":-53.446545454545,\"lng\":145.01163636364},{\"lat\":-69.933818181818,\"lng\":145.01163636364}]" }, { - "id": 8400, - "mapping_version_id": 276, + "id": 8710, + "mapping_version_id": 287, "floor_id": 257, "group": 21, "teeming": null, @@ -360,8 +360,8 @@ "vertices_json": "[{\"lat\":-102.55054545455,\"lng\":126.47636363636},{\"lat\":-83.456727272727,\"lng\":126.47636363636},{\"lat\":-83.456727272727,\"lng\":143.89454545455},{\"lat\":-102.55054545455,\"lng\":143.89454545455}]" }, { - "id": 8401, - "mapping_version_id": 276, + "id": 8711, + "mapping_version_id": 287, "floor_id": 257, "group": 22, "teeming": null, @@ -372,8 +372,8 @@ "vertices_json": "[{\"lat\":-103.00436363636,\"lng\":157.12654545455},{\"lat\":-83.608,\"lng\":157.12654545455},{\"lat\":-83.608,\"lng\":169.48290909091},{\"lat\":-103.00436363636,\"lng\":169.48290909091}]" }, { - "id": 8402, - "mapping_version_id": 276, + "id": 8712, + "mapping_version_id": 287, "floor_id": 257, "group": 27, "teeming": null, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/dungeon_floor_switch_markers.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/dungeon_floor_switch_markers.json index 7fe7ead4eb..a04c452b6e 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/dungeon_floor_switch_markers.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/dungeon_floor_switch_markers.json @@ -240,8 +240,8 @@ "lng": 309.92 }, { - "id": 997, - "mapping_version_id": 276, + "id": 1125, + "mapping_version_id": 287, "floor_id": 265, "source_floor_id": 253, "target_floor_id": 254, @@ -250,8 +250,8 @@ "lng": 170.38 }, { - "id": 998, - "mapping_version_id": 276, + "id": 1126, + "mapping_version_id": 287, "floor_id": 265, "source_floor_id": 254, "target_floor_id": 253, @@ -260,8 +260,8 @@ "lng": 229.59 }, { - "id": 999, - "mapping_version_id": 276, + "id": 1127, + "mapping_version_id": 287, "floor_id": 265, "source_floor_id": 255, "target_floor_id": 254, @@ -270,8 +270,8 @@ "lng": 27.87 }, { - "id": 1000, - "mapping_version_id": 276, + "id": 1128, + "mapping_version_id": 287, "floor_id": 265, "source_floor_id": 255, "target_floor_id": 257, @@ -280,8 +280,8 @@ "lng": 130.8 }, { - "id": 1001, - "mapping_version_id": 276, + "id": 1129, + "mapping_version_id": 287, "floor_id": 265, "source_floor_id": 257, "target_floor_id": 255, @@ -290,68 +290,8 @@ "lng": 216.56 }, { - "id": 1002, - "mapping_version_id": 276, - "floor_id": 265, - "source_floor_id": 254, - "target_floor_id": 255, - "direction": "right", - "lat": -65.32, - "lng": 309.92 - }, - { - "id": 1065, - "mapping_version_id": 282, - "floor_id": 265, - "source_floor_id": 253, - "target_floor_id": 254, - "direction": "right", - "lat": -59.71, - "lng": 170.38 - }, - { - "id": 1066, - "mapping_version_id": 282, - "floor_id": 265, - "source_floor_id": 254, - "target_floor_id": 253, - "direction": "left", - "lat": -64.82, - "lng": 229.59 - }, - { - "id": 1067, - "mapping_version_id": 282, - "floor_id": 265, - "source_floor_id": 255, - "target_floor_id": 254, - "direction": "left", - "lat": -178.13, - "lng": 27.87 - }, - { - "id": 1068, - "mapping_version_id": 282, - "floor_id": 265, - "source_floor_id": 255, - "target_floor_id": 257, - "direction": "right", - "lat": -179.95, - "lng": 130.8 - }, - { - "id": 1069, - "mapping_version_id": 282, - "floor_id": 265, - "source_floor_id": 257, - "target_floor_id": 255, - "direction": "left", - "lat": -106.39, - "lng": 216.56 - }, - { - "id": 1070, - "mapping_version_id": 282, + "id": 1130, + "mapping_version_id": 287, "floor_id": 265, "source_floor_id": 254, "target_floor_id": 255, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/enemies.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/enemies.json index 5396c26cf0..0637a088a0 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/enemies.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/enemies.json @@ -1,2417 +1 @@ -[ - { - "id": 44478, - "mapping_version_id": 282, - "enemy_pack_id": 8551, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -55.17, - "lng": 66.63, - "kill_priority": null - }, - { - "id": 44479, - "mapping_version_id": 282, - "enemy_pack_id": 8551, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -63.68, - "lng": 67.01, - "kill_priority": null - }, - { - "id": 44480, - "mapping_version_id": 282, - "enemy_pack_id": 8552, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 3, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -47.38, - "lng": 76.11, - "kill_priority": null - }, - { - "id": 44481, - "mapping_version_id": 282, - "enemy_pack_id": 8552, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 4, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -47.65, - "lng": 82.57, - "kill_priority": null - }, - { - "id": 44482, - "mapping_version_id": 282, - "enemy_pack_id": 8553, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 5, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -69.69, - "lng": 83.25, - "kill_priority": null - }, - { - "id": 44483, - "mapping_version_id": 282, - "enemy_pack_id": 8553, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 6, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -73.15, - "lng": 78.82, - "kill_priority": null - }, - { - "id": 44484, - "mapping_version_id": 282, - "enemy_pack_id": 8554, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 7, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -56.74, - "lng": 127.13, - "kill_priority": null - }, - { - "id": 44485, - "mapping_version_id": 282, - "enemy_pack_id": 8554, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 8, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -61.87, - "lng": 127.8, - "kill_priority": null - }, - { - "id": 44486, - "mapping_version_id": 282, - "enemy_pack_id": 8555, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 9, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -204.29, - "lng": 206.6, - "kill_priority": null - }, - { - "id": 44487, - "mapping_version_id": 282, - "enemy_pack_id": 8556, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 10, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -218.78, - "lng": 215.42, - "kill_priority": null - }, - { - "id": 44488, - "mapping_version_id": 282, - "enemy_pack_id": 8557, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 11, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -235.44, - "lng": 214.88, - "kill_priority": null - }, - { - "id": 44489, - "mapping_version_id": 282, - "enemy_pack_id": 8557, - "enemy_patrol_id": null, - "npc_id": 205408, - "floor_id": 265, - "mdt_id": 12, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -240.74, - "lng": 211.65, - "kill_priority": null - }, - { - "id": 44490, - "mapping_version_id": 282, - "enemy_pack_id": 8551, - "enemy_patrol_id": null, - "npc_id": 205384, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -60.04, - "lng": 69.84, - "kill_priority": null - }, - { - "id": 44491, - "mapping_version_id": 282, - "enemy_pack_id": 8552, - "enemy_patrol_id": null, - "npc_id": 205384, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -40.48, - "lng": 75.63, - "kill_priority": null - }, - { - "id": 44492, - "mapping_version_id": 282, - "enemy_pack_id": 8552, - "enemy_patrol_id": null, - "npc_id": 205384, - "floor_id": 265, - "mdt_id": 3, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -40.91, - "lng": 82.67, - "kill_priority": null - }, - { - "id": 44493, - "mapping_version_id": 282, - "enemy_pack_id": 8553, - "enemy_patrol_id": null, - "npc_id": 205384, - "floor_id": 265, - "mdt_id": 4, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -79.39, - "lng": 80.99, - "kill_priority": null - }, - { - "id": 44494, - "mapping_version_id": 282, - "enemy_pack_id": 8553, - "enemy_patrol_id": null, - "npc_id": 205384, - "floor_id": 265, - "mdt_id": 5, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -75.53, - "lng": 86.34, - "kill_priority": null - }, - { - "id": 44495, - "mapping_version_id": 282, - "enemy_pack_id": 8554, - "enemy_patrol_id": null, - "npc_id": 205384, - "floor_id": 265, - "mdt_id": 6, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -59.42, - "lng": 121.73, - "kill_priority": null - }, - { - "id": 44496, - "mapping_version_id": 282, - "enemy_pack_id": 8557, - "enemy_patrol_id": null, - "npc_id": 205384, - "floor_id": 265, - "mdt_id": 7, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -240.34, - "lng": 216.75, - "kill_priority": null - }, - { - "id": 44497, - "mapping_version_id": 282, - "enemy_pack_id": 8558, - "enemy_patrol_id": null, - "npc_id": 205384, - "floor_id": 265, - "mdt_id": 8, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -248.66, - "lng": 235.68, - "kill_priority": null - }, - { - "id": 44498, - "mapping_version_id": 282, - "enemy_pack_id": 8559, - "enemy_patrol_id": null, - "npc_id": 205435, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -63.89, - "lng": 97.95, - "kill_priority": null - }, - { - "id": 44499, - "mapping_version_id": 282, - "enemy_pack_id": 8559, - "enemy_patrol_id": null, - "npc_id": 205435, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -56.1, - "lng": 98.06, - "kill_priority": null - }, - { - "id": 44500, - "mapping_version_id": 282, - "enemy_pack_id": 8554, - "enemy_patrol_id": null, - "npc_id": 205435, - "floor_id": 265, - "mdt_id": 3, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -67.15, - "lng": 124.05, - "kill_priority": null - }, - { - "id": 44501, - "mapping_version_id": 282, - "enemy_pack_id": 8554, - "enemy_patrol_id": null, - "npc_id": 205435, - "floor_id": 265, - "mdt_id": 4, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -50.69, - "lng": 123.4, - "kill_priority": null - }, - { - "id": 44502, - "mapping_version_id": 282, - "enemy_pack_id": 8555, - "enemy_patrol_id": null, - "npc_id": 205435, - "floor_id": 265, - "mdt_id": 5, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -208.71, - "lng": 210.46, - "kill_priority": null - }, - { - "id": 44503, - "mapping_version_id": 282, - "enemy_pack_id": 8558, - "enemy_patrol_id": null, - "npc_id": 205435, - "floor_id": 265, - "mdt_id": 6, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -241.3, - "lng": 241.04, - "kill_priority": null - }, - { - "id": 44504, - "mapping_version_id": 282, - "enemy_pack_id": 8558, - "enemy_patrol_id": null, - "npc_id": 205435, - "floor_id": 265, - "mdt_id": 7, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -248.32, - "lng": 242.71, - "kill_priority": null - }, - { - "id": 44505, - "mapping_version_id": 282, - "enemy_pack_id": 8560, - "enemy_patrol_id": null, - "npc_id": 198995, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -59.52, - "lng": 146.7, - "kill_priority": null - }, - { - "id": 44506, - "mapping_version_id": 282, - "enemy_pack_id": 8561, - "enemy_patrol_id": null, - "npc_id": 199749, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -51.4, - "lng": 310.28, - "kill_priority": null - }, - { - "id": 44507, - "mapping_version_id": 282, - "enemy_pack_id": 8562, - "enemy_patrol_id": null, - "npc_id": 199749, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -84.57, - "lng": 327.72, - "kill_priority": null - }, - { - "id": 44508, - "mapping_version_id": 282, - "enemy_pack_id": 8563, - "enemy_patrol_id": null, - "npc_id": 206068, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -91.47, - "lng": 293.29, - "kill_priority": null - }, - { - "id": 44509, - "mapping_version_id": 282, - "enemy_pack_id": 8563, - "enemy_patrol_id": null, - "npc_id": 206068, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -86.49, - "lng": 286.4, - "kill_priority": null - }, - { - "id": 44510, - "mapping_version_id": 282, - "enemy_pack_id": 8564, - "enemy_patrol_id": null, - "npc_id": 206068, - "floor_id": 265, - "mdt_id": 3, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -40.7, - "lng": 322.89, - "kill_priority": null - }, - { - "id": 44511, - "mapping_version_id": 282, - "enemy_pack_id": 8565, - "enemy_patrol_id": null, - "npc_id": 206068, - "floor_id": 265, - "mdt_id": 4, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -45.37, - "lng": 293.16, - "kill_priority": null - }, - { - "id": 44512, - "mapping_version_id": 282, - "enemy_pack_id": 8563, - "enemy_patrol_id": null, - "npc_id": 206063, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -85.95, - "lng": 297.25, - "kill_priority": null - }, - { - "id": 44513, - "mapping_version_id": 282, - "enemy_pack_id": 8563, - "enemy_patrol_id": null, - "npc_id": 206063, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -80.41, - "lng": 291.65, - "kill_priority": null - }, - { - "id": 44514, - "mapping_version_id": 282, - "enemy_pack_id": 8565, - "enemy_patrol_id": null, - "npc_id": 206063, - "floor_id": 265, - "mdt_id": 3, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -49.57, - "lng": 291.01, - "kill_priority": null - }, - { - "id": 44515, - "mapping_version_id": 282, - "enemy_pack_id": 8565, - "enemy_patrol_id": null, - "npc_id": 206063, - "floor_id": 265, - "mdt_id": 4, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -45.63, - "lng": 297.82, - "kill_priority": null - }, - { - "id": 44516, - "mapping_version_id": 282, - "enemy_pack_id": 8563, - "enemy_patrol_id": null, - "npc_id": 206064, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -85.41, - "lng": 292.15, - "kill_priority": null - }, - { - "id": 44517, - "mapping_version_id": 282, - "enemy_pack_id": 8562, - "enemy_patrol_id": null, - "npc_id": 206064, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -90.18, - "lng": 325.07, - "kill_priority": null - }, - { - "id": 44518, - "mapping_version_id": 282, - "enemy_pack_id": 8562, - "enemy_patrol_id": null, - "npc_id": 206064, - "floor_id": 265, - "mdt_id": 3, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -88.22, - "lng": 330.97, - "kill_priority": null - }, - { - "id": 44519, - "mapping_version_id": 282, - "enemy_pack_id": 8565, - "enemy_patrol_id": null, - "npc_id": 206064, - "floor_id": 265, - "mdt_id": 4, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -45.22, - "lng": 287.07, - "kill_priority": null - }, - { - "id": 44520, - "mapping_version_id": 282, - "enemy_pack_id": 8565, - "enemy_patrol_id": null, - "npc_id": 206064, - "floor_id": 265, - "mdt_id": 5, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -40.51, - "lng": 295.93, - "kill_priority": null - }, - { - "id": 44521, - "mapping_version_id": 282, - "enemy_pack_id": 8566, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -92.43, - "lng": 311.51, - "kill_priority": null - }, - { - "id": 44522, - "mapping_version_id": 282, - "enemy_pack_id": 8566, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -96.93, - "lng": 308.05, - "kill_priority": null - }, - { - "id": 44523, - "mapping_version_id": 282, - "enemy_pack_id": 8566, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 3, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -97, - "lng": 314.15, - "kill_priority": null - }, - { - "id": 44524, - "mapping_version_id": 282, - "enemy_pack_id": 8567, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 4, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -74.47, - "lng": 336.99, - "kill_priority": null - }, - { - "id": 44525, - "mapping_version_id": 282, - "enemy_pack_id": 8567, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 5, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -79.16, - "lng": 339.69, - "kill_priority": null - }, - { - "id": 44526, - "mapping_version_id": 282, - "enemy_pack_id": 8568, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 6, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -57.95, - "lng": 337.05, - "kill_priority": null - }, - { - "id": 44527, - "mapping_version_id": 282, - "enemy_pack_id": 8564, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 7, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -45.79, - "lng": 328.13, - "kill_priority": null - }, - { - "id": 44528, - "mapping_version_id": 282, - "enemy_pack_id": 8569, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 8, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -33.51, - "lng": 314.51, - "kill_priority": null - }, - { - "id": 44529, - "mapping_version_id": 282, - "enemy_pack_id": 8569, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 9, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -33.25, - "lng": 308.64, - "kill_priority": null - }, - { - "id": 44530, - "mapping_version_id": 282, - "enemy_pack_id": 8570, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 10, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -31.22, - "lng": 292.89, - "kill_priority": null - }, - { - "id": 44531, - "mapping_version_id": 282, - "enemy_pack_id": 8570, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 11, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -32.47, - "lng": 287.2, - "kill_priority": null - }, - { - "id": 44532, - "mapping_version_id": 282, - "enemy_pack_id": 8567, - "enemy_patrol_id": null, - "npc_id": 206066, - "floor_id": 265, - "mdt_id": 12, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -78.94, - "lng": 334.2, - "kill_priority": null - }, - { - "id": 44533, - "mapping_version_id": 282, - "enemy_pack_id": 8571, - "enemy_patrol_id": null, - "npc_id": 206140, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -82.44, - "lng": 310.44, - "kill_priority": null - }, - { - "id": 44534, - "mapping_version_id": 282, - "enemy_pack_id": 8564, - "enemy_patrol_id": null, - "npc_id": 206140, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -47.2, - "lng": 322.41, - "kill_priority": null - }, - { - "id": 44535, - "mapping_version_id": 282, - "enemy_pack_id": 8572, - "enemy_patrol_id": null, - "npc_id": 198996, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -66.68, - "lng": 310.48, - "kill_priority": null - }, - { - "id": 44536, - "mapping_version_id": 282, - "enemy_pack_id": 8573, - "enemy_patrol_id": null, - "npc_id": 206214, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -179.58, - "lng": 74.53, - "kill_priority": null - }, - { - "id": 44537, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -119.78, - "lng": 220.8, - "kill_priority": null - }, - { - "id": 44538, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -118.48, - "lng": 224.06, - "kill_priority": null - }, - { - "id": 44539, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 3, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -118.6, - "lng": 227.41, - "kill_priority": null - }, - { - "id": 44540, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 4, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -126.88, - "lng": 226.69, - "kill_priority": null - }, - { - "id": 44541, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 5, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -120.98, - "lng": 218.01, - "kill_priority": null - }, - { - "id": 44542, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 6, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -130.93, - "lng": 221.09, - "kill_priority": null - }, - { - "id": 44543, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 7, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -129.74, - "lng": 229.22, - "kill_priority": null - }, - { - "id": 44544, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 8, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -126.01, - "lng": 223.13, - "kill_priority": null - }, - { - "id": 44545, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 9, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -122.53, - "lng": 221.64, - "kill_priority": null - }, - { - "id": 44546, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 10, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -124.35, - "lng": 226.03, - "kill_priority": null - }, - { - "id": 44547, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 11, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -121.65, - "lng": 225, - "kill_priority": null - }, - { - "id": 44548, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 12, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -121.55, - "lng": 228.36, - "kill_priority": null - }, - { - "id": 44549, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 13, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -129.28, - "lng": 223.62, - "kill_priority": null - }, - { - "id": 44550, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 14, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -129.46, - "lng": 226.66, - "kill_priority": null - }, - { - "id": 44551, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 15, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -150.33, - "lng": 224.31, - "kill_priority": null - }, - { - "id": 44552, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 16, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -147.02, - "lng": 223, - "kill_priority": null - }, - { - "id": 44553, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 17, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -155.56, - "lng": 230.95, - "kill_priority": null - }, - { - "id": 44554, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 18, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -158.96, - "lng": 228.75, - "kill_priority": null - }, - { - "id": 44555, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 19, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -153.37, - "lng": 222.33, - "kill_priority": null - }, - { - "id": 44556, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 20, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -152.15, - "lng": 231.11, - "kill_priority": null - }, - { - "id": 44557, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 21, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -158.78, - "lng": 222.26, - "kill_priority": null - }, - { - "id": 44558, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 22, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -153.4, - "lng": 228.85, - "kill_priority": null - }, - { - "id": 44559, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 23, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -156.28, - "lng": 227.32, - "kill_priority": null - }, - { - "id": 44560, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 24, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -150.31, - "lng": 220.67, - "kill_priority": null - }, - { - "id": 44561, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 25, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -150.18, - "lng": 227.54, - "kill_priority": null - }, - { - "id": 44562, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 26, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -153.24, - "lng": 225.96, - "kill_priority": null - }, - { - "id": 44563, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 27, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -156.1, - "lng": 224.03, - "kill_priority": null - }, - { - "id": 44564, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 28, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -149.13, - "lng": 230.15, - "kill_priority": null - }, - { - "id": 44565, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 204536, - "floor_id": 265, - "mdt_id": 29, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -158.79, - "lng": 225.27, - "kill_priority": null - }, - { - "id": 44566, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 205804, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -126.5, - "lng": 217.58, - "kill_priority": null - }, - { - "id": 44567, - "mapping_version_id": 282, - "enemy_pack_id": 8574, - "enemy_patrol_id": null, - "npc_id": 205804, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -126.13, - "lng": 232.07, - "kill_priority": null - }, - { - "id": 44568, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 205804, - "floor_id": 265, - "mdt_id": 3, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -144.27, - "lng": 227.88, - "kill_priority": null - }, - { - "id": 44569, - "mapping_version_id": 282, - "enemy_pack_id": 8575, - "enemy_patrol_id": null, - "npc_id": 205804, - "floor_id": 265, - "mdt_id": 4, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -155.56, - "lng": 217.86, - "kill_priority": null - }, - { - "id": 44570, - "mapping_version_id": 282, - "enemy_pack_id": 8576, - "enemy_patrol_id": null, - "npc_id": 198997, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -151.85, - "lng": 244.2, - "kill_priority": null - }, - { - "id": 44571, - "mapping_version_id": 282, - "enemy_pack_id": 8576, - "enemy_patrol_id": null, - "npc_id": 201792, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -159.35, - "lng": 248.9, - "kill_priority": null - }, - { - "id": 44572, - "mapping_version_id": 282, - "enemy_pack_id": 8576, - "enemy_patrol_id": null, - "npc_id": 201788, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -144.4, - "lng": 248.87, - "kill_priority": null - }, - { - "id": 44573, - "mapping_version_id": 282, - "enemy_pack_id": 8576, - "enemy_patrol_id": null, - "npc_id": 201790, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -151.94, - "lng": 253.1, - "kill_priority": null - }, - { - "id": 44574, - "mapping_version_id": 282, - "enemy_pack_id": 8555, - "enemy_patrol_id": null, - "npc_id": 205691, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -204.25, - "lng": 212.98, - "kill_priority": null - }, - { - "id": 44575, - "mapping_version_id": 282, - "enemy_pack_id": 8556, - "enemy_patrol_id": null, - "npc_id": 205691, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -220.69, - "lng": 209.76, - "kill_priority": null - }, - { - "id": 44576, - "mapping_version_id": 282, - "enemy_pack_id": 8557, - "enemy_patrol_id": null, - "npc_id": 205691, - "floor_id": 265, - "mdt_id": 3, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -240.62, - "lng": 222.51, - "kill_priority": null - }, - { - "id": 44577, - "mapping_version_id": 282, - "enemy_pack_id": 8557, - "enemy_patrol_id": null, - "npc_id": 205691, - "floor_id": 265, - "mdt_id": 4, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -246.01, - "lng": 218.59, - "kill_priority": null - }, - { - "id": 44578, - "mapping_version_id": 282, - "enemy_pack_id": 8558, - "enemy_patrol_id": null, - "npc_id": 205691, - "floor_id": 265, - "mdt_id": 5, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -242.55, - "lng": 234.38, - "kill_priority": null - }, - { - "id": 44579, - "mapping_version_id": 282, - "enemy_pack_id": 8577, - "enemy_patrol_id": null, - "npc_id": 198933, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -245.52, - "lng": 262.04, - "kill_priority": null - }, - { - "id": 44580, - "mapping_version_id": 282, - "enemy_pack_id": 8577, - "enemy_patrol_id": null, - "npc_id": 204449, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -234.96, - "lng": 252.73, - "kill_priority": null - }, - { - "id": 44581, - "mapping_version_id": 282, - "enemy_pack_id": 8577, - "enemy_patrol_id": null, - "npc_id": 204918, - "floor_id": 265, - "mdt_id": 1, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -234.04, - "lng": 260.85, - "kill_priority": null - }, - { - "id": 44582, - "mapping_version_id": 282, - "enemy_pack_id": 8577, - "enemy_patrol_id": null, - "npc_id": 204918, - "floor_id": 265, - "mdt_id": 2, - "mdt_npc_id": null, - "seasonal_type": null, - "seasonal_index": null, - "teeming": null, - "faction": "any", - "required": 0, - "skippable": 0, - "hyper_respawn": 0, - "enemy_forces_override": null, - "enemy_forces_override_teeming": null, - "dungeon_difficulty": null, - "lat": -238.46, - "lng": 267.96, - "kill_priority": null - } -] \ No newline at end of file +[] \ No newline at end of file diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/enemy_packs.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/enemy_packs.json index e157dadbba..0637a088a0 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/enemy_packs.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/enemy_packs.json @@ -1,326 +1 @@ -[ - { - "id": 8551, - "mapping_version_id": 282, - "floor_id": 265, - "group": 1, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 1", - "vertices_json": "[{\"lat\":-64.68,\"lng\":65.63},{\"lat\":-54.17,\"lng\":65.63},{\"lat\":-54.17,\"lng\":70.84},{\"lat\":-64.68,\"lng\":70.84}]" - }, - { - "id": 8552, - "mapping_version_id": 282, - "floor_id": 265, - "group": 2, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 2", - "vertices_json": "[{\"lat\":-48.65,\"lng\":74.63},{\"lat\":-39.48,\"lng\":74.63},{\"lat\":-39.48,\"lng\":83.67},{\"lat\":-48.65,\"lng\":83.67}]" - }, - { - "id": 8553, - "mapping_version_id": 282, - "floor_id": 265, - "group": 3, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 3", - "vertices_json": "[{\"lat\":-80.39,\"lng\":77.82},{\"lat\":-68.69,\"lng\":77.82},{\"lat\":-68.69,\"lng\":87.34},{\"lat\":-80.39,\"lng\":87.34}]" - }, - { - "id": 8554, - "mapping_version_id": 282, - "floor_id": 265, - "group": 5, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 5", - "vertices_json": "[{\"lat\":-68.15,\"lng\":120.73},{\"lat\":-49.69,\"lng\":120.73},{\"lat\":-49.69,\"lng\":128.8},{\"lat\":-68.15,\"lng\":128.8}]" - }, - { - "id": 8555, - "mapping_version_id": 282, - "floor_id": 265, - "group": 23, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 23", - "vertices_json": "[{\"lat\":-209.71,\"lng\":205.6},{\"lat\":-203.25,\"lng\":205.6},{\"lat\":-203.25,\"lng\":213.98},{\"lat\":-209.71,\"lng\":213.98}]" - }, - { - "id": 8556, - "mapping_version_id": 282, - "floor_id": 265, - "group": 24, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 24", - "vertices_json": "[{\"lat\":-221.69,\"lng\":208.76},{\"lat\":-217.78,\"lng\":208.76},{\"lat\":-217.78,\"lng\":216.42},{\"lat\":-221.69,\"lng\":216.42}]" - }, - { - "id": 8557, - "mapping_version_id": 282, - "floor_id": 265, - "group": 25, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 25", - "vertices_json": "[{\"lat\":-247.01,\"lng\":210.65},{\"lat\":-234.44,\"lng\":210.65},{\"lat\":-234.44,\"lng\":223.51},{\"lat\":-247.01,\"lng\":223.51}]" - }, - { - "id": 8558, - "mapping_version_id": 282, - "floor_id": 265, - "group": 26, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 26", - "vertices_json": "[{\"lat\":-249.66,\"lng\":233.38},{\"lat\":-240.3,\"lng\":233.38},{\"lat\":-240.3,\"lng\":243.71},{\"lat\":-249.66,\"lng\":243.71}]" - }, - { - "id": 8559, - "mapping_version_id": 282, - "floor_id": 265, - "group": 4, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 4", - "vertices_json": "[{\"lat\":-64.89,\"lng\":96.95},{\"lat\":-55.1,\"lng\":96.95},{\"lat\":-55.1,\"lng\":99.06},{\"lat\":-64.89,\"lng\":99.06}]" - }, - { - "id": 8560, - "mapping_version_id": 282, - "floor_id": 265, - "group": 6, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 6", - "vertices_json": "[{\"lat\":-60.52,\"lng\":145.7},{\"lat\":-58.52,\"lng\":145.7},{\"lat\":-58.52,\"lng\":147.7},{\"lat\":-60.52,\"lng\":147.7}]" - }, - { - "id": 8561, - "mapping_version_id": 282, - "floor_id": 265, - "group": 7, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 7", - "vertices_json": "[{\"lat\":-52.4,\"lng\":309.28},{\"lat\":-50.4,\"lng\":309.28},{\"lat\":-50.4,\"lng\":311.28},{\"lat\":-52.4,\"lng\":311.28}]" - }, - { - "id": 8562, - "mapping_version_id": 282, - "floor_id": 265, - "group": 11, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 11", - "vertices_json": "[{\"lat\":-91.18,\"lng\":324.07},{\"lat\":-83.57,\"lng\":324.07},{\"lat\":-83.57,\"lng\":331.97},{\"lat\":-91.18,\"lng\":331.97}]" - }, - { - "id": 8563, - "mapping_version_id": 282, - "floor_id": 265, - "group": 9, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 9", - "vertices_json": "[{\"lat\":-92.47,\"lng\":285.4},{\"lat\":-79.41,\"lng\":285.4},{\"lat\":-79.41,\"lng\":298.25},{\"lat\":-92.47,\"lng\":298.25}]" - }, - { - "id": 8564, - "mapping_version_id": 282, - "floor_id": 265, - "group": 14, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 14", - "vertices_json": "[{\"lat\":-48.2,\"lng\":321.41},{\"lat\":-39.7,\"lng\":321.41},{\"lat\":-39.7,\"lng\":329.13},{\"lat\":-48.2,\"lng\":329.13}]" - }, - { - "id": 8565, - "mapping_version_id": 282, - "floor_id": 265, - "group": 16, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 16", - "vertices_json": "[{\"lat\":-50.57,\"lng\":286.07},{\"lat\":-39.51,\"lng\":286.07},{\"lat\":-39.51,\"lng\":298.82},{\"lat\":-50.57,\"lng\":298.82}]" - }, - { - "id": 8566, - "mapping_version_id": 282, - "floor_id": 265, - "group": 10, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 10", - "vertices_json": "[{\"lat\":-98,\"lng\":307.05},{\"lat\":-91.43,\"lng\":307.05},{\"lat\":-91.43,\"lng\":315.15},{\"lat\":-98,\"lng\":315.15}]" - }, - { - "id": 8567, - "mapping_version_id": 282, - "floor_id": 265, - "group": 12, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 12", - "vertices_json": "[{\"lat\":-80.16,\"lng\":333.2},{\"lat\":-73.47,\"lng\":333.2},{\"lat\":-73.47,\"lng\":340.69},{\"lat\":-80.16,\"lng\":340.69}]" - }, - { - "id": 8568, - "mapping_version_id": 282, - "floor_id": 265, - "group": 13, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 13", - "vertices_json": "[{\"lat\":-58.95,\"lng\":336.05},{\"lat\":-56.95,\"lng\":336.05},{\"lat\":-56.95,\"lng\":338.05},{\"lat\":-58.95,\"lng\":338.05}]" - }, - { - "id": 8569, - "mapping_version_id": 282, - "floor_id": 265, - "group": 15, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 15", - "vertices_json": "[{\"lat\":-34.51,\"lng\":307.64},{\"lat\":-32.25,\"lng\":307.64},{\"lat\":-32.25,\"lng\":315.51},{\"lat\":-34.51,\"lng\":315.51}]" - }, - { - "id": 8570, - "mapping_version_id": 282, - "floor_id": 265, - "group": 17, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 17", - "vertices_json": "[{\"lat\":-33.47,\"lng\":286.2},{\"lat\":-30.22,\"lng\":286.2},{\"lat\":-30.22,\"lng\":293.89},{\"lat\":-33.47,\"lng\":293.89}]" - }, - { - "id": 8571, - "mapping_version_id": 282, - "floor_id": 265, - "group": 8, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 8", - "vertices_json": "[{\"lat\":-83.44,\"lng\":309.44},{\"lat\":-81.44,\"lng\":309.44},{\"lat\":-81.44,\"lng\":311.44},{\"lat\":-83.44,\"lng\":311.44}]" - }, - { - "id": 8572, - "mapping_version_id": 282, - "floor_id": 265, - "group": 18, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 18", - "vertices_json": "[{\"lat\":-67.68,\"lng\":309.48},{\"lat\":-65.68,\"lng\":309.48},{\"lat\":-65.68,\"lng\":311.48},{\"lat\":-67.68,\"lng\":311.48}]" - }, - { - "id": 8573, - "mapping_version_id": 282, - "floor_id": 265, - "group": 19, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 19", - "vertices_json": "[{\"lat\":-180.58,\"lng\":73.53},{\"lat\":-178.58,\"lng\":73.53},{\"lat\":-178.58,\"lng\":75.53},{\"lat\":-180.58,\"lng\":75.53}]" - }, - { - "id": 8574, - "mapping_version_id": 282, - "floor_id": 265, - "group": 20, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 20", - "vertices_json": "[{\"lat\":-131.93,\"lng\":216.58},{\"lat\":-117.48,\"lng\":216.58},{\"lat\":-117.48,\"lng\":233.07},{\"lat\":-131.93,\"lng\":233.07}]" - }, - { - "id": 8575, - "mapping_version_id": 282, - "floor_id": 265, - "group": 21, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 21", - "vertices_json": "[{\"lat\":-159.96,\"lng\":216.86},{\"lat\":-143.27,\"lng\":216.86},{\"lat\":-143.27,\"lng\":232.11},{\"lat\":-159.96,\"lng\":232.11}]" - }, - { - "id": 8576, - "mapping_version_id": 282, - "floor_id": 265, - "group": 22, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 22", - "vertices_json": "[{\"lat\":-160.35,\"lng\":243.2},{\"lat\":-143.4,\"lng\":243.2},{\"lat\":-143.4,\"lng\":254.1},{\"lat\":-160.35,\"lng\":254.1}]" - }, - { - "id": 8577, - "mapping_version_id": 282, - "floor_id": 265, - "group": 27, - "teeming": null, - "faction": "any", - "color": null, - "color_animated": null, - "label": "Imported from MDT - group 27", - "vertices_json": "[{\"lat\":-246.52,\"lng\":251.73},{\"lat\":-233.04,\"lng\":251.73},{\"lat\":-233.04,\"lng\":268.96},{\"lat\":-246.52,\"lng\":268.96}]" - } -] \ No newline at end of file +[] \ No newline at end of file diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/floor_union_areas.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/floor_union_areas.json index b076167bbb..5a4c511dae 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/floor_union_areas.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/floor_union_areas.json @@ -112,57 +112,29 @@ "vertices_json": "[{\"lat\":\"-94.344816\",\"lng\":\"201.719772\"},{\"lat\":\"-131.620914\",\"lng\":\"318.826099\"},{\"lat\":\"-261.427505\",\"lng\":\"325.093762\"},{\"lat\":\"-257.468981\",\"lng\":\"172.690598\"},{\"lat\":\"-133.10536\",\"lng\":\"180.772584\"}]" }, { - "id": 98, - "mapping_version_id": 276, + "id": 122, + "mapping_version_id": 287, "floor_id": 265, "floor_union_id": 86, "vertices_json": "[{\"lat\":\"3.29877\",\"lng\":\"-1.649385\"},{\"lat\":\"-113.312742\",\"lng\":\"-1.649385\"},{\"lat\":\"-114.962127\",\"lng\":\"164.113796\"},{\"lat\":\"-94.509754\",\"lng\":\"202.709403\"},{\"lat\":\"1.484446\",\"lng\":\"197.101494\"}]" }, { - "id": 99, - "mapping_version_id": 276, + "id": 123, + "mapping_version_id": 287, "floor_id": 265, "floor_union_id": 87, "vertices_json": "[{\"lat\":\"0\",\"lng\":\"196.111863\"},{\"lat\":\"-94.982995\",\"lng\":\"201.417077\"},{\"lat\":\"-146.75\",\"lng\":\"334\"},{\"lat\":\"-147.619948\",\"lng\":\"387.935326\"},{\"lat\":\"0.329877\",\"lng\":\"387.605449\"}]" }, { - "id": 100, - "mapping_version_id": 276, + "id": 124, + "mapping_version_id": 287, "floor_id": 265, "floor_union_id": 88, "vertices_json": "[{\"lat\":\"-112.5\",\"lng\":\"-0.5\"},{\"lat\":\"-258.5\",\"lng\":\"-1.5\"},{\"lat\":\"-259.75\",\"lng\":\"161\"},{\"lat\":\"-114\",\"lng\":\"161\"}]" }, { - "id": 101, - "mapping_version_id": 276, - "floor_id": 265, - "floor_union_id": 89, - "vertices_json": "[{\"lat\":\"-94.344816\",\"lng\":\"201.719772\"},{\"lat\":\"-144.75\",\"lng\":\"333.75\"},{\"lat\":\"-146\",\"lng\":\"386\"},{\"lat\":\"-259.75\",\"lng\":\"388.25\"},{\"lat\":\"-261.082179\",\"lng\":\"160.287027\"},{\"lat\":\"-115.75\",\"lng\":\"158.75\"}]" - }, - { - "id": 102, - "mapping_version_id": 282, - "floor_id": 265, - "floor_union_id": 86, - "vertices_json": "[{\"lat\":\"3.29877\",\"lng\":\"-1.649385\"},{\"lat\":\"-113.312742\",\"lng\":\"-1.649385\"},{\"lat\":\"-114.962127\",\"lng\":\"164.113796\"},{\"lat\":\"-94.509754\",\"lng\":\"202.709403\"},{\"lat\":\"1.484446\",\"lng\":\"197.101494\"}]" - }, - { - "id": 103, - "mapping_version_id": 282, - "floor_id": 265, - "floor_union_id": 87, - "vertices_json": "[{\"lat\":\"0\",\"lng\":\"196.111863\"},{\"lat\":\"-94.982995\",\"lng\":\"201.417077\"},{\"lat\":\"-146.75\",\"lng\":\"334\"},{\"lat\":\"-147.619948\",\"lng\":\"387.935326\"},{\"lat\":\"0.329877\",\"lng\":\"387.605449\"}]" - }, - { - "id": 104, - "mapping_version_id": 282, - "floor_id": 265, - "floor_union_id": 88, - "vertices_json": "[{\"lat\":\"-112.5\",\"lng\":\"-0.5\"},{\"lat\":\"-258.5\",\"lng\":\"-1.5\"},{\"lat\":\"-259.75\",\"lng\":\"161\"},{\"lat\":\"-114\",\"lng\":\"161\"}]" - }, - { - "id": 105, - "mapping_version_id": 282, + "id": 125, + "mapping_version_id": 287, "floor_id": 265, "floor_union_id": 89, "vertices_json": "[{\"lat\":\"-94.344816\",\"lng\":\"201.719772\"},{\"lat\":\"-144.75\",\"lng\":\"333.75\"},{\"lat\":\"-146\",\"lng\":\"386\"},{\"lat\":\"-259.75\",\"lng\":\"388.25\"},{\"lat\":\"-261.082179\",\"lng\":\"160.287027\"},{\"lat\":\"-115.75\",\"lng\":\"158.75\"}]" diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/floor_unions.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/floor_unions.json index 2d1921bde6..bcb9e9bf2b 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/floor_unions.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/floor_unions.json @@ -40,18 +40,8 @@ "rotation": -51.3 }, { - "id": 86, - "mapping_version_id": 276, - "floor_id": 265, - "target_floor_id": 253, - "lat": -56.41, - "lng": 91.61, - "size": 220, - "rotation": -51.3 - }, - { - "id": 106, - "mapping_version_id": 282, + "id": 126, + "mapping_version_id": 287, "floor_id": 265, "target_floor_id": 253, "lat": -56.41, @@ -100,18 +90,8 @@ "rotation": -12.1 }, { - "id": 87, - "mapping_version_id": 276, - "floor_id": 265, - "target_floor_id": 254, - "lat": -60.83, - "lng": 233.2, - "size": 280, - "rotation": -12.1 - }, - { - "id": 107, - "mapping_version_id": 282, + "id": 127, + "mapping_version_id": 287, "floor_id": 265, "target_floor_id": 254, "lat": -60.83, @@ -160,18 +140,8 @@ "rotation": -13.2 }, { - "id": 88, - "mapping_version_id": 276, - "floor_id": 265, - "target_floor_id": 255, - "lat": -170.8, - "lng": 67.27, - "size": 160, - "rotation": -13.2 - }, - { - "id": 108, - "mapping_version_id": 282, + "id": 128, + "mapping_version_id": 287, "floor_id": 265, "target_floor_id": 255, "lat": -170.8, @@ -220,18 +190,8 @@ "rotation": 0 }, { - "id": 89, - "mapping_version_id": 276, - "floor_id": 265, - "target_floor_id": 257, - "lat": -181.69, - "lng": 273.31, - "size": 220, - "rotation": 0 - }, - { - "id": 109, - "mapping_version_id": 282, + "id": 129, + "mapping_version_id": 287, "floor_id": 265, "target_floor_id": 257, "lat": -181.69, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/map_icons.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/map_icons.json index 73352835b8..96b1c9f0e4 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/map_icons.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/6/map_icons.json @@ -52,20 +52,7 @@ "is_admin": true }, { - "mapping_version_id": 276, - "floor_id": 265, - "dungeon_route_id": null, - "team_id": null, - "map_icon_type_id": 10, - "lat": -60.488014133849, - "lng": 4.4983244133176, - "comment": null, - "permanent_tooltip": 0, - "seasonal_index": null, - "is_admin": true - }, - { - "mapping_version_id": 282, + "mapping_version_id": 287, "floor_id": 265, "dungeon_route_id": null, "team_id": null, diff --git a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/npcs.json b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/npcs.json index b831900fdc..d4d0193b7e 100644 --- a/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/npcs.json +++ b/database/seeders/dungeondata/dragonflight/dawn_of_the_infinite_galakronds_fall/npcs.json @@ -188,15 +188,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15450, - "mapping_version_id": 282, - "npc_id": 204536, - "enemy_forces": 1, - "enemy_forces_teeming": null - }, - { - "id": 15317, - "mapping_version_id": 276, + "id": 15560, + "mapping_version_id": 287, "npc_id": 204536, "enemy_forces": 1, "enemy_forces_teeming": null @@ -273,15 +266,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15439, - "mapping_version_id": 282, - "npc_id": 205384, - "enemy_forces": 5, - "enemy_forces_teeming": null - }, - { - "id": 15319, - "mapping_version_id": 276, + "id": 15549, + "mapping_version_id": 287, "npc_id": 205384, "enemy_forces": 5, "enemy_forces_teeming": null @@ -337,15 +323,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15438, - "mapping_version_id": 282, - "npc_id": 205408, - "enemy_forces": 4, - "enemy_forces_teeming": null - }, - { - "id": 15320, - "mapping_version_id": 276, + "id": 15548, + "mapping_version_id": 287, "npc_id": 205408, "enemy_forces": 4, "enemy_forces_teeming": null @@ -401,15 +380,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15440, - "mapping_version_id": 282, - "npc_id": 205435, - "enemy_forces": 12, - "enemy_forces_teeming": null - }, - { - "id": 15321, - "mapping_version_id": 276, + "id": 15550, + "mapping_version_id": 287, "npc_id": 205435, "enemy_forces": 12, "enemy_forces_teeming": null @@ -465,15 +437,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15456, - "mapping_version_id": 282, - "npc_id": 205691, - "enemy_forces": 5, - "enemy_forces_teeming": null - }, - { - "id": 15322, - "mapping_version_id": 276, + "id": 15566, + "mapping_version_id": 287, "npc_id": 205691, "enemy_forces": 5, "enemy_forces_teeming": null @@ -529,15 +494,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15451, - "mapping_version_id": 282, - "npc_id": 205804, - "enemy_forces": 15, - "enemy_forces_teeming": null - }, - { - "id": 15323, - "mapping_version_id": 276, + "id": 15561, + "mapping_version_id": 287, "npc_id": 205804, "enemy_forces": 15, "enemy_forces_teeming": null @@ -593,15 +551,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15445, - "mapping_version_id": 282, - "npc_id": 206064, - "enemy_forces": 2, - "enemy_forces_teeming": null - }, - { - "id": 15325, - "mapping_version_id": 276, + "id": 15555, + "mapping_version_id": 287, "npc_id": 206064, "enemy_forces": 2, "enemy_forces_teeming": null @@ -657,15 +608,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15446, - "mapping_version_id": 282, - "npc_id": 206066, - "enemy_forces": 3, - "enemy_forces_teeming": null - }, - { - "id": 15326, - "mapping_version_id": 276, + "id": 15556, + "mapping_version_id": 287, "npc_id": 206066, "enemy_forces": 3, "enemy_forces_teeming": null @@ -721,15 +665,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15447, - "mapping_version_id": 282, - "npc_id": 206140, - "enemy_forces": 12, - "enemy_forces_teeming": null - }, - { - "id": 15328, - "mapping_version_id": 276, + "id": 15557, + "mapping_version_id": 287, "npc_id": 206140, "enemy_forces": 12, "enemy_forces_teeming": null @@ -785,15 +722,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15449, - "mapping_version_id": 282, - "npc_id": 206214, - "enemy_forces": 20, - "enemy_forces_teeming": null - }, - { - "id": 15329, - "mapping_version_id": 276, + "id": 15559, + "mapping_version_id": 287, "npc_id": 206214, "enemy_forces": 20, "enemy_forces_teeming": null diff --git a/database/seeders/dungeondata/mapping_versions.json b/database/seeders/dungeondata/mapping_versions.json index e9834ba3e4..2c354b64e3 100644 --- a/database/seeders/dungeondata/mapping_versions.json +++ b/database/seeders/dungeondata/mapping_versions.json @@ -3443,20 +3443,6 @@ "updated_at": "2023-11-20T12:56:36.000000Z", "merged": false }, - { - "id": 276, - "dungeon_id": 105, - "version": 6, - "enemy_forces_required": 300, - "enemy_forces_required_teeming": 1000, - "enemy_forces_shrouded": null, - "enemy_forces_shrouded_zul_gamux": null, - "timer_max_seconds": 2040, - "mdt_mapping_hash": "f6f071ee1012ac1e9746f147a4507e45", - "created_at": "2023-11-21T16:27:39.000000Z", - "updated_at": "2023-11-21T16:27:39.000000Z", - "merged": false - }, { "id": 277, "dungeon_id": 14, @@ -3472,7 +3458,7 @@ "merged": false }, { - "id": 282, + "id": 287, "dungeon_id": 105, "version": 7, "enemy_forces_required": 300, @@ -3481,8 +3467,8 @@ "enemy_forces_shrouded_zul_gamux": null, "timer_max_seconds": 0, "mdt_mapping_hash": "7f687345c82563e298802c8dcefe21f4", - "created_at": "2023-11-21T21:09:12.000000Z", - "updated_at": "2023-11-21T21:09:12.000000Z", + "created_at": "2023-11-21T22:16:32.000000Z", + "updated_at": "2023-11-21T22:16:32.000000Z", "merged": false } ] \ No newline at end of file diff --git a/database/seeders/dungeondata/npcs.json b/database/seeders/dungeondata/npcs.json index 49fd16e67c..2e34d08117 100644 --- a/database/seeders/dungeondata/npcs.json +++ b/database/seeders/dungeondata/npcs.json @@ -5779,15 +5779,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15442, - "mapping_version_id": 282, - "npc_id": 199749, - "enemy_forces": 12, - "enemy_forces_teeming": null - }, - { - "id": 15312, - "mapping_version_id": 276, + "id": 15552, + "mapping_version_id": 287, "npc_id": 199749, "enemy_forces": 12, "enemy_forces_teeming": null @@ -5871,15 +5864,8 @@ "npcspells": [], "npc_enemy_forces": [ { - "id": 15443, - "mapping_version_id": 282, - "npc_id": 206068, - "enemy_forces": 2, - "enemy_forces_teeming": null - }, - { - "id": 15327, - "mapping_version_id": 276, + "id": 15553, + "mapping_version_id": 287, "npc_id": 206068, "enemy_forces": 2, "enemy_forces_teeming": null