diff --git a/app/Logic/CombatLog/CombatLogEntry.php b/app/Logic/CombatLog/CombatLogEntry.php index f2bb39b8a..e3ee10cd0 100644 --- a/app/Logic/CombatLog/CombatLogEntry.php +++ b/app/Logic/CombatLog/CombatLogEntry.php @@ -16,16 +16,22 @@ class CombatLogEntry { public const DATE_FORMATS = [ 'm/d H:i:s.v', - 'm/d/Y H:i:s.v-1', + 'm/d/Y H:i:s.v-1', // These are all the timezones that are used in the combat log 'm/d/Y H:i:s.v-2', 'm/d/Y H:i:s.v-3', - 'm/d/Y H:i:s.v-4', // I don't know what the -4 stands for - assuming timezone? There's no thingy for it though + 'm/d/Y H:i:s.v-4', 'm/d/Y H:i:s.v-5', 'm/d/Y H:i:s.v-6', 'm/d/Y H:i:s.v-7', 'm/d/Y H:i:s.v-8', 'm/d/Y H:i:s.v-9', - 'm/d/Y H:i:s.v1', // I don't know what the 1-9 stands for + 'm/d/Y H:i:s.v-10', + 'm/d/Y H:i:s.v-11', + 'm/d/Y H:i:s.v-12', + 'm/d/Y H:i:s.v-13', + 'm/d/Y H:i:s.v-14', + 'm/d/Y H:i:s.v0', + 'm/d/Y H:i:s.v1', 'm/d/Y H:i:s.v2', 'm/d/Y H:i:s.v3', 'm/d/Y H:i:s.v4', @@ -34,7 +40,11 @@ class CombatLogEntry 'm/d/Y H:i:s.v7', 'm/d/Y H:i:s.v8', 'm/d/Y H:i:s.v9', - 'm/d/Y H:i:s.v0', + 'm/d/Y H:i:s.v10', + 'm/d/Y H:i:s.v11', + 'm/d/Y H:i:s.v12', + 'm/d/Y H:i:s.v13', + 'm/d/Y H:i:s.v14', ]; private const RAW_EVENT_IGNORE = [ @@ -45,13 +55,13 @@ class CombatLogEntry 'COMBAT_LOG_VERSION,20,ADVANCED_LOG_ENABLED,1,BUILD_VERSION,11.0.0,PROJECT_ID,1', ]; + /** @var int|null Remembers what date format was last found in the combat log and uses that for subsequent format parses first. */ + private static ?int $previousDateFormat = null; + private ?Carbon $parsedTimestamp = null; private ?BaseEvent $parsedEvent = null; - /** @var int|null Remembers what date format was last found in the combat log and uses that for subsequent format parses first. */ - private ?int $previousDateFormat = null; - public function __construct(private readonly string $rawEvent) { } @@ -140,9 +150,9 @@ private function parseTimestamp(string $timestamp): Carbon $parsedTimestamp = null; // If we had a previous date format, try to parse with that format first - if ($this->previousDateFormat !== null) { + if (self::$previousDateFormat !== null) { try { - return Carbon::createFromFormat(self::DATE_FORMATS[$this->previousDateFormat], $timestamp); + return Carbon::createFromFormat(self::DATE_FORMATS[self::$previousDateFormat], $timestamp); } catch (InvalidFormatException $invalidFormatException) { // Ignore, we'll try the other formats } @@ -150,14 +160,14 @@ private function parseTimestamp(string $timestamp): Carbon foreach (self::DATE_FORMATS as $key => $dateFormat) { // Don't double-check if it's not needed - if ($key === $this->previousDateFormat) { + if ($key === self::$previousDateFormat) { continue; } try { $parsedTimestamp = Carbon::createFromFormat($dateFormat, $timestamp); - $this->previousDateFormat = $key; + self::$previousDateFormat = $key; } catch (InvalidFormatException $invalidFormatException) { continue; } diff --git a/database/seeders/dungeondata/cata/firelands/npcs.json b/database/seeders/dungeondata/cata/firelands/npcs.json index 0637a088a..a6b4d89c5 100644 --- a/database/seeders/dungeondata/cata/firelands/npcs.json +++ b/database/seeders/dungeondata/cata/firelands/npcs.json @@ -1 +1,2427 @@ -[] \ No newline at end of file +[ + { + "id": 52409, + "dungeon_id": 120, + "classification_id": 3, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 37875, + "encounter_id": null, + "name": "Ragnaros", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52447, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 37932, + "encounter_id": null, + "name": "Cinderweb Spiderling", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52498, + "dungeon_id": 120, + "classification_id": 3, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38227, + "encounter_id": null, + "name": "Beth'tilac", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52524, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38257, + "encounter_id": null, + "name": "Cinderweb Spinner", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52530, + "dungeon_id": 120, + "classification_id": 3, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38446, + "encounter_id": null, + "name": "Alysrazor", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52558, + "dungeon_id": 120, + "classification_id": 3, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38414, + "encounter_id": null, + "name": "Lord Rhyolith", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52571, + "dungeon_id": 120, + "classification_id": 3, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 37953, + "encounter_id": null, + "name": "Majordomo Staghelm", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52577, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": null, + "encounter_id": null, + "name": "Left Foot", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52581, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38256, + "encounter_id": null, + "name": "Cinderweb Drone", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52593, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38747, + "encounter_id": null, + "name": "Spirit of the Flame", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52619, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 33006, + "encounter_id": null, + "name": "Liquid Obsidian", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52620, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 35201, + "encounter_id": null, + "name": "Fragment of Rhyolith", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 52672, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38018, + "encounter_id": null, + "name": "Flameward Hippogryph", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53082, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 11, + "npc_class_id": 1, + "display_id": null, + "encounter_id": null, + "name": "Spiderweb Filament", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53087, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": null, + "encounter_id": null, + "name": "Right Foot", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53094, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 37282, + "encounter_id": null, + "name": "Patriarch Fire Turtle", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53095, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38149, + "encounter_id": null, + "name": "Matriarch Fire Turtle", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53096, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 36702, + "encounter_id": null, + "name": "Fire Turtle Hatchling", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53102, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38012, + "encounter_id": null, + "name": "Inferno Hawk", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53115, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 7, + "npc_class_id": 1, + "display_id": 38765, + "encounter_id": null, + "name": "Molten Lord", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53116, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 35681, + "encounter_id": null, + "name": "Unbound Blazing Elemental", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53119, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38241, + "encounter_id": null, + "name": "Flamewaker Forward Guard", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53120, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 13031, + "encounter_id": null, + "name": "Flamewaker Pathfinder", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53121, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38239, + "encounter_id": null, + "name": "Flamewaker Cauterizer", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53127, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 37539, + "encounter_id": null, + "name": "Fire Scorpion", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53128, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38404, + "encounter_id": null, + "name": "Giant Fire Scorpion", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53129, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 37993, + "encounter_id": null, + "name": "Lava Dweller", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53130, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38175, + "encounter_id": null, + "name": "Ancient Lava Dweller", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53134, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 10193, + "encounter_id": null, + "name": "Ancient Core Hound", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53140, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 1070, + "encounter_id": null, + "name": "Son of Flame", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53141, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 36019, + "encounter_id": null, + "name": "Molten Surger", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53167, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38019, + "encounter_id": null, + "name": "Unbound Pyrelord", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53185, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38140, + "encounter_id": null, + "name": "Flamewaker Overseer", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53187, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 13030, + "encounter_id": null, + "name": "Flamewaker Animator", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53188, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 26704, + "encounter_id": null, + "name": "Flamewaker Subjugator", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53189, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38520, + "encounter_id": null, + "name": "Molten Elemental", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53206, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 10, + "npc_class_id": 1, + "display_id": 38223, + "encounter_id": null, + "name": "Hell Hound", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53211, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38225, + "encounter_id": null, + "name": "Spark of Rhyolith", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53222, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38241, + "encounter_id": null, + "name": "Flamewaker Centurion", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53223, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 26704, + "encounter_id": null, + "name": "Flamewaker Beast Handler", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53224, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38240, + "encounter_id": null, + "name": "Flamewaker Taskmaster", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53231, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38019, + "encounter_id": null, + "name": "Lava Scion", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53244, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 12030, + "encounter_id": null, + "name": "Flamewaker Trainee", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53369, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38557, + "encounter_id": null, + "name": "Blazing Talon Initiate", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53375, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38652, + "encounter_id": null, + "name": "Herald of the Burning End", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53489, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 11, + "npc_class_id": 1, + "display_id": null, + "encounter_id": null, + "name": "Molten Meteor", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53494, + "dungeon_id": 120, + "classification_id": 3, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38621, + "encounter_id": null, + "name": "Baleroc", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53500, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 11, + "npc_class_id": 1, + "display_id": 38475, + "encounter_id": null, + "name": "Living Meteor", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53509, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38372, + "encounter_id": null, + "name": "Voracious Hatchling", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53545, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38774, + "encounter_id": null, + "name": "Molten Spewer", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53575, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38255, + "encounter_id": null, + "name": "Lava Wielder", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53616, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38591, + "encounter_id": null, + "name": "Kar the Everburning", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53617, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38773, + "encounter_id": null, + "name": "Molten Erupter", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53619, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38441, + "encounter_id": null, + "name": "Druid of the Flame", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53622, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 2172, + "encounter_id": null, + "name": "Lava Spawn", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53630, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 35681, + "encounter_id": null, + "name": "Unstable Pyrelord", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53631, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 37932, + "encounter_id": null, + "name": "Cinderweb Spiderling", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53635, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38256, + "encounter_id": null, + "name": "Cinderweb Drone", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53639, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38240, + "encounter_id": null, + "name": "Flamewaker Cauterizer", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53640, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38144, + "encounter_id": null, + "name": "Flamewaker Sentinel", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53642, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38257, + "encounter_id": null, + "name": "Cinderweb Spinner", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53648, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38012, + "encounter_id": null, + "name": "Inferno Hawk", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53691, + "dungeon_id": 120, + "classification_id": 3, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38448, + "encounter_id": null, + "name": "Shannox", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53694, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 10, + "npc_class_id": 1, + "display_id": 38449, + "encounter_id": null, + "name": "Riplimb", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53695, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 10, + "npc_class_id": 1, + "display_id": 38450, + "encounter_id": null, + "name": "Rageface", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53732, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 35201, + "encounter_id": null, + "name": "Unbound Smoldering Elemental", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53734, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38013, + "encounter_id": null, + "name": "Blazing Talon Clawshaper", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53745, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 38366, + "encounter_id": null, + "name": "Engorged Broodling", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53786, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38501, + "encounter_id": null, + "name": "Blazing Monstrosity", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53791, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38501, + "encounter_id": null, + "name": "Blazing Monstrosity", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53793, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38503, + "encounter_id": null, + "name": "Harbinger of Flame", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53794, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38505, + "encounter_id": null, + "name": "Smouldering Hatchling", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53795, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38445, + "encounter_id": null, + "name": "Egg Pile", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53819, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 11, + "npc_class_id": 1, + "display_id": 38627, + "encounter_id": null, + "name": "Crystal Prison", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53825, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 6352, + "encounter_id": null, + "name": "Tormented Protector", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53832, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38514, + "encounter_id": null, + "name": "Burning Treant", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53833, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38592, + "encounter_id": null, + "name": "Volcanus", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53872, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38532, + "encounter_id": null, + "name": "Cenarius", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53875, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38530, + "encounter_id": null, + "name": "Malfurion Stormrage", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53876, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38531, + "encounter_id": null, + "name": "Archdruid Hamuul Runetotem", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53896, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38317, + "encounter_id": null, + "name": "Blazing Talon Initiate", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53898, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38372, + "encounter_id": null, + "name": "Voracious Hatchling", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 53901, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 12231, + "encounter_id": null, + "name": "Unstable Magma", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54015, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 37953, + "encounter_id": null, + "name": "Majordomo Staghelm", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54019, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38603, + "encounter_id": null, + "name": "Captive Druid of the Talon", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54073, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 26704, + "encounter_id": null, + "name": "Flamewaker Hound Master", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54143, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 7, + "npc_class_id": 1, + "display_id": 38766, + "encounter_id": null, + "name": "Molten Flamefather", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54144, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 4759, + "encounter_id": null, + "name": "Magmakin", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54145, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 11, + "npc_class_id": 1, + "display_id": 38625, + "encounter_id": null, + "name": "Magma Conduit", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54147, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 11, + "npc_class_id": 1, + "display_id": 38651, + "encounter_id": null, + "name": "Cloudburst", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54161, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 6, + "npc_class_id": 1, + "display_id": 38030, + "encounter_id": null, + "name": "Flame Archon", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54203, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 11, + "npc_class_id": 1, + "display_id": null, + "encounter_id": null, + "name": "Dreadflame Spawn", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54274, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 3, + "npc_class_id": 1, + "display_id": 38740, + "encounter_id": null, + "name": "Magmaspray Beetle", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "neutral", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54275, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 3, + "npc_class_id": 1, + "display_id": 1206, + "encounter_id": null, + "name": "Ashtongue Adder", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "neutral", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54276, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 3, + "npc_class_id": 1, + "display_id": 35803, + "encounter_id": null, + "name": "Cinderslither Snake", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "neutral", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54277, + "dungeon_id": 120, + "classification_id": 1, + "npc_type_id": 3, + "npc_class_id": 1, + "display_id": 20265, + "encounter_id": null, + "name": "Kindleworm", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "neutral", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 54563, + "dungeon_id": 120, + "classification_id": 2, + "npc_type_id": 11, + "npc_class_id": 1, + "display_id": null, + "encounter_id": null, + "name": "Molten Meteor", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + } +] \ No newline at end of file diff --git a/database/seeders/dungeondata/classic/blackwinglair/npcs.json b/database/seeders/dungeondata/classic/blackwinglair/npcs.json index 0637a088a..b9c239399 100644 --- a/database/seeders/dungeondata/classic/blackwinglair/npcs.json +++ b/database/seeders/dungeondata/classic/blackwinglair/npcs.json @@ -1 +1,977 @@ -[] \ No newline at end of file +[ + { + "id": 10162, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 9472, + "encounter_id": null, + "name": "Lord Victor Nefarius", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 11583, + "dungeon_id": 118, + "classification_id": 3, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 11380, + "encounter_id": null, + "name": "Nefarian", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 11981, + "dungeon_id": 118, + "classification_id": 3, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 6377, + "encounter_id": null, + "name": "Flamegor", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 11983, + "dungeon_id": 118, + "classification_id": 3, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 6377, + "encounter_id": null, + "name": "Firemaw", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12017, + "dungeon_id": 118, + "classification_id": 3, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 14308, + "encounter_id": null, + "name": "Broodlord Lashlayer", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12416, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 12024, + "encounter_id": null, + "name": "Blackwing Legionnaire", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12420, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 11979, + "encounter_id": null, + "name": "Blackwing Mage", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12422, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 2554, + "encounter_id": null, + "name": "Death Talon Dragonspawn", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12435, + "dungeon_id": 118, + "classification_id": 3, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 10115, + "encounter_id": null, + "name": "Razorgore the Untamed", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12457, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 7923, + "encounter_id": null, + "name": "Blackwing Spellbinder", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12458, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 11967, + "encounter_id": null, + "name": "Blackwing Taskmaster", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12459, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 14292, + "encounter_id": null, + "name": "Blackwing Warlock", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12460, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 14308, + "encounter_id": null, + "name": "Death Talon Wyrmguard", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12461, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 14355, + "encounter_id": null, + "name": "Death Talon Overseer", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12463, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 8310, + "encounter_id": null, + "name": "Death Talon Flamescale", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12464, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 12893, + "encounter_id": null, + "name": "Death Talon Seether", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12465, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 12894, + "encounter_id": null, + "name": "Death Talon Wyrmkin", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12467, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 14544, + "encounter_id": null, + "name": "Death Talon Captain", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12468, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 12892, + "encounter_id": null, + "name": "Death Talon Hatcher", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 12557, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 14296, + "encounter_id": null, + "name": "Grethok the Controller", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 13020, + "dungeon_id": 118, + "classification_id": 3, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 13992, + "encounter_id": null, + "name": "Vaelastrasz the Corrupt", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 13996, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 13991, + "encounter_id": null, + "name": "Blackwing Technician", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14020, + "dungeon_id": 118, + "classification_id": 3, + "npc_type_id": 2, + "npc_class_id": 1, + "display_id": 14367, + "encounter_id": null, + "name": "Chromaggus", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14022, + "dungeon_id": 118, + "classification_id": 1, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 956, + "encounter_id": null, + "name": "Corrupted Red Whelp", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14023, + "dungeon_id": 118, + "classification_id": 1, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 694, + "encounter_id": null, + "name": "Corrupted Green Whelp", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14024, + "dungeon_id": 118, + "classification_id": 1, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 9994, + "encounter_id": null, + "name": "Corrupted Blue Whelp", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14025, + "dungeon_id": 118, + "classification_id": 1, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 14720, + "encounter_id": null, + "name": "Corrupted Bronze Whelp", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14101, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 4, + "npc_class_id": 1, + "display_id": 14152, + "encounter_id": null, + "name": "Enraged Felguard", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14261, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 14886, + "encounter_id": null, + "name": "Blue Drakonid", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14262, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 14888, + "encounter_id": null, + "name": "Green Drakonid", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14263, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 14887, + "encounter_id": null, + "name": "Bronze Drakonid", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14264, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 14889, + "encounter_id": null, + "name": "Red Drakonid", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14265, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 14885, + "encounter_id": null, + "name": "Black Drakonid", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14302, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 14352, + "encounter_id": null, + "name": "Chromatic Drakonid", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14401, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 14498, + "encounter_id": null, + "name": "Master Elemental Shaper Krixix", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14456, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 12024, + "encounter_id": null, + "name": "Blackwing Guardsman", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14601, + "dungeon_id": 118, + "classification_id": 3, + "npc_type_id": 5, + "npc_class_id": 1, + "display_id": 6377, + "encounter_id": null, + "name": "Ebonroc", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 1, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14605, + "dungeon_id": 118, + "classification_id": 2, + "npc_type_id": 10, + "npc_class_id": 1, + "display_id": 12073, + "encounter_id": null, + "name": "Bone Construct", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 14668, + "dungeon_id": 118, + "classification_id": 1, + "npc_type_id": 4, + "npc_class_id": 1, + "display_id": null, + "encounter_id": null, + "name": "Corrupted Infernal", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + } +] \ No newline at end of file diff --git a/database/seeders/dungeondata/mapping_versions.json b/database/seeders/dungeondata/mapping_versions.json index 3d5207b26..f33144102 100644 --- a/database/seeders/dungeondata/mapping_versions.json +++ b/database/seeders/dungeondata/mapping_versions.json @@ -5338,5 +5338,20 @@ "created_at": "2024-10-21T21:29:39.000000Z", "updated_at": "2024-10-21T21:29:39.000000Z", "merged": false + }, + { + "id": 415, + "dungeon_id": 120, + "version": 2, + "enemy_forces_required": 0, + "enemy_forces_required_teeming": null, + "enemy_forces_shrouded": null, + "enemy_forces_shrouded_zul_gamux": null, + "timer_max_seconds": 0, + "mdt_mapping_hash": null, + "facade_enabled": 0, + "created_at": "2024-10-22T14:58:26.000000Z", + "updated_at": "2024-10-22T14:58:26.000000Z", + "merged": false } ] \ No newline at end of file diff --git a/database/seeders/dungeondata/npcs.json b/database/seeders/dungeondata/npcs.json index aee3f0dc7..ca476890f 100644 --- a/database/seeders/dungeondata/npcs.json +++ b/database/seeders/dungeondata/npcs.json @@ -2420,6 +2420,81 @@ } ] }, + { + "id": 116410, + "dungeon_id": -1, + "classification_id": 2, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 76631, + "encounter_id": null, + "name": "Karam Magespear", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 118638, + "dungeon_id": -1, + "classification_id": 1, + "npc_type_id": 1, + "npc_class_id": 1, + "display_id": 75439, + "encounter_id": null, + "name": "Shadowy Vestige", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 121139, + "dungeon_id": -1, + "classification_id": 1, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 38804, + "encounter_id": null, + "name": "Warpweaver Torell", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, { "id": 143405, "dungeon_id": -1, @@ -2570,6 +2645,31 @@ "npc_spells": [], "npc_enemy_forces": [] }, + { + "id": 144307, + "dungeon_id": -1, + "classification_id": 1, + "npc_type_id": 8, + "npc_class_id": 1, + "display_id": 88531, + "encounter_id": null, + "name": "Admirer", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "friendly", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, { "id": 155432, "dungeon_id": -1, @@ -8163,5 +8263,55 @@ "enemy_forces_teeming": null } ] + }, + { + "id": 229706, + "dungeon_id": -1, + "classification_id": 1, + "npc_type_id": 9, + "npc_class_id": 1, + "display_id": 122104, + "encounter_id": null, + "name": "Explosive Bomberbot", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] + }, + { + "id": 229769, + "dungeon_id": -1, + "classification_id": 1, + "npc_type_id": 9, + "npc_class_id": 1, + "display_id": 122019, + "encounter_id": null, + "name": "Medbot", + "base_health": 12345, + "health_percentage": null, + "level": null, + "mdt_scale": null, + "aggressiveness": "aggressive", + "dangerous": 0, + "truesight": 0, + "bursting": 1, + "bolstering": 1, + "sanguine": 1, + "runs_away_in_fear": 0, + "npcbolsteringwhitelists": [], + "npc_characteristics": [], + "npc_spells": [], + "npc_enemy_forces": [] } ] \ No newline at end of file diff --git a/database/seeders/dungeondata/wotlk/icecrowncitadel/npcs.json b/database/seeders/dungeondata/wotlk/icecrowncitadel/npcs.json index 1e7b2205c..d1a430519 100644 --- a/database/seeders/dungeondata/wotlk/icecrowncitadel/npcs.json +++ b/database/seeders/dungeondata/wotlk/icecrowncitadel/npcs.json @@ -5198,30 +5198,5 @@ "npc_characteristics": [], "npc_spells": [], "npc_enemy_forces": [] - }, - { - "id": 121139, - "dungeon_id": 58, - "classification_id": 1, - "npc_type_id": 8, - "npc_class_id": 1, - "display_id": 38804, - "encounter_id": null, - "name": "Warpweaver Torell", - "base_health": 12345, - "health_percentage": null, - "level": null, - "mdt_scale": null, - "aggressiveness": "friendly", - "dangerous": 0, - "truesight": 0, - "bursting": 1, - "bolstering": 1, - "sanguine": 1, - "runs_away_in_fear": 0, - "npcbolsteringwhitelists": [], - "npc_characteristics": [], - "npc_spells": [], - "npc_enemy_forces": [] } ] \ No newline at end of file