From 93eae4cbc255f753447245f99e86ca51cccea5e4 Mon Sep 17 00:00:00 2001
From: Rumen Nikiforov <unafraid89@gmail.com>
Date: Sat, 7 Dec 2013 22:05:12 +0000
Subject: [PATCH] BETA: Implementing Altars of Sacrifice. 	* Patch by:
 FBIagent 	* Thanks to: janiko, FinalDestination, lion

	* Note: This is High Five feature.
---
 .../dist/game/data/html/default/4327.htm      |   3 +
 .../dist/game/data/html/default/4328.htm      |   3 +
 L2J_DataPack_BETA/dist/game/data/scripts.cfg  |   1 +
 .../ai/group_template/AltarsOfSacrifice.java  | 311 +++++++
 L2J_DataPack_BETA/dist/sql/game/droplist.sql  | 337 ++++++++
 L2J_DataPack_BETA/dist/sql/game/minions.sql   |  67 ++
 L2J_DataPack_BETA/dist/sql/game/npc.sql       | 142 ++--
 .../dist/sql/game/npc_elementals.sql          | 134 +--
 L2J_DataPack_BETA/dist/sql/game/npcaidata.sql | 134 +--
 L2J_DataPack_BETA/dist/sql/game/npcskills.sql | 785 ++++++++++++++++--
 L2J_DataPack_BETA/dist/sql/game/spawnlist.sql |  77 +-
 11 files changed, 1720 insertions(+), 274 deletions(-)
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/default/4327.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/default/4328.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/group_template/AltarsOfSacrifice.java

diff --git a/L2J_DataPack_BETA/dist/game/data/html/default/4327.htm b/L2J_DataPack_BETA/dist/game/data/html/default/4327.htm
new file mode 100644
index 0000000000..cd6d4419a7
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/default/4327.htm
@@ -0,0 +1,3 @@
+<html><body>Supplicant:<br>
+(The dead Worshipper has a smile on their face. They must have died while laughing.)
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/default/4328.htm b/L2J_DataPack_BETA/dist/game/data/html/default/4328.htm
new file mode 100644
index 0000000000..f6c528eb26
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/default/4328.htm
@@ -0,0 +1,3 @@
+<html><body>Altar Guard:<br>
+No... It's all wrong... Escape while you can...
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts.cfg b/L2J_DataPack_BETA/dist/game/data/scripts.cfg
index 7f788a2ea1..67c734015b 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts.cfg
+++ b/L2J_DataPack_BETA/dist/game/data/scripts.cfg
@@ -82,6 +82,7 @@ ai/fantasy_isle/HandysBlockCheckerEvent.java
 
 # Group Template
 ai/group_template/L2AttackableAIScript.java
+ai/group_template/AltarsOfSacrifice.java
 ai/group_template/BeastFarm.java
 ai/group_template/Chests.java
 ai/group_template/Chimeras.java
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/group_template/AltarsOfSacrifice.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/group_template/AltarsOfSacrifice.java
new file mode 100644
index 0000000000..ac11085bc5
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/group_template/AltarsOfSacrifice.java
@@ -0,0 +1,311 @@
+/*
+ * Copyright (C) 2004-2013 L2J DataPack
+ * 
+ * This file is part of L2J DataPack.
+ * 
+ * L2J DataPack is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * L2J DataPack is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.group_template;
+
+import java.util.logging.Level;
+
+import com.l2jserver.gameserver.GeoData;
+import com.l2jserver.gameserver.datatables.NpcTable;
+import com.l2jserver.gameserver.model.L2Spawn;
+import com.l2jserver.gameserver.model.Location;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.model.interfaces.ILocational;
+import com.l2jserver.gameserver.scripting.scriptengine.impl.L2Script;
+import com.l2jserver.util.Rnd;
+
+/**
+ * @author FBIagent, janiko, FinalDestination, lion
+ */
+public final class AltarsOfSacrifice extends L2Script
+{
+	private final class Altar
+	{
+		private final ILocational _middlePoint;
+		private final int[] _bossNpcIds;
+		private L2Npc _spawnedBoss;
+		
+		protected Altar(final ILocational middlePoint, final int... bossNpcIds)
+		{
+			_middlePoint = middlePoint;
+			_bossNpcIds = bossNpcIds;
+			_spawnedBoss = null;
+		}
+		
+		protected void spawnBoss() throws Exception
+		{
+			if (!hasBosses() || (_spawnedBoss != null))
+			{
+				throw new IllegalStateException();
+			}
+			
+			final L2Spawn spawn = new L2Spawn(NpcTable.getInstance().getTemplate(_bossNpcIds[Rnd.get(_bossNpcIds.length)]));
+			spawn.setAmount(1);
+			spawn.setHeading(Rnd.get(65536));
+			
+			int radius = Rnd.get(BOSS_MIN_SPAWN_RADIUS, BOSS_MAX_SPAWN_RADIUS);
+			double angleRadians = Rnd.get() * 2 * Math.PI;
+			int spawnX = (int) (radius * Math.cos(angleRadians)) + _middlePoint.getX();
+			int spawnY = (int) (radius * Math.sin(angleRadians)) + _middlePoint.getY();
+			
+			spawn.setXYZ(spawnX, spawnY, GeoData.getInstance().getHeight(spawnX, spawnY, _middlePoint.getZ()));
+			spawn.stopRespawn();
+			_spawnedBoss = spawn.spawnOne(false);
+		}
+		
+		protected void despawnBoss()
+		{
+			if (_spawnedBoss != null)
+			{
+				_spawnedBoss.deleteMe();
+				_spawnedBoss = null;
+			}
+		}
+		
+		protected void unload()
+		{
+			despawnBoss();
+		}
+		
+		protected boolean hasBosses()
+		{
+			return _bossNpcIds.length > 0;
+		}
+		
+		protected boolean isBossFighting()
+		{
+			return (_spawnedBoss != null) && _spawnedBoss.isInCombat();
+		}
+	}
+	
+	private static final String EVT_SPAWN_BOSS_PRE = "spawnboss";
+	private static final String EVT_DESPAWN_BOSS_PRE = "despawnboss";
+	private static final int BOSS_MIN_SPAWN_RADIUS = 250;
+	private static final int BOSS_MAX_SPAWN_RADIUS = 500;
+	// every 240 minutes/4 hours, altars change
+	private static final long ALTAR_STATE_CHANGE_DELAY = 240 * 60 * 1000;
+	
+	// disabling formatter here to make this easily readable
+	// @formatter:off
+	private final Altar[] _altars = new Altar[]
+	{
+		// TalkingIsland
+		new Altar
+		(
+			new Location(-92481, 244812, -3505)
+		),
+		// Elven
+		new Altar
+		(
+			new Location(40241, 53974, -3262)
+		),
+		// DarkElven
+		new Altar
+		(
+			new Location(1851, 21697, -3305),
+			25750
+		),
+		// Dwarven
+		new Altar
+		(
+			new Location(130133, -180968, -3271),
+			25800, 25782
+		),
+		// Orc
+		new Altar
+		(
+			new Location(-45329, -118327, -166),
+			25779
+		),
+		// Kamael
+		new Altar
+		(
+			new Location(-104031, 45059, -1417)
+		),
+		// Oren
+		new Altar
+		(
+			new Location(80188, 47037, -3109),
+			25767, 25770
+		),
+		// Gludin
+		new Altar
+		(
+			new Location(-86620, 151536, -3018),
+			25735, 25738, 25741
+		),
+		// Gludio
+		new Altar
+		(
+			new Location(-14152, 120674, -2935),
+			25744, 25747
+		),
+		// Dion
+		new Altar
+		(
+			new Location(16715, 148320, -3210),
+			25753, 25754, 25757
+		),
+		// Heine
+		new Altar
+		(
+			new Location(120123, 219164, -3319),
+			25773, 25776
+		),
+		// Giran
+		new Altar
+		(
+			new Location(80712, 142538, -3487),
+			25760, 25763, 25766
+		),
+		// Aden
+		new Altar
+		(
+			new Location(152720, 24714, -2083),
+			25793, 25794, 25797
+		),
+		// Rune
+		new Altar
+		(
+			new Location(28010, -49175, -1278)
+		),
+		// Goddard
+		new Altar
+		(
+			new Location(152274, -57706, -3383),
+			25787, 25790
+		),
+		// Schutgart
+		new Altar
+		(
+			new Location(82066, -139418, -2220),
+			25784
+		),
+		// Primeval
+		new Altar
+		(
+			new Location(10998, -24068, -3603)
+		),
+		// Dragon Valley
+		new Altar
+		(
+			new Location(69592, 118694, -3417)
+		)
+	};
+	// @formatter:on
+	
+	public static void main(String[] args)
+	{
+		new AltarsOfSacrifice();
+	}
+	
+	private AltarsOfSacrifice()
+	{
+		super("AltarsOfSacrifice", "ai/group_template");
+		
+		for (int i = 0; i < _altars.length; ++i)
+		{
+			if (_altars[i].hasBosses())
+			{
+				startQuestTimer(makeSpawnBossEvt(i), ALTAR_STATE_CHANGE_DELAY, null, null);
+			}
+		}
+	}
+	
+	private String makeSpawnBossEvt(int altarIndex)
+	{
+		return EVT_SPAWN_BOSS_PRE + altarIndex;
+	}
+	
+	private String makeDespawnBossEvt(int altarIndex)
+	{
+		return EVT_DESPAWN_BOSS_PRE + altarIndex;
+	}
+	
+	private boolean isSpawnBossEvt(String event)
+	{
+		return event.startsWith(EVT_SPAWN_BOSS_PRE);
+	}
+	
+	private boolean isDespawnBossEvt(String event)
+	{
+		return event.startsWith(EVT_DESPAWN_BOSS_PRE);
+	}
+	
+	private int getSpawnBossIndex(String event)
+	{
+		return Integer.parseInt(event.substring(EVT_SPAWN_BOSS_PRE.length()));
+	}
+	
+	private int getDespawnBossIndex(String event)
+	{
+		return Integer.parseInt(event.substring(EVT_DESPAWN_BOSS_PRE.length()));
+	}
+	
+	@Override
+	public boolean unload(boolean removeFromList)
+	{
+		_log.info(getClass().getSimpleName() + ": Unloading altars due to script unloading.");
+		
+		for (final Altar altar : _altars)
+		{
+			altar.unload();
+		}
+		
+		return super.unload(removeFromList);
+	}
+	
+	@Override
+	public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
+	{
+		if (isSpawnBossEvt(event))
+		{
+			final int altarIndex = getSpawnBossIndex(event);
+			final Altar altar = _altars[altarIndex];
+			try
+			{
+				altar.spawnBoss();
+				startQuestTimer(makeDespawnBossEvt(altarIndex), ALTAR_STATE_CHANGE_DELAY, null, null);
+			}
+			catch (Exception e)
+			{
+				_log.log(Level.WARNING, getClass().getSimpleName() + ": Failed to spawn altar boss.", e);
+				// let's try again to spawn it in 5 seconds
+				startQuestTimer(event, 5000, null, null);
+			}
+		}
+		else if (isDespawnBossEvt(event))
+		{
+			final int altarIndex = getDespawnBossIndex(event);
+			final Altar altar = _altars[altarIndex];
+			if (altar.isBossFighting())
+			{
+				// periodically check if the altar boss is fighting, only despawn when not fighting anymore
+				startQuestTimer(event, 5000, null, null);
+			}
+			else
+			{
+				altar.despawnBoss();
+				startQuestTimer(makeSpawnBossEvt(altarIndex), ALTAR_STATE_CHANGE_DELAY, null, null);
+			}
+		}
+		
+		return null;
+	}
+}
diff --git a/L2J_DataPack_BETA/dist/sql/game/droplist.sql b/L2J_DataPack_BETA/dist/sql/game/droplist.sql
index b85fbb768f..8f504bed3e 100644
--- a/L2J_DataPack_BETA/dist/sql/game/droplist.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/droplist.sql
@@ -45225,6 +45225,343 @@ INSERT INTO `droplist` VALUES
 (25725, 17266, 1, 1, 2, 2000), -- Will of Antharas
 -- Behemoth Leader
 (25726, 17266, 1, 1, 2, 2000), -- Will of Antharas
+-- Greyclaw Kutus
+(25735, 69, 1, 1, 1, 67691.868545), -- Bastard Sword
+(25735, 125, 1, 1, 1, 67691.868545), -- Spinebone Sword
+(25735, 126, 1, 1, 1, 67691.868545), -- Artisan's Sword
+(25735, 128, 1, 1, 1, 67691.868545), -- Knight's Sword
+(25735, 348, 1, 1, 0, 272693.767227), -- Scale Mail
+(25735, 377, 4, 12, 0, 54506.950827), -- Scale Gaiters
+(25735, 1935, 53, 157, 0, 74357.519607), -- Scale Mail Fragment
+(25735, 1937, 24, 72, 0, 250134.762339), -- Scale Gaiters Fragment
+(25735, 2021, 3, 9, 1, 352919.52582), -- Spinebone Sword Blade
+(25735, 22229, 1, 1, 2, 40258.77498), -- Scroll: Enchant Weapon of Destruction (D-Grade)
+(25735, 22230, 1, 1, 2, 362331.59166), -- Scroll: Enchant Armor of Destruction (D-Grade)
+-- Lead Tracker Sharuk
+(25738, 86, 1, 1, 1, 33845.948), -- Tomahawk
+(25738, 179, 1, 1, 1, 33845.948), -- Mace of Prayer
+(25738, 180, 1, 1, 1, 33845.948), -- Mace of Judgment
+(25738, 181, 1, 1, 1, 33845.948), -- Mace of Miracle
+(25738, 182, 1, 1, 1, 33845.948), -- Doom Hammer
+(25738, 183, 1, 1, 1, 33845.948), -- Mystic Staff
+(25738, 184, 1, 1, 1, 33845.948), -- Conjuror's Staff
+(25738, 185, 1, 1, 1, 33845.948), -- Staff of Mana
+(25738, 433, 6, 16, 0, 16521.512524), -- Elven Tunic
+(25738, 434, 1, 1, 0, 181735.934182), -- White Tunic
+(25738, 435, 1, 1, 0, 181735.934182), -- Mystic's Tunic
+(25738, 466, 4, 12, 0, 36394.186114), -- Elven Stockings
+(25738, 467, 5, 13, 0, 32350.70036), -- Dark Stockings
+(25738, 468, 5, 15, 0, 29115.630324), -- Mystic's Stockings
+(25738, 22229, 4, 10, 2, 103522.612018), -- Scroll: Enchant Weapon of Destruction (D-Grade)
+(25738, 22230, 8, 22, 2, 402588.884744), -- Scroll: Enchant Armor of Destruction (D-Grade)
+(25738, 1933, 24, 72, 0, 171268.041186), -- Dark Stockings Fabric
+(25738, 1936, 53, 157, 0, 54460.061128), -- White Tunic Pattern
+(25738, 2022, 4, 12, 1, 163267.484), -- Mace of Judgment Head
+(25738, 2023, 2, 4, 1, 346364.932), -- Conjuror's Staff Head
+(25738, 6387, 24, 72, 2, 150970.503238), -- Blessed Scroll of Resurrection for Pets
+-- Sukar Wererat Chief
+(25741, 222, 1, 1, 1, 318120), -- Poniard Dagger
+(25741, 605, 4, 12, 0, 256556.773338), -- Leather Gauntlets
+(25741, 22229, 4, 10, 2, 97301.474655), -- Scroll: Enchant Weapon of Destruction (D-Grade)
+(25741, 22230, 8, 22, 2, 378395.51574), -- Scroll: Enchant Armor of Destruction (D-Grade)
+(25741, 1123, 8, 22, 0, 136830.226662), -- Blue Buckskin Boots
+(25741, 6387, 24, 72, 2, 141898.009605), -- Blessed Scroll of Resurrection for Pets
+-- Ikuntai
+(25744, 157, 1, 1, 1, 123684.743895), -- Spiked Club
+(25744, 186, 1, 1, 1, 123684.743895), -- Staff of Magic
+(25744, 849, 4, 10, 0, 132966.5024), -- Tiger's Eye Earring
+(25744, 880, 3, 7, 0, 278664.95744), -- Black Pearl Ring
+(25744, 912, 4, 12, 0, 87215.2064), -- Near Forest Necklace
+(25744, 1901, 72, 216, 0, 220513.33376), -- Tiger's Eye Earring Stone
+(25744, 2027, 12, 36, 1, 250975.51221), -- Spiked Club Head
+(25744, 6387, 60, 180, 2, 298017), -- Blessed Scroll of Resurrection for Pets
+-- Zombie Lord Crowl
+(25747, 83, 1, 1, 1, 53335.55656), -- Sword of Magic
+(25747, 124, 1, 1, 1, 39512.47916), -- Two-Handed Sword
+(25747, 127, 1, 1, 1, 39512.47916), -- Crimson Sword
+(25747, 130, 1, 1, 1, 39512.47916), -- Elven Sword
+(25747, 144, 1, 1, 1, 53335.55656), -- Sword of Occult
+(25747, 436, 2, 4, 0, 167391.631989), -- Tunic of Knowledge
+(25747, 469, 1, 3, 0, 401327.368011), -- Stockings of Knowledge
+(25747, 2026, 3, 9, 1, 294651.4494), -- Two-Handed Sword Edge
+(25747, 22230, 1, 3, 2, 571224), -- Scroll: Enchant Armor of Destruction (D-Grade)
+-- Zombie Lord Ferkel
+(25750, 156, 1, 1, 1, 171845.494821), -- Hand Axe
+(25750, 167, 1, 1, 1, 171845.494821), -- Scalpel
+(25750, 178, 1, 1, 1, 171846.010358), -- Bone Staff
+(25750, 347, 2, 4, 0, 281012.070567), -- Ring Mail Breastplate
+(25750, 376, 4, 12, 0, 168738.929433), -- Iron Plate Gaiters
+(25750, 955, 1, 3, 2, 350848.26512), -- Scroll: Enchant Weapon (D-Grade)
+(25750, 22229, 1, 1, 2, 38983.46976), -- Scroll: Enchant Weapon of Destruction (D-Grade)
+(25750, 22230, 1, 1, 2, 350848.26512), -- Scroll: Enchant Armor of Destruction (D-Grade)
+-- Guillotine Warden
+(25753, 159, 1, 1, 1, 17438.52864), -- Bonebreaker
+(25753, 187, 1, 1, 1, 17438.52864), -- Atuba Hammer
+(25753, 188, 1, 1, 1, 17438.52864), -- Ghost Staff
+(25753, 189, 1, 1, 1, 17438.52864), -- Staff of Life
+(25753, 190, 1, 1, 1, 17438.52864), -- Atuba Mace
+(25753, 353, 1, 1, 0, 134016.19392), -- Half Plate Armor
+(25753, 380, 1, 1, 0, 214426.15936), -- Plate Gaiters
+(25753, 1950, 53, 157, 0, 62305.00416), -- Half Plate Temper
+(25753, 1951, 24, 72, 0, 211972.64256), -- Plate Gaiters Part
+(25753, 2048, 18, 54, 1, 27776.526336), -- Bonebreaker Head
+(25753, 2049, 3, 7, 1, 199993.275456), -- Atuba Hammer Head
+(25753, 2050, 7, 21, 1, 75734.585472), -- Ghost Staff Head
+(25753, 2051, 12, 36, 1, 44178.608448), -- Staff of Life Shaft
+(25753, 2058, 3, 9, 1, 166660.361088), -- Atuba Mace Head
+(25753, 4591, 1, 3, 2, 326602.419916), -- Greater Dye of CON (Con+2 Str-2)
+(25753, 4592, 2, 4, 2, 217735.186845), -- Greater Dye of CON (Con+2 Dex-2)
+(25753, 4593, 2, 6, 2, 163301.209958), -- Greater Dye of DEX (Dex+2 Str-2)
+(25753, 22227, 1, 1, 2, 13064.183281), -- Scroll: Enchant Weapon of Destruction (C-Grade)
+-- Fire Lord Shadar
+(25754, 262, 1, 1, 1, 87192.585431), -- Scallop Jamadhr
+(25754, 438, 1, 1, 0, 219923.93547), -- Sage's Rag
+(25754, 1953, 12, 36, 0, 538011.06453), -- Sage's Rag Lining
+(25754, 2053, 12, 36, 1, 208326.414569), -- Scallop Jamadhr Edge
+(25754, 4594, 1, 3, 2, 326602.621394), -- Greater Dye of DEX (Dex+2 Con-2)
+(25754, 4595, 2, 4, 2, 217735.354135), -- Greater Dye of INT (Int+2 Men-2)
+(25754, 4596, 2, 6, 2, 163301.310697), -- Greater Dye of INT (Int+2 Wit-2)
+(25754, 22228, 1, 1, 2, 111977.713774), -- Scroll: Enchant Armor of Destruction (C-Grade)
+-- Soul Collector Acheron
+(25757, 61, 9, 25, 0, 10511.075844), -- Mithril Plate Gloves
+(25757, 225, 1, 1, 1, 87192.549621), -- Mithril Dagger
+(25757, 607, 9, 27, 0, 9927.127186), -- Ogre Power Gauntlets
+(25757, 22228, 15, 45, 2, 174187.78254), -- Scroll: Enchant Armor of Destruction (C-Grade)
+(25757, 1125, 10, 28, 0, 9405.017595), -- Assault Boots
+(25757, 1949, 112, 336, 0, 33476.852891), -- Mithril Gloves Design
+(25757, 1957, 320, 960, 0, 11716.546264), -- Assault Boots Part
+(25757, 1963, 203, 607, 0, 18515.712542), -- Ogre Power Gauntlets Part
+(25757, 2052, 12, 36, 1, 218498.450379), -- Mithril Dagger Blade
+(25757, 2427, 10, 30, 0, 8934.571022), -- Salamander Skin Boots
+(25757, 2428, 1, 1, 0, 178694.551532), -- Plate Boots
+(25757, 2451, 1, 1, 0, 178694.551532), -- Sage's Worn Gloves
+(25757, 2931, 28, 82, 0, 136341.835594), -- Salamander Skin Boot Lining
+(25757, 2932, 36, 108, 0, 104149.513196), -- Plate Boots Design
+(25757, 2933, 46, 136, 0, 82405.644802), -- Sage's Worn Gloves Lining
+(25757, 4600, 2, 6, 2, 326602.21746), -- Greater Dye of WIT (Wit+2 Men-2)
+-- Lord Ishka
+(25760, 97, 1, 1, 1, 23188.83161), -- Lance
+(25760, 22225, 1, 1, 2, 151671.79523), -- Scroll: Enchant Weapon of Destruction (B-Grade)
+(25760, 2398, 1, 1, 0, 21002.349345), -- Blue Wolf Tunic
+(25760, 2399, 1, 1, 0, 21002.349345), -- Tunic of Doom
+(25760, 2403, 1, 1, 0, 33613.267965), -- Blue Wolf Stockings
+(25760, 2404, 1, 1, 0, 33613.267965), -- Stockings of Doom
+(25760, 4084, 16, 48, 0, 105909.091515), -- Blue Wolf Tunic Fabric
+(25760, 4085, 23, 67, 0, 75313.022445), -- Tunic of Doom Pattern
+(25760, 4086, 60, 180, 0, 38133.874605), -- Blue Wolf Stockings Pattern
+(25760, 4087, 11, 31, 0, 217907.776815), -- Stockings of Doom Pattern
+(25760, 4115, 12, 36, 1, 212676.16839), -- Lance Blade
+(25760, 4613, 1, 3, 2, 261503.392436), -- Greater Dye of STR (Str+4 Con-4)
+(25760, 4614, 2, 4, 2, 174335.116116), -- Greater Dye of STR (Str+4 Dex-4)
+(25760, 4615, 2, 6, 2, 130751.696218), -- Greater Dye of CON (Con+4 Str-4)
+(25760, 8176, 1, 2, 2, 730000), -- Destruction Tombstone
+(25760, 9814, 1, 4, 2, 850000), -- Memento Mori
+-- Demon Kuri
+(25763, 80, 1, 1, 1, 9964.51008), -- Tallum Blade
+(25763, 150, 1, 1, 1, 9964.51008), -- Elemental Sword
+(25763, 22223, 1, 1, 2, 101168.5), -- Scroll: Enchant Weapon of Destruction (A-Grade)
+(25763, 5290, 1, 1, 0, 52614.08262), -- Sealed Dark Crystal Gloves
+(25763, 5291, 1, 1, 0, 52614.08262), -- Sealed Dark Crystal Boots
+(25763, 5295, 1, 1, 0, 52614.08262), -- Sealed Tallum Gloves
+(25763, 5296, 1, 1, 0, 52614.08262), -- Sealed Tallum Boots
+(25763, 5496, 116, 346, 0, 23764.658181), -- Sealed Dark Crystal Boots Lining
+(25763, 5497, 23, 67, 0, 121993.670769), -- Sealed Tallum Boots Lining
+(25763, 5508, 60, 180, 0, 45746.837958), -- Sealed Dark Crystal Gloves Design
+(25763, 5509, 16, 48, 0, 171551.502612), -- Sealed Tallum Gloves Design
+(25763, 5547, 8, 22, 1, 159315.06108), -- Elemental Sword Edge
+(25763, 5548, 4, 12, 1, 298715.91876), -- Tallum Blade Edge
+(25763, 22224, 1, 1, 2, 101168.5), -- Scroll: Enchant Armor of Destruction (A-Grade)
+(25763, 8176, 1, 2, 2, 700000), -- Destruction Tombstone
+(25763, 9814, 1, 4, 2, 830000), -- Memento Mori
+-- Ancient Drake
+(25766, 212, 1, 1, 1, 9869.14242), -- Dasparion's Staff
+(25766, 729, 1, 1, 2, 66800.186371), -- Scroll: Enchant Weapon (A-Grade)
+(25766, 730, 1, 1, 2, 501002.83733), -- Scroll: Enchant Armor (A-Grade)
+(25766, 2504, 1, 1, 1, 9869.14242), -- Meteor Shower
+(25766, 5289, 1, 1, 0, 46285.81449), -- Sealed Dark Crystal Helmet
+(25766, 5292, 1, 1, 0, 66137.0802), -- Sealed Dark Crystal Shield
+(25766, 5294, 1, 1, 0, 46285.81449), -- Sealed Tallum Helmet
+(25766, 5494, 40, 120, 0, 81169.70994), -- Sealed Dark Crystal Shield Fragment
+(25766, 5525, 9, 27, 0, 265532.06085), -- Sealed Dark Crystal Helmet Design
+(25766, 5526, 14, 42, 0, 170699.52003), -- Sealed Tallum Helm Design
+(25766, 5532, 8, 22, 1, 156394.95858), -- Meteor Shower Head
+(25766, 5543, 4, 12, 1, 296006.75658), -- Dasparion's Staff Head
+(25766, 22223, 1, 1, 2, 8015.976299), -- Scroll: Enchant Weapon of Destruction (A-Grade)
+(25766, 22224, 1, 1, 2, 72135.976299), -- Scroll: Enchant Armor of Destruction (A-Grade)
+(25766, 8176, 1, 2, 2, 720000), -- Destruction Tombstone
+(25766, 9815, 1, 4, 2, 850000), -- Dragon Heart
+-- Carnage Lord Gato
+(25767, 91, 1, 1, 1, 13813.737044), -- Heavy War Axe
+(25767, 92, 1, 1, 1, 13813.737044), -- Sprite's Staff
+(25767, 2397, 1, 1, 0, 34264.448611), -- Tunic of Zubei
+(25767, 2402, 1, 1, 0, 54809.727337), -- Stockings of Zubei
+(25767, 2406, 1, 1, 0, 21076.070966), -- Avadon Robe
+(25767, 4069, 9, 27, 0, 268603.794014), -- Tunic of Zubei Fabric
+(25767, 4070, 40, 120, 0, 91762.518009), -- Stockings of Zubei Fabric
+(25767, 4071, 14, 42, 0, 132656.441063), -- Avadon Robe Fabric
+(25767, 4105, 4, 12, 1, 330057.703012), -- Heavy War Axe Head
+(25767, 4106, 8, 22, 1, 173142.8229), -- Sprite's Staff Head
+(25767, 4610, 1, 3, 2, 332293.680726), -- Greater Dye of MEN (Men+3 Wit-3)
+(25767, 4611, 2, 4, 2, 221529.120484), -- Greater Dye of WIT (Wit+3 Int-3)
+(25767, 4612, 2, 6, 2, 166146.840363), -- Greater Dye of WIT (Wit+3 Men-3)
+(25767, 22228, 1, 1, 2, 170893.358427), -- Scroll: Enchant Armor of Destruction (C-Grade)
+(25767, 8176, 1, 1, 2, 850000), -- Destruction Tombstone
+(25767, 9814, 1, 3, 2, 850000), -- Memento Mori
+-- Ketra Commander Atis
+(25770, 119, 1, 1, 0, 96888.312381), -- Necklace of Seal
+(25770, 286, 1, 1, 1, 40181.852172), -- Eminence Bow
+(25770, 855, 1, 1, 0, 129184.198869), -- Nassen's Earring
+(25770, 886, 1, 1, 0, 193776.624762), -- Ring of Seal
+(25770, 1918, 81, 243, 0, 56259.246222), -- Nassen's Earring Gemstone
+(25770, 1920, 140, 420, 0, 25717.094796), -- Necklace of Seal Chain
+(25770, 2121, 3, 9, 1, 725814.147828), -- Eminence Bow Shaft
+(25770, 2917, 40, 120, 0, 151091.52297), -- Ring of Seal Gemstone
+(25770, 4607, 1, 3, 2, 340992.819254), -- Greater Dye of INT (Int+3 Men-3)
+(25770, 4608, 2, 4, 2, 227328.293077), -- Greater Dye of INT (Int+3 Wit-3)
+(25770, 4609, 2, 6, 2, 170496.409627), -- Greater Dye of MEN (Men+3 Int-3)
+(25770, 22227, 1, 1, 2, 20459.478042), -- Scroll: Enchant Weapon of Destruction (C-Grade)
+(25770, 8176, 1, 1, 2, 870000), -- Destruction Tombstone
+(25770, 9814, 1, 3, 2, 870000), -- Memento Mori
+-- Beacon of Blue Sky
+(25773, 64, 1, 1, 0, 286396.192443), -- Composite Boots
+(25773, 231, 1, 1, 1, 24546.01275), -- Grace Dagger
+(25773, 233, 1, 1, 1, 24546.01275), -- Dark Screamer
+(25773, 608, 1, 1, 0, 286396.192443), -- Mithril Gauntlets
+(25773, 22228, 3, 9, 2, 584107.704999), -- Scroll: Enchant Armor of Destruction (C-Grade)
+(25773, 1981, 53, 157, 0, 151461.578904), -- Mithril Gauntlets Design
+(25773, 2106, 4, 12, 1, 276249.704325), -- Grace Dagger Edge
+(25773, 2107, 8, 22, 1, 147333.270175), -- Dark Screamer Edge
+(25773, 2956, 192, 576, 0, 41415.03621), -- Composite Boots Part
+(25773, 4604, 2, 6, 2, 146026.690173), -- Greater Dye of CON (Con+3 Dex-3)
+(25773, 4605, 3, 7, 2, 116821.163277), -- Greater Dye of DEX (Dex+3 Str-3)
+(25773, 4606, 3, 9, 2, 97351.441551), -- Greater Dye of DEX (Dex+3 Con-3)
+(25773, 8176, 1, 1, 2, 750000), -- Destruction Tombstone
+(25773, 9816, 1, 3, 2, 750000), -- Earth Egg
+-- Earth Protector Panathen
+(25776, 325, 1, 1, 1, 67880.705832), -- Horn of Glory
+(25776, 440, 1, 1, 0, 165585.995067), -- Robe of Seal
+(25776, 1970, 12, 36, 0, 465225.004933), -- Robe of Seal Fabric
+(25776, 2088, 12, 36, 1, 220235.294168), -- Horn of Glory Fragment
+(25776, 22228, 1, 1, 2, 555541), -- Scroll: Enchant Armor of Destruction (C-Grade)
+(25776, 8176, 1, 1, 2, 700000), -- Destruction Tombstone
+(25776, 9816, 1, 2, 2, 890000), -- Earth Egg
+-- Betrayer of Urutu Freki
+(25779, 47, 2, 4, 0, 334212.335784), -- Helmet
+(25779, 278, 1, 1, 1, 118536.37999), -- Gastraphetes
+(25779, 628, 4, 12, 0, 179129.664216), -- Hoplon
+(25779, 22230, 12, 36, 2, 793367), -- Scroll: Enchant Armor of Destruction (D-Grade)
+(25779, 2029, 12, 36, 1, 219010.62001), -- Gastraphetes Shaft
+-- Nellis' Vengeful Spirit
+(25782, 62, 11, 33, 0, 4688.80347), -- Reinforced Mithril Boots
+(25782, 96, 1, 1, 1, 25567.548545), -- Scythe
+(25782, 298, 1, 1, 1, 25567.548545), -- Orcish Glaive
+(25782, 302, 1, 1, 1, 25567.548545), -- Body Slasher
+(25782, 951, 1, 1, 2, 531163.081987), -- Scroll: Enchant Weapon (C-Grade)
+(25782, 952, 12, 36, 2, 162299.850411), -- Scroll: Enchant Armor (C-Grade)
+(25782, 1958, 220, 660, 0, 10231.24544), -- Reinforced Mithril Boots Design
+(25782, 2062, 5, 15, 1, 176758.02781), -- Scythe Edge
+(25782, 2075, 9, 27, 1, 98199.25703), -- Orcish Glaive Blade
+(25782, 2076, 2, 6, 1, 441895.069525), -- Body Slasher Blade
+(25782, 2429, 12, 34, 0, 4484.706265), -- Chain Boots
+(25782, 2430, 12, 36, 0, 4297.68183), -- Karmian Boots
+(25782, 2431, 13, 37, 0, 4126.178095), -- Plated Leather Boots
+(25782, 2432, 13, 39, 0, 3967.09092), -- Dwarven Chain Boots
+(25782, 2433, 1, 1, 0, 103152.900305), -- Boots of Seal
+(25782, 2452, 1, 1, 0, 103152.900305), -- Reinforced Mithril Gloves
+(25782, 2453, 1, 1, 0, 103152.900305), -- Chain Gloves
+(25782, 2454, 1, 1, 0, 103152.900305), -- Karmian Gloves
+(25782, 2937, 378, 1134, 0, 5954.516555), -- Chain Boots Part
+(25782, 2938, 26, 78, 0, 86569.80839), -- Karmian Boots Fabric
+(25782, 2939, 35, 105, 0, 64309.244415), -- Plate Leather Boots Lining
+(25782, 2940, 45, 135, 0, 50018.55989), -- Dwarven Chain Boots Part
+(25782, 2941, 56, 168, 0, 40193.180755), -- Boots of Seal Pattern
+(25782, 2942, 68, 204, 0, 33100.220855), -- Reinforced Mithril Gloves Design
+(25782, 2943, 81, 243, 0, 27788.26128), -- Chain Gloves Design
+(25782, 2944, 95, 285, 0, 23693.90062), -- Karmian Gloves Fabric
+(25782, 22227, 1, 1, 2, 19476.067602), -- Scroll: Enchant Weapon of Destruction (C-Grade)
+-- Rayito the Looter
+(25784, 281, 1, 1, 1, 70503.761262), -- Crystallized Ice Bow
+(25784, 397, 1, 1, 0, 142372.411401), -- Mithril Shirt
+(25784, 1961, 53, 157, 0, 63131.7709), -- Mithril Shirt Fabric
+(25784, 2074, 12, 36, 1, 183398.238738), -- Crystallized Ice Bow Shaft
+(25784, 2387, 1, 1, 0, 227514.183226), -- Reinforced Mithril Gaiters
+(25784, 2935, 24, 72, 0, 229434.634473), -- Reinforced Mithril Gaiters Fragment
+(25784, 22228, 1, 1, 2, 460338), -- Scroll: Enchant Armor of Destruction (C-Grade)
+-- Ketra's Hero Hekaton
+(25787, 3936, 1, 1, 2, 509091.236248), -- Blessed Scroll of Resurrection
+(25787, 6367, 1, 1, 1, 7347.704126), -- Angel Slayer
+(25787, 22222, 1, 1, 2, 45252.763752), -- Scroll: Enchant Armor of Destruction (S-Grade)
+(25787, 6680, 1, 1, 0, 13446.4759), -- Sealed Draconic Leather Armor
+(25787, 6691, 3, 9, 1, 565930.295874), -- Angel Slayer Blade
+(25787, 6707, 12, 36, 0, 216211.5241), -- Sealed Draconic Leather Armor Part
+-- Varka's Hero Shadith
+(25790, 959, 1, 1, 2, 27151.629088), -- Scroll: Enchant Weapon (S-Grade)
+(25790, 960, 1, 1, 2, 271516.897268), -- Scroll: Enchant Armor (S-Grade)
+(25790, 6367, 1, 1, 1, 7347.704126), -- Angel Slayer
+(25790, 22221, 1, 1, 2, 4525.473644), -- Scroll: Enchant Weapon of Destruction (S-Grade)
+(25790, 6674, 1, 1, 0, 8194.02108), -- Sealed Imperial Crusader Breastplate
+(25790, 6675, 1, 1, 0, 13111.089512), -- Sealed Imperial Crusader Gaiters
+(25790, 6691, 3, 9, 1, 565930.295874), -- Angel Slayer Blade
+(25790, 6701, 8, 22, 0, 185866.891768), -- Sealed Imperial Crusader Breastplate Part
+(25790, 6702, 4, 12, 0, 448611.99764), -- Sealed Imperial Crusader Gaiters Pattern
+-- Doom Blade Tanatos
+(25793, 236, 1, 1, 1, 21512.677472), -- Soul Separator
+(25793, 730, 1, 3, 2, 602496.381482), -- Scroll: Enchant Armor (A-Grade)
+(25793, 5312, 1, 1, 0, 48796.385672), -- Sealed Helm of Nightmare
+(25793, 5315, 1, 1, 0, 69728.564108), -- Sealed Shield of Nightmare
+(25793, 5317, 1, 1, 0, 48796.385672), -- Sealed Majestic Circlet
+(25793, 5495, 40, 120, 0, 94102.800668), -- Sealed Shield of Nightmare Fragment
+(25793, 5527, 81, 243, 0, 36589.38878), -- Sealed Helm of Nightmare Design
+(25793, 5528, 14, 42, 0, 211694.4751), -- Sealed Majestic Circlet Design
+(25793, 5537, 12, 36, 1, 255028.322528), -- Soul Separator Head
+(25793, 22222, 1, 1, 2, 64266.618518), -- Scroll: Enchant Armor of Destruction (S-Grade)
+(25793, 8176, 1, 4, 2, 820000), -- Destruction Tombstone
+(25793, 8619, 1, 1, 2, 540000), -- Ancient Book: Divine Inspiration (Original Language Version)
+(25793, 9814, 3, 7, 2, 820000), -- Memento Mori
+-- Kernon
+(25794, 959, 1, 1, 2, 39110.313616), -- Scroll: Enchant Weapon (S-Grade)
+(25794, 960, 1, 1, 2, 391104.009626), -- Scroll: Enchant Armor (S-Grade)
+(25794, 6371, 1, 1, 1, 10583.905527), -- Demon Splinter
+(25794, 22221, 1, 1, 2, 6518.676758), -- Scroll: Enchant Weapon of Destruction (S-Grade)
+(25794, 6676, 1, 1, 0, 15738.553335), -- Sealed Imperial Crusader Gauntlet
+(25794, 6677, 1, 1, 0, 15738.553335), -- Sealed Imperial Crusader Boots
+(25794, 6681, 1, 1, 0, 15738.553335), -- Sealed Draconic Leather Glove
+(25794, 6682, 1, 1, 0, 15738.553335), -- Sealed Draconic Leather Boots
+(25794, 6685, 1, 1, 0, 15738.553335), -- Sealed Major Arcana Glove
+(25794, 6686, 1, 1, 0, 15738.553335), -- Sealed Major Arcana Boots
+(25794, 6695, 12, 36, 1, 199953.094473), -- Demon Splinter Blade
+(25794, 6703, 8, 24, 0, 223738.829795), -- Sealed Imperial Crusader Gauntlets Design
+(25794, 6704, 14, 40, 0, 132585.767464), -- Sealed Imperial Crusader Boots Design
+(25794, 6708, 20, 60, 0, 89495.531918), -- Sealed Draconic Leather Gloves Fabric
+(25794, 6709, 28, 82, 0, 65087.407068), -- Sealed Draconic Leather Boots Design
+(25794, 6712, 36, 108, 0, 49719.662799), -- Sealed Major Arcana Gloves fabric
+(25794, 6713, 46, 136, 0, 39340.480946), -- Sealed Major Arcana Boots Design
+-- Meanas Anor
+(25797, 305, 1, 1, 1, 21287.467624), -- Tallum Glaive
+(25797, 959, 1, 1, 2, 38156.405712), -- Scroll: Enchant Weapon (S-Grade)
+(25797, 960, 1, 1, 2, 381564.909282), -- Scroll: Enchant Armor (S-Grade)
+(25797, 5320, 1, 1, 0, 22289.045658), -- Sealed Leather Armor of Nightmare
+(25797, 5323, 1, 1, 0, 22289.045658), -- Sealed Majestic Leather Armor
+(25797, 5480, 4, 12, 0, 412748.06108), -- Sealed Leather Armor of Nightmare Fabric
+(25797, 5481, 8, 22, 0, 220131.847604), -- Sealed Majestic Leather Armor Fabric
+(25797, 5541, 12, 36, 1, 252256.532376), -- Tallum Glaive Edge
+(25797, 22221, 1, 1, 2, 6359.685006), -- Scroll: Enchant Weapon of Destruction (S-Grade)
+(25797, 8176, 1, 4, 2, 820000), -- Destruction Tombstone
+(25797, 8619, 1, 1, 2, 520000), -- Ancient Book: Divine Inspiration (Original Language Version)
+(25797, 9815, 3, 7, 2, 810000), -- Dragon Heart
+-- Mammon Collector Talos
+(25800, 223, 1, 1, 0, 19756.22141), -- Kukuri
+(25800, 238, 1, 1, 0, 19756.22141), -- Dagger of Mana
+(25800, 239, 1, 1, 0, 19756.22141), -- Mystic Knife
+(25800, 241, 1, 1, 0, 19756.22141), -- Shilen Knife
+(25800, 393, 1, 1, 0, 125543.801799), -- Mithril Banded Mail
+(25800, 394, 1, 1, 0, 125543.801799), -- Reinforced Leather Shirt
+(25800, 415, 1, 1, 0, 200664.255381), -- Mithril Banded Gaiters
+(25800, 416, 1, 1, 0, 200664.255381), -- Reinforced Leather Gaiters
+(25800, 1938, 60, 180, 1, 164578.510346), -- Mithril Banded Mail Material
+(25800, 1939, 28, 84, 1, 460776.635407), -- Mithril Banded Gaiters Material
+(25800, 2028, 27, 81, 1, 64637.854247), -- Shilen Knife Edge
+(25800, 22229, 1, 1, 2, 126939), -- Scroll: Enchant Weapon of Destruction (D-Grade)
 -- Queen Ant
 (29001, 2499, 1, 1, 0, 60000), -- Elven Long Sword
 (29001, 70, 1, 1, 0, 60000), -- Claymore
diff --git a/L2J_DataPack_BETA/dist/sql/game/minions.sql b/L2J_DataPack_BETA/dist/sql/game/minions.sql
index a3bec57ef8..fc2dbe63d2 100644
--- a/L2J_DataPack_BETA/dist/sql/game/minions.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/minions.sql
@@ -600,3 +600,70 @@ INSERT INTO `minions` VALUES
 (22827,22828,1,8),
 -- Hard Noxious Scorpion
 (22861,22826,1,4);
+
+-- Lord of Destruction raid bosses
+INSERT INTO `minions` VALUES
+-- Greyclaw Kutus
+(25735,25736,3,3), -- Kutus' Guard
+(25735,25737,1,1), -- Kutus' Pawn
+-- Lead Tracker Sharuk
+(25738,25739,2,2), -- Sharuk's Minion
+(25738,25740,3,3), -- Sharuk's Marksman
+-- Sukar Wererat Chief
+(25741,25742,2,2), -- Sukar Wererat Guard
+(25741,25743,1,1), -- Sukar Wererat Priest
+-- Ikuntai
+(25744,25745,2,2), -- Ikuntai's Servitor
+(25744,25746,2,2), -- Ikuntai's Pawn
+-- Zombie Lord Crowl
+(25747,25748,3,3), -- Evil Spirit Archer
+(25747,25749,2,2), -- Evil Spirit Warrior
+-- Zombie Lord Ferkel
+(25750,25751,2,2), -- Ferkel's Warrior
+(25750,25752,1,1), -- Ferkel's Priest
+-- Fire Lord Shadar
+(25754,25755,1,1), -- Sword of Shadar
+(25754,25756,4,4), -- Whip of Shadar
+-- Soul Collector Acheron
+(25757,25758,3,3), -- Soul Slasher
+(25757,25759,1,1), -- Soul Strainer
+-- Lord Ishka
+(25760,25761,1,1), -- Ishka's Elite Officer
+(25760,25762,2,2), -- Ishka's Elite Soldier
+-- Demon Kuri
+(25763,25764,2,2), -- Kuri's Wife
+(25763,25765,2,2), -- Devil Blader of Chaos
+-- Carnage Lord Gato
+(25767,25768,3,3), -- Gato's Marksman
+(25767,25769,2,2), -- Gato's Champion
+-- Ketra Commander Atis
+(25770,25771,3,3), -- Ketra Marksman
+(25770,25772,2,2), -- Ketra Raider
+-- Beacon of Blue Sky
+(25773,25774,3,3), -- Beacon's Shooter
+(25773,25775,2,2), -- Beacon's Warrior
+-- Earth Protector Panathen
+(25776,25777,1,1), -- Panathen's Knight
+(25776,25778,4,4), -- Panathen's Protectors
+-- Betrayer of Urutu Freki
+(25779,25780,2,2), -- Freki's Vampire Bat
+(25779,25781,1,1), -- Freki's Wild Bear
+-- Nellis' Vengeful Spirit
+(25782,25783,3,3), -- Nellis' Follower
+-- Rayito the Looter
+(25784,25785,1,1), -- Rayito's Henchman
+(25784,25786,3,3), -- Rayito's Henchman
+-- Ketra's Hero Hekaton
+(25787,25788,3,3), -- Scout of Hekaton
+(25787,25789,2,2), -- Servant of Hekaton
+-- Varka's Hero Shadith
+(25790,25791,1,1), -- Shadith's Royal Guard Captain
+(25790,25792,4,4), -- Shadith's Sentinel
+-- Kernon
+(25794,25795,1,1), -- Taliadon
+(25794,25796,4,4), -- Vemsk
+-- Meanas Anor
+(25797,25798,3,3), -- Wyvern of Marsh
+(25797,25799,1,1), -- Succubus of Marsh
+-- Mammon Collector Talos
+(25800,25801,3,3); -- Talos' Cohort
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/sql/game/npc.sql b/L2J_DataPack_BETA/dist/sql/game/npc.sql
index d90bdc91ec..fdd5cb13c8 100644
--- a/L2J_DataPack_BETA/dist/sql/game/npc.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/npc.sql
@@ -236,11 +236,11 @@ INSERT INTO `npc` VALUES
 (4321, 4321, "Photo Snow", 0, "Photographer", 0, "LineageNPC2.br_tp_actor", 9, 16.3, 55, "female", "L2Teleporter", 40, 1673.05473, 889.8, 6.5, 2.4, 40, 43, 30, 21, 20, 25, 0, 0, 388.11142, 223.6362, 265.02979, 163.64727, 253, 4, 333, 0, 0, 0, 4, 180, 0, 1), -- TODO: Stats require check
 (4322, 4322, "Photo Snow", 0, "Photographer", 0, "LineageNPC2.br_tp_actor", 9, 16.3, 55, "female", "L2Teleporter", 40, 1673.05473, 889.8, 6.5, 2.4, 40, 43, 30, 21, 20, 25, 0, 0, 388.11142, 223.6362, 265.02979, 163.64727, 253, 4, 333, 0, 0, 0, 4, 180, 0, 1), -- TODO: Stats require check
 (4323, 4323, "Photo Snow", 0, "Photographer", 0, "LineageNPC2.br_tp_actor", 9, 16.3, 55, "female", "L2Teleporter", 40, 1673.05473, 889.8, 6.5, 2.4, 40, 43, 30, 21, 20, 25, 0, 0, 388.11142, 223.6362, 265.02979, 163.64727, 253, 4, 333, 0, 0, 0, 4, 180, 0, 1), -- TODO: Stats require check
-(4324, 4324, "Worshipper", 0, "Sinister", 0, "LineageMonster3.solina_father", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(4325, 4325, "Altar Guard", 0, "", 0, "LineageNPC.a_guard_MHuman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
+(4324, 4324, "Worshipper", 0, "Sinister", 0, "LineageMonster3.solina_father", 25, 25, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
+(4325, 4325, "Altar Guard", 0, "", 0, "LineageNPC.a_guard_MHuman", 25, 24, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
 (4326, 4326, "Nevit's Herald", 0, "Invoker", 0, "LineageNPC.a_sanctuary_teacher_FHuman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(4327, 4327, "Worshipper", 0, "Sinister", 0, "LineageNPC2.solina_father_dead", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(4328, 4328, "Altar Guard", 0, "", 0, "LineageNPC2.a_guard_Mhuman_dead", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
+(4327, 4327, "Worshipper", 0, "Sinister", 0, "LineageNPC2.solina_father_dead", 25, 24, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
+(4328, 4328, "Altar Guard", 0, "", 0, "LineageNPC2.a_guard_Mhuman_dead", 25, 23, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
 (4329, 4329, "Miss Queen", 0, "Happy Messenger", 0, "LineageMonster2.queen_of_cat", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
 (12077, 12077, "Wolf", 0, "", 0, "LineageMonster.pet_wolf", 13, 11.5, 15, "male", "L2Pet", 40, 246.95422, 149.2, 2.5, 1.2, 40, 43, 30, 21, 20, 25, 0, 0, 29.61691, 73.55216, 20.22451, 53.82228, 253, 4, 333, 0, 0, 0, 24, 125, 0, 1),
 (12311, 12311, "Hatchling of the Wind", 0, "", 0, "LineageMonster.hatchling", 9, 10, 35, "male", "L2Pet", 40, 772.73802, 402.6, 4.5, 1.8, 40, 43, 30, 21, 20, 25, 0, 0, 129.32896, 136.72948, 88.31491, 100.0527, 253, 4, 333, 0, 0, 0, 80, 140, 0, 1),
@@ -5685,73 +5685,73 @@ INSERT INTO `npc` VALUES
 (25732, 25732, "Dragon Beast", 0, "Raid Boss", 0, "LineageMonster.kaim_vanul_50_bi_a", 50, 84, 40, "male", "L2Monster", 40, 2444, 2444, 0, 0, 40, 43, 30, 21, 20, 20, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 30, 90, 0, 1),
 (25733, 25733, "Gem Dragon", 0, "", 0, "LineageMonster3.antaras_ex_b_tr", 16, 24, 83, "male", "L2Monster", 40, 93670, 1777, 0, 0, 40, 43, 30, 21, 20, 20, 285853, 29384, 12502, 548, 8624, 728, 278, 1, 333, 0, 0, 0, 60, 200, 0, 1),
 (25734, 25734, "Parasitic Leech", 0, "", 0, "LineageMonster.giant_leech_60p", 30, 16, 83, "male", "L2Monster", 40, 93670, 1777, 0, 0, 40, 43, 30, 21, 20, 20, 287945, 29610, 12052, 548, 8624, 728, 278, 1, 333, 0, 0, 0, 110, 180, 0, 1),
-(25735, 25735, "Greyclaw Kutus", 0, "Lord of Destruction", 0, "LineageMonster.ol_mahum_champion_50_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25736, 25736, "Kutus' Guard", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25737, 25737, "Kutus' Pawn", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25738, 25738, "Lead Tracker Sharuk", 0, "Lord of Destruction", 0, "LineageMonster.virud_lizardman_warrior", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25739, 25739, "Sharuk's Minion", 0, "Follower of Destruction", 0, "LineageMonster.virud_lizardman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25740, 25740, "Sharuk's Marksman", 0, "Follower of Destruction", 0, "LineageMonster.virud_lizardman_scout", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25741, 25741, "Sukar Wererat Chief", 0, "Lord of Destruction", 0, "LineageMonster.wererat", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25742, 25742, "Sukar Wererat Guard", 0, "Follower of Destruction", 0, "LineageMonster.wererat_sm", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25743, 25743, "Sukar Wererat Priest", 0, "Follower of Destruction", 0, "LineageMonster.wererat_sm", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25744, 25744, "Ikuntai", 0, "Lord of Destruction", 0, "LineageMonster.skeleton_knight_50_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25745, 25745, "Ikuntai's Servitor", 0, "Follower of Destruction", 0, "LineageMonster.silhouette", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25746, 25746, "Ikuntai's Pawn", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_pikeman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25747, 25747, "Zombie Lord Crowl", 0, "Lord of Destruction", 0, "LineageMonster3.Zombie_Raid", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25748, 25748, "Evil Spirit Archer", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_archer", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25749, 25749, "Evil Spirit Warrior", 0, "Follower of Destruction", 0, "LineageMonster.skeleton", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25750, 25750, "Zombie Lord Ferkel", 0, "Lord of Destruction", 0, "LineageMonster.zombie_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25751, 25751, "Ferkel's Warrior", 0, "Follower of Destruction", 0, "LineageMonster.zombie", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25752, 25752, "Ferkel's Priest", 0, "Follower of Destruction", 0, "LineageMonster.zombie", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25753, 25753, "Guillotine Warden", 0, "Lord of Destruction", 0, "LineageMonster.skeleton_pikeman_100_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25754, 25754, "Fire Lord Shadar", 0, "Lord of Destruction", 0, "LineageMonster.dre_vanul_100_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25755, 25755, "Sword of Shadar", 0, "Follower of Destruction", 0, "LineageMonster.imp", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25756, 25756, "Whip of Shadar", 0, "Follower of Destruction", 0, "LineageMonster.succubus", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25757, 25757, "Soul Collector Acheron", 0, "Lord of Destruction", 0, "LineageMonster.vale_master_50_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25758, 25758, "Soul Slasher", 0, "Follower of Destruction", 0, "LineageMonster.dark_horror", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25759, 25759, "Soul Strainer", 0, "Follower of Destruction", 0, "LineageMonster.hungry_spirit", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25760, 25760, "Lord Ishka", 0, "Lord of Destruction", 0, "LineageMonster.death_blader_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25761, 25761, "Ishka's Elite Officer", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_royal_guard", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25762, 25762, "Ishka's Elite Soldier", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_knight_20_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25763, 25763, "Demon Kuri", 0, "Lord of Destruction", 0, "LineageMonster.karik_100_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25764, 25764, "Kuri's Wife", 0, "Follower of Destruction", 0, "LineageMonster.bloody_queen", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25765, 25765, "Devil Blader of Chaos", 0, "Follower of Destruction", 0, "LineageMonster.death_blader", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25766, 25766, "Ancient Drake", 0, "Lord of Destruction", 0, "LineageMonster.drake_50_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25767, 25767, "Carnage Lord Gato", 0, "Lord of Destruction", 0, "LineageMonster.oel_mahum_50_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25768, 25768, "Gato's Marksman", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum_archer", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25769, 25769, "Gato's Champion", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum_champion", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25770, 25770, "Ketra Commander Atis", 0, "Lord of Destruction", 0, "LineageMonster.ketra_orc_overload", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25771, 25771, "Ketra Marksman", 0, "Follower of Destruction", 0, "LineageMonster.ketra_orc_archer", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25772, 25772, "Ketra Raider", 0, "Follower of Destruction", 0, "LineageMonster.ketra_orc_warrior", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25773, 25773, "Beacon of Blue Sky", 0, "Lord of Destruction", 0, "LineageMonster.lienrik", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25774, 25774, "Beacon's Shooter", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_archer", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25775, 25775, "Beacon's Warrior", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_knight", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25776, 25776, "Earth Protector Panathen", 0, "Lord of Destruction", 0, "LineageMonster.farhite", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25777, 25777, "Panathen's Knight", 0, "Follower of Destruction", 0, "LineageMonster.nos", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25778, 25778, "Panathen's Protectors", 0, "Follower of Destruction", 0, "LineageMonster.dailaon", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25779, 25779, "Betrayer of Urutu Freki", 0, "Lord of Destruction", 0, "LineageMonster.werewolf_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25780, 25780, "Freki's Vampire Bat", 0, "Follower of Destruction", 0, "LineageMonster.vampire_bat", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25781, 25781, "Freki's Wild Bear", 0, "Follower of Destruction", 0, "LineageMonster.grizzly", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25782, 25782, "Nellis' Vengeful Spirit", 0, "Lord of Destruction", 0, "LineageNPC.a_mageguild_teacher_Mhuman_mon_120p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25783, 25783, "Nellis' Follower", 0, "Follower of Destruction", 0, "LineageMonster.dwarf_ghost", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25784, 25784, "Rayito the Looter", 0, "Lord of Destruction", 0, "LineageMonster.ol_mahum_champion_05te_120p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25785, 25785, "Rayito's Henchman", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum_05te_110p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25786, 25786, "Rayito's Henchman", 0, "Follower of Destruction", 0, "LineageMonster2.northern_goblin_110p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25787, 25787, "Ketra's Hero Hekaton", 0, "Lord of Destruction", 0, "LineageMonster2.ketra_orc_chieftain_20_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25788, 25788, "Scout of Hekaton", 0, "Follower of Destruction", 0, "LineageMonster.ketra_orc_archer", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25789, 25789, "Servant of Hekaton", 0, "Follower of Destruction", 0, "LineageMonster.ketra_orc", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25790, 25790, "Varka's Hero Shadith", 0, "Lord of Destruction", 0, "LineageMonster2.barka_silenos_shaman_20_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25791, 25791, "Shadith's Royal Guard Captain", 0, "Follower of Destruction", 0, "LineageMonster2.barka_silenos_warrior", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25792, 25792, "Shadith's Sentinel", 0, "Follower of Destruction", 0, "LineageMonster2.barka_silenos_hunter", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25793, 25793, "Doom Blade Tanatos", 0, "Lord of Destruction", 0, "LineageMonster3.Death_Blader_Raid", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25794, 25794, "Kernon", 0, "Lord of Destruction", 0, "LineageMonster.kaim_vanul", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25795, 25795, "Taliadon", 0, "Follower of Destruction", 0, "LineageMonster.death_blader", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25796, 25796, "Vemsk", 0, "Follower of Destruction", 0, "LineageMonster.death_knight", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25797, 25797, "Meanas Anor", 0, "Lord of Destruction", 0, "LineageMonster.wyrm_50_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25798, 25798, "Wyvern of Marsh", 0, "Follower of Destruction", 0, "LineageMonster.wyrm", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25799, 25799, "Succubus of Marsh", 0, "Follower of Destruction", 0, "LineageMonster.succubus", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25800, 25800, "Mammon Collector Talos", 0, "Lord of Destruction", 0, "LineageMonster2.ashuras", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
-(25801, 25801, "Talos' Cohort", 0, "Follower of Destruction", 0, "LineageMonster.dre_vanul", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1),
+(25735, 25735, "Greyclaw Kutus", 0, "Lord of Destruction", 0, "LineageMonster.ol_mahum_champion_50_bi", 21.00, 43.50, 23, "male", "L2RaidBoss", 40, 40330.259723000000000, 231.960000000000000, 17.534747000000000, 1.500000000000000, 60, 57, 73, 76, 70, 80, 2690117, 69902, 62.85328, 286.94928, 3.96218, 139.98000, 253, 4, 333, 67, 633, 0, 50.00000, 170.00000, 0, 1),
+(25736, 25736, "Kutus' Guard", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum", 13.50, 25.00, 22, "male", "L2Monster", 40, 4185.613808000000000, 218.520000000000000, 17.157688000000000, 1.500000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 154.12030, 138.98541, 25.85570, 135.60000, 253, 4, 333, 7, 0, 0, 50.00000, 170.00000, 0, 1),
+(25737, 25737, "Kutus' Pawn", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum", 13.50, 25.00, 22, "male", "L2Monster", 40, 6247.184788000000000, 218.520000000000000, 17.157688000000000, 1.500000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 231.18622, 138.98541, 58.17787, 135.60000, 253, 4, 333, 123, 0, 0, 50.00000, 170.00000, 0, 1),
+(25738, 25738, "Lead Tracker Sharuk", 0, "Lord of Destruction", 0, "LineageMonster.virud_lizardman_warrior", 12.00, 30.00, 23, "male", "L2RaidBoss", 40, 40330.259723000000000, 231.960000000000000, 17.534747000000000, 1.500000000000000, 60, 57, 73, 76, 70, 80, 2690117, 69902, 62.85328, 286.94928, 3.96218, 139.98000, 253, 4, 333, 291, 0, 0, 52.00000, 190.00000, 0, 1),
+(25739, 25739, "Sharuk's Minion", 0, "Follower of Destruction", 0, "LineageMonster.virud_lizardman", 10.00, 23.00, 22, "male", "L2Monster", 40, 3123.592394000000000, 218.520000000000000, 17.157688000000000, 1.500000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 115.59311, 138.98541, 14.54447, 135.60000, 253, 4, 333, 2, 0, 0, 43.00000, 190.00000, 0, 1),
+(25740, 25740, "Sharuk's Marksman", 0, "Follower of Destruction", 0, "LineageMonster.virud_lizardman_scout", 10.00, 22.00, 22, "male", "L2Monster", 1100, 4185.613808000000000, 218.520000000000000, 17.157688000000000, 1.500000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 115.59311, 138.98541, 14.54447, 135.60000, 253, 8, 333, 2507, 0, 0, 43.00000, 190.00000, 0, 1),
+(25741, 25741, "Sukar Wererat Chief", 0, "Lord of Destruction", 0, "LineageMonster.wererat", 14.00, 25.00, 21, "male", "L2RaidBoss", 40, 37886.485367000000000, 205.200000000000000, 16.826966000000000, 1.500000000000000, 60, 57, 73, 76, 70, 80, 2646357, 60367, 53.12758, 269.19177, 3.16861, 131.32000, 253, 8, 333, 216, 0, 0, 80.00000, 190.00000, 0, 1),
+(25742, 25742, "Sukar Wererat Guard", 0, "Follower of Destruction", 0, "LineageMonster.wererat_sm", 12.00, 18.70, 20, "male", "L2Monster", 40, 5895.549772000000000, 192.000000000000000, 16.540032000000000, 1.200000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 195.30066, 130.30574, 38.11820, 127.14000, 253, 8, 333, 216, 0, 0, 80.00000, 190.00000, 0, 1),
+(25743, 25743, "Sukar Wererat Priest", 0, "Follower of Destruction", 0, "LineageMonster.wererat_sm", 12.00, 18.70, 20, "male", "L2Monster", 40, 5895.549772000000000, 192.000000000000000, 16.540032000000000, 1.200000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 97.65033, 130.30574, 9.52955, 127.14000, 253, 1, 333, 179, 0, 0, 80.00000, 190.00000, 0, 1),
+(25744, 25744, "Ikuntai", 0, "Lord of Destruction", 0, "LineageMonster.skeleton_knight_50_bi", 15.00, 39.00, 25, "male", "L2RaidBoss", 40, 56644.139929000000000, 259.200000000000000, 24.086233000000000, 1.500000000000000, 60, 57, 73, 76, 70, 80, 1589296, 122871, 138.03739, 305.50599, 16.13317, 149.04000, 253, 4, 333, 150, 0, 0, 40.00000, 170.00000, 0, 1),
+(25745, 25745, "Ikuntai's Servitor", 0, "Follower of Destruction", 0, "LineageMonster.silhouette", 8.00, 23.00, 24, "female", "L2Monster", 40, 8725.562981000000000, 245.520000000000000, 23.437467000000000, 1.500000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 253.59237, 148.06379, 59.18346, 144.46000, 253, 4, 333, 0, 0, 0, 80.00000, 170.00000, 0, 1),
+(25746, 25746, "Ikuntai's Pawn", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_pikeman", 10.00, 28.00, 24, "male", "L2Monster", 40, 4362.781490000000000, 245.520000000000000, 23.437467000000000, 1.500000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 253.59237, 148.06379, 59.18346, 144.46000, 253, 4, 333, 299, 0, 0, 50.00000, 170.00000, 0, 1),
+(25747, 25747, "Zombie Lord Crowl", 0, "Lord of Destruction", 0, "LineageMonster3.Zombie_Raid", 30.00, 21.25, 25, "male", "L2RaidBoss", 40, 43316.308536000000000, 259.200000000000000, 18.438531000000000, 1.500000000000000, 60, 57, 73, 76, 70, 80, 2541012, 79280, 74.22232, 305.50599, 4.67967, 149.04000, 253, 4, 333, 0, 0, 0, 60.00000, 190.00000, 0, 1),
+(25748, 25748, "Evil Spirit Archer", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_archer", 11.00, 27.00, 24, "male", "L2Monster", 1100, 4475.706738000000000, 245.520000000000000, 17.960770000000000, 1.500000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 136.64091, 148.06379, 17.20301, 144.46000, 253, 8, 333, 14, 0, 0, 40.00000, 170.00000, 0, 1),
+(25749, 25749, "Evil Spirit Warrior", 0, "Follower of Destruction", 0, "LineageMonster.skeleton", 11.00, 25.00, 24, "male", "L2Monster", 40, 3340.079655000000000, 245.520000000000000, 17.960770000000000, 1.500000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 136.64091, 148.06379, 17.20301, 144.46000, 253, 4, 333, 946, 0, 0, 60.00000, 170.00000, 0, 1),
+(25750, 25750, "Zombie Lord Ferkel", 0, "Lord of Destruction", 0, "LineageMonster.zombie_bi", 12.00, 27.50, 20, "male", "L2RaidBoss", 40, 36847.186075000000000, 192.000000000000000, 16.540032000000000, 1.200000000000000, 60, 57, 73, 76, 70, 80, 3041766, 59634, 48.82516, 260.61147, 2.38239, 127.14000, 253, 4, 333, 0, 0, 0, 15.00000, 190.00000, 0, 1),
+(25751, 25751, "Ferkel's Warrior", 0, "Follower of Destruction", 0, "LineageMonster.zombie", 13.00, 21.00, 19, "male", "L2Monster", 40, 5747.152315000000000, 183.280000000000000, 16.294366000000000, 1.200000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 179.47790, 126.11457, 33.83233, 123.04000, 253, 4, 333, 0, 0, 0, 15.00000, 190.00000, 0, 1),
+(25752, 25752, "Ferkel's Priest", 0, "Follower of Destruction", 0, "LineageMonster.zombie", 13.00, 21.00, 19, "male", "L2Monster", 40, 5747.152315000000000, 183.280000000000000, 16.294366000000000, 1.200000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 89.73895, 126.11457, 8.45808, 123.04000, 253, 4, 333, 0, 0, 0, 15.00000, 190.00000, 0, 1),
+(25753, 25753, "Guillotine Warden", 0, "Lord of Destruction", 0, "LineageMonster.skeleton_pikeman_100_bi", 20.00, 58.00, 35, "male", "L2RaidBoss", 40, 138899.136909000000000, 402.600000000000000, 66.985980000000000, 1.800000000000000, 60, 57, 73, 76, 70, 80, 1912395, 144137, 327.39130, 410.18844, 51.71999, 200.10000, 253, 4, 333, 96, 0, 0, 50.00000, 170.00000, 0, 1),
+(25754, 25754, "Fire Lord Shadar", 0, "Lord of Destruction", 0, "LineageMonster.dre_vanul_100_bi", 28.00, 75.00, 35, "male", "L2RaidBoss", 40, 69449.568455000000000, 402.600000000000000, 26.794392000000000, 1.800000000000000, 60, 57, 73, 76, 70, 80, 1912395, 144137, 163.69565, 410.18844, 12.93000, 200.10000, 253, 4, 333, 0, 0, 0, 80.00000, 170.00000, 0, 1),
+(25755, 25755, "Sword of Shadar", 0, "Follower of Destruction", 0, "LineageMonster.imp", 10.00, 24.00, 34, "male", "L2Monster", 40, 10526.667869000000000, 387.720000000000000, 25.612831000000000, 1.800000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 606.97120, 199.42290, 192.64979, 194.58000, 253, 4, 333, 0, 0, 0, 60.00000, 170.00000, 0, 1),
+(25756, 25756, "Whip of Shadar", 0, "Follower of Destruction", 0, "LineageMonster.succubus", 10.00, 36.00, 34, "female", "L2Monster", 40, 5263.333934000000000, 387.720000000000000, 25.612831000000000, 1.800000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 303.48560, 199.42290, 48.16245, 194.58000, 253, 4, 333, 0, 0, 0, 60.00000, 170.00000, 0, 1),
+(25757, 25757, "Soul Collector Acheron", 0, "Lord of Destruction", 0, "LineageMonster.vale_master_50_bi", 18.00, 63.00, 35, "male", "L2RaidBoss", 40, 69449.568455000000000, 402.600000000000000, 26.794392000000000, 1.800000000000000, 60, 57, 73, 76, 70, 80, 1912395, 144137, 163.69565, 410.18844, 12.93000, 200.10000, 253, 1, 333, 192, 0, 0, 70.00000, 160.00000, 0, 1),
+(25758, 25758, "Soul Slasher", 0, "Follower of Destruction", 0, "LineageMonster.dark_horror", 20.00, 35.00, 34, "male", "L2Monster", 40, 7052.867472000000000, 387.720000000000000, 25.612831000000000, 1.800000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 404.63735, 199.42290, 85.61838, 194.58000, 253, 1, 333, 0, 0, 0, 100.00000, 140.00000, 0, 1),
+(25759, 25759, "Soul Strainer", 0, "Follower of Destruction", 0, "LineageMonster.hungry_spirit", 30.00, 40.00, 34, "male", "L2Monster", 40, 10526.667869000000000, 387.720000000000000, 25.612831000000000, 1.800000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 606.97120, 199.42290, 192.64979, 194.58000, 253, 1, 333, 0, 0, 0, 15.00000, 155.00000, 0, 1),
+(25760, 25760, "Lord Ishka", 0, "Lord of Destruction", 0, "LineageMonster.death_blader_bi", 22.00, 67.00, 60, "male", "L2RaidBoss", 40, 221100.024975000000000, 1036.800000000000000, 72.964382000000000, 2.400000000000000, 60, 57, 73, 76, 70, 80, 2735033, 394692, 785.17745, 742.95024, 133.51196, 362.44000, 253, 4, 333, 1472, 0, 0, 100.00000, 190.00000, 0, 1),
+(25761, 25761, "Ishka's Elite Officer", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_royal_guard", 11.00, 28.50, 59, "male", "L2Monster", 40, 34433.217541000000000, 1007.000000000000000, 71.371054000000000, 2.400000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 2995.10104, 364.22390, 1962.16762, 355.36000, 253, 8, 333, 946, 945, 0, 80.00000, 190.00000, 0, 1),
+(25762, 25762, "Ishka's Elite Soldier", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_knight_20_bi", 12.00, 30.50, 59, "male", "L2Monster", 40, 34433.217541000000000, 1007.000000000000000, 71.371054000000000, 2.400000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 2995.10104, 364.22390, 1962.16762, 355.36000, 253, 4, 333, 150, 103, 0, 40.00000, 190.00000, 0, 1),
+(25763, 25763, "Demon Kuri", 0, "Lord of Destruction", 0, "LineageMonster.karik_100_bi", 50.00, 180.00, 59, "male", "L2RaidBoss", 40, 215207.609633000000000, 1007.000000000000000, 71.371054000000000, 2.400000000000000, 60, 57, 73, 76, 70, 80, 2684275, 381459, 748.77526, 728.44779, 122.63548, 355.36000, 253, 4, 333, 0, 0, 0, 37.00000, 200.00000, 0, 1),
+(25764, 25764, "Kuri's Wife", 0, "Follower of Destruction", 0, "LineageMonster.bloody_queen", 14.00, 40.00, 58, "female", "L2Monster", 40, 33456.124134000000000, 977.400000000000000, 69.690691000000000, 2.400000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 1426.04441, 356.99144, 460.01277, 348.30000, 253, 4, 333, 0, 0, 0, 80.00000, 170.00000, 0, 1),
+(25765, 25765, "Devil Blader of Chaos", 0, "Follower of Destruction", 0, "LineageMonster.death_blader", 15.00, 45.00, 58, "male", "L2Monster", 40, 16728.062067000000000, 977.400000000000000, 69.690691000000000, 2.400000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 1426.04441, 356.99144, 460.01277, 348.30000, 253, 4, 333, 1472, 0, 0, 100.00000, 170.00000, 0, 1),
+(25766, 25766, "Ancient Drake", 0, "Lord of Destruction", 0, "LineageMonster.drake_50_bi", 45.00, 150.00, 60, "male", "L2RaidBoss", 40, 442200.049950000000000, 1036.800000000000000, 182.410956000000000, 2.400000000000000, 60, 57, 73, 76, 70, 80, 2735033, 394692, 1570.35490, 742.95024, 534.04783, 362.44000, 253, 4, 333, 0, 0, 0, 70.00000, 170.00000, 0, 1),
+(25767, 25767, "Carnage Lord Gato", 0, "Lord of Destruction", 0, "LineageMonster.oel_mahum_50_bi", 30.00, 57.00, 50, "male", "L2RaidBoss", 40, 155046.064475000000000, 747.800000000000000, 53.854634000000000, 2.100000000000000, 60, 57, 73, 76, 70, 80, 2389767, 281312, 458.48043, 600.71532, 56.52768, 293.06000, 253, 4, 333, 71, 0, 0, 70.00000, 170.00000, 0, 1),
+(25768, 25768, "Gato's Marksman", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum_archer", 14.00, 25.00, 49, "male", "L2Monster", 1100, 15873.757280000000000, 720.000000000000000, 51.719311000000000, 2.100000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 862.56672, 293.49453, 207.71039, 286.36000, 253, 8, 333, 273, 0, 0, 50.00000, 170.00000, 0, 1),
+(25769, 25769, "Gato's Champion", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum_champion", 14.00, 27.00, 49, "male", "L2Monster", 40, 11846.087522000000000, 720.000000000000000, 51.719311000000000, 2.100000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 862.56672, 293.49453, 207.71039, 286.36000, 253, 4, 333, 69, 0, 0, 50.00000, 170.00000, 0, 1),
+(25770, 25770, "Ketra Commander Atis", 0, "Lord of Destruction", 0, "LineageMonster.ketra_orc_overload", 12.00, 24.00, 49, "male", "L2RaidBoss", 40, 148076.094027000000000, 720.000000000000000, 51.719311000000000, 2.100000000000000, 60, 57, 73, 76, 70, 80, 2328069, 284981, 431.28336, 586.98906, 51.92760, 286.36000, 253, 1, 333, 84, 0, 0, 33.00000, 170.00000, 0, 1),
+(25771, 25771, "Ketra Marksman", 0, "Follower of Destruction", 0, "LineageMonster.ketra_orc_archer", 12.00, 27.00, 48, "male", "L2Monster", 1100, 15133.574434000000000, 692.400000000000000, 49.588364000000000, 2.100000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 810.39881, 286.69205, 191.37493, 279.72000, 253, 8, 333, 279, 0, 0, 45.00000, 170.00000, 0, 1),
+(25772, 25772, "Ketra Raider", 0, "Follower of Destruction", 0, "LineageMonster.ketra_orc_warrior", 12.00, 24.00, 48, "male", "L2Monster", 40, 11293.712264000000000, 692.400000000000000, 49.588364000000000, 2.100000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 810.39881, 286.69205, 191.37493, 279.72000, 253, 4, 333, 128, 0, 0, 36.00000, 170.00000, 0, 1),
+(25773, 25773, "Beacon of Blue Sky", 0, "Lord of Destruction", 0, "LineageMonster.lienrik", 12.00, 50.00, 45, "male", "L2RaidBoss", 40, 121183.101254000000000, 610.800000000000000, 43.342559000000000, 2.100000000000000, 60, 57, 73, 76, 70, 80, 2085510, 229987, 333.67447, 533.36238, 35.73201, 260.20000, 253, 4, 333, 0, 0, 0, 100.00000, 170.00000, 0, 1),
+(25774, 25774, "Beacon's Shooter", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_archer", 11.00, 27.00, 44, "male", "L2Monster", 1100, 12313.398435000000000, 584.000000000000000, 41.347042000000000, 2.100000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 624.12426, 260.15328, 130.53090, 253.82000, 253, 8, 333, 279, 0, 0, 40.00000, 170.00000, 0, 1),
+(25775, 25775, "Beacon's Warrior", 0, "Follower of Destruction", 0, "LineageMonster.skeleton_knight", 10.00, 25.00, 44, "male", "L2Monster", 40, 9189.103310000000000, 584.000000000000000, 41.347042000000000, 2.100000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 624.12426, 260.15328, 130.53090, 253.82000, 253, 4, 333, 150, 0, 0, 40.00000, 160.00000, 0, 1),
+(25776, 25776, "Earth Protector Panathen", 0, "Lord of Destruction", 0, "LineageMonster.farhite", 16.00, 31.00, 43, "male", "L2RaidBoss", 40, 108760.132419000000000, 557.400000000000000, 39.411275000000000, 2.100000000000000, 60, 57, 73, 76, 70, 80, 1976893, 206038, 291.54440, 507.40251, 29.76552, 247.54000, 253, 1, 333, 183, 0, 0, 15.00000, 170.00000, 0, 1),
+(25777, 25777, "Panathen's Knight", 0, "Follower of Destruction", 0, "LineageMonster.nos", 26.00, 42.00, 42, "male", "L2Monster", 40, 16462.952785000000000, 531.000000000000000, 37.543530000000000, 2.100000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 1088.40749, 247.32770, 433.04587, 241.32000, 253, 4, 333, 5130, 0, 0, 18.00000, 170.00000, 0, 1),
+(25778, 25778, "Panathen's Protectors", 0, "Follower of Destruction", 0, "LineageMonster.dailaon", 20.00, 28.00, 42, "male", "L2Monster", 1100, 8231.476393000000000, 531.000000000000000, 37.543530000000000, 2.100000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 544.20375, 247.32770, 108.26147, 241.32000, 253, 8, 333, 5127, 0, 0, 18.00000, 170.00000, 0, 1),
+(25779, 25779, "Betrayer of Urutu Freki", 0, "Lord of Destruction", 0, "LineageMonster.werewolf_bi", 11.00, 29.70, 25, "male", "L2RaidBoss", 40, 43316.308536000000000, 259.200000000000000, 18.438531000000000, 1.500000000000000, 60, 57, 73, 76, 70, 80, 2541012, 79280, 74.22232, 305.50599, 4.67967, 149.04000, 253, 4, 333, 0, 0, 0, 50.00000, 190.00000, 0, 1),
+(25780, 25780, "Freki's Vampire Bat", 0, "Follower of Destruction", 0, "LineageMonster.vampire_bat", 10.00, 33.50, 24, "male", "L2Monster", 40, 6680.159310000000000, 245.520000000000000, 17.960770000000000, 1.500000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 273.28181, 148.06379, 68.81204, 144.46000, 253, 4, 333, 0, 0, 0, 60.00000, 190.00000, 0, 1),
+(25781, 25781, "Freki's Wild Bear", 0, "Follower of Destruction", 0, "LineageMonster.grizzly", 21.00, 40.00, 24, "male", "L2Monster", 40, 6680.159310000000000, 245.520000000000000, 17.960770000000000, 1.500000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 273.28181, 148.06379, 68.81204, 144.46000, 253, 4, 333, 0, 0, 0, 40.00000, 190.00000, 0, 1),
+(25782, 25782, "Nellis' Vengeful Spirit", 0, "Lord of Destruction", 0, "LineageNPC.a_mageguild_teacher_Mhuman_mon_120p", 10.00, 28.10, 39, "male", "L2RaidBoss", 40, 86871.349292000000000, 463.320000000000000, 32.411747000000000, 1.800000000000000, 60, 57, 73, 76, 70, 80, 1988451, 173127, 219.96935, 457.40256, 17.29939, 223.14000, 253, 4, 333, 8532, 0, 0, 50.00000, 190.00000, 0, 1),
+(25783, 25783, "Nellis' Follower", 0, "Follower of Destruction", 0, "LineageMonster.dwarf_ghost", 9.00, 16.50, 38, "male", "L2Monster", 40, 13134.248391000000000, 447.960000000000000, 30.872687000000000, 1.800000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 818.21687, 222.66431, 258.36304, 217.24000, 253, 4, 333, 0, 0, 0, 80.00000, 190.00000, 0, 1),
+(25784, 25784, "Rayito the Looter", 0, "Lord of Destruction", 0, "LineageMonster.ol_mahum_champion_05te_120p", 16.00, 33.20, 37, "male", "L2RaidBoss", 40, 77592.657061000000000, 432.720000000000000, 29.423287000000000, 1.800000000000000, 60, 57, 73, 76, 70, 80, 1932589, 153693, 190.06221, 433.43274, 15.06832, 211.44000, 253, 1, 333, 67, 633, 0, 50.00000, 190.00000, 0, 1),
+(25785, 25785, "Rayito's Henchman", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum_05te_110p", 14.50, 28.00, 36, "male", "L2Monster", 40, 11740.947836000000000, 417.600000000000000, 28.064045000000000, 1.800000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 705.82255, 210.85917, 224.63892, 205.74000, 253, 1, 333, 123, 19, 0, 50.00000, 190.00000, 0, 1),
+(25786, 25786, "Rayito's Henchman", 0, "Follower of Destruction", 0, "LineageMonster2.northern_goblin_110p", 6.00, 16.60, 36, "male", "L2Monster", 40, 7866.435050000000000, 417.600000000000000, 28.064045000000000, 1.800000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 470.53660, 210.85917, 99.83515, 205.74000, 253, 1, 333, 66, 102, 0, 30.00000, 190.00000, 0, 1),
+(25787, 25787, "Ketra's Hero Hekaton", 0, "Lord of Destruction", 0, "LineageMonster2.ketra_orc_chieftain_20_bi", 17.00, 46.20, 80, "male", "L2RaidBoss", 40, 300327.053711000000000, 1674.800000000000000, 92.338763000000000, 3.000000000000000, 60, 57, 73, 76, 70, 80, 3775961, 557272, 1445.33275, 1024.12500, 280.52214, 499.60000, 253, 1, 333, 6719, 0, 0, 24.00000, 190.00000, 0, 1),
+(25788, 25788, "Scout of Hekaton", 0, "Follower of Destruction", 0, "LineageMonster.ketra_orc_archer", 12.00, 27.00, 79, "male", "L2Monster", 1100, 31866.802014000000000, 1641.000000000000000, 91.493086000000000, 3.000000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 2848.82203, 505.60512, 1105.91357, 493.30000, 253, 8, 333, 288, 0, 0, 45.00000, 190.00000, 0, 1),
+(25789, 25789, "Servant of Hekaton", 0, "Follower of Destruction", 0, "LineageMonster.ketra_orc", 12.00, 29.00, 79, "male", "L2Monster", 40, 23781.195533000000000, 1641.000000000000000, 91.493086000000000, 3.000000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 2848.82203, 505.60512, 1105.91357, 493.30000, 253, 8, 333, 79, 0, 0, 45.00000, 190.00000, 0, 1),
+(25790, 25790, "Varka's Hero Shadith", 0, "Lord of Destruction", 0, "LineageMonster2.barka_silenos_shaman_20_bi", 17.00, 47.50, 80, "male", "L2RaidBoss", 40, 300327.053711000000000, 1674.800000000000000, 92.338763000000000, 3.000000000000000, 60, 57, 73, 76, 70, 80, 3775961, 557272, 1445.33275, 1024.12500, 280.52214, 499.60000, 253, 1, 333, 6716, 0, 0, 36.00000, 190.00000, 0, 1),
+(25791, 25791, "Shadith's Royal Guard Captain", 0, "Follower of Destruction", 0, "LineageMonster2.barka_silenos_warrior", 16.00, 41.00, 79, "male", "L2Monster", 40, 47562.391065000000000, 1641.000000000000000, 91.493086000000000, 3.000000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 5697.64406, 505.60512, 4423.65426, 493.30000, 253, 4, 333, 142, 6918, 0, 34.00000, 190.00000, 0, 1),
+(25792, 25792, "Shadith's Sentinel", 0, "Follower of Destruction", 0, "LineageMonster2.barka_silenos_hunter", 16.00, 38.00, 79, "male", "L2Monster", 40, 23781.195533000000000, 1641.000000000000000, 91.493086000000000, 3.000000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 2848.82203, 505.60512, 1105.91357, 493.30000, 253, 8, 333, 2504, 0, 0, 44.00000, 190.00000, 0, 1),
+(25793, 25793, "Doom Blade Tanatos", 0, "Lord of Destruction", 0, "LineageMonster3.Death_Blader_Raid", 15.00, 32.50, 72, "male", "L2RaidBoss", 40, 766919.841979000000000, 1410.000000000000000, 299.923216000000000, 3.000000000000000, 60, 57, 73, 76, 70, 80, 5140647, 827123, 4561.13269, 916.07841, 3254.54886, 446.90000, 253, 4, 333, 0, 0, 0, 60.00000, 180.00000, 0, 1),
+(25794, 25794, "Kernon", 0, "Lord of Destruction", 0, "LineageMonster.kaim_vanul", 24.00, 40.00, 75, "male", "L2RaidBoss", 40, 397437.251440000000000, 1507.800000000000000, 123.216290000000000, 3.000000000000000, 60, 57, 73, 76, 70, 80, 5231148, 864099, 2451.22348, 957.73869, 868.87603, 467.22000, 253, 4, 333, 0, 0, 0, 37.00000, 170.00000, 0, 1),
+(25795, 25795, "Taliadon", 0, "Follower of Destruction", 0, "LineageMonster.death_blader", 15.00, 45.00, 74, "male", "L2Monster", 40, 62863.348225000000000, 1475.000000000000000, 122.142751000000000, 3.000000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 9587.96075, 471.98981, 13630.35538, 460.50000, 253, 4, 333, 1472, 0, 0, 100.00000, 170.00000, 0, 1),
+(25796, 25796, "Vemsk", 0, "Follower of Destruction", 0, "LineageMonster.death_knight", 12.00, 31.00, 74, "male", "L2Monster", 40, 31431.674113000000000, 1475.000000000000000, 122.142751000000000, 3.000000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 4793.98038, 471.98981, 3407.58884, 460.50000, 253, 4, 333, 142, 0, 0, 27.00000, 170.00000, 0, 1),
+(25797, 25797, "Meanas Anor", 0, "Lord of Destruction", 0, "LineageMonster.wyrm_50_bi", 58.00, 108.00, 70, "male", "L2RaidBoss", 40, 373386.071242000000000, 1345.800000000000000, 117.684362000000000, 2.700000000000000, 60, 57, 73, 76, 70, 80, 4596479, 802604, 2154.88112, 887.74791, 717.40387, 433.08000, 253, 4, 333, 0, 0, 0, 70.00000, 190.00000, 0, 1),
+(25798, 25798, "Wyvern of Marsh", 0, "Follower of Destruction", 0, "LineageMonster.wyrm", 29.00, 72.00, 69, "male", "L2Monster", 40, 39454.502253000000000, 1314.000000000000000, 116.468584000000000, 2.700000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 5571.20004, 436.72595, 4930.48367, 426.10000, 253, 4, 333, 0, 0, 0, 70.00000, 190.00000, 0, 1),
+(25799, 25799, "Succubus of Marsh", 0, "Follower of Destruction", 0, "LineageMonster.succubus", 10.00, 36.00, 69, "female", "L2Monster", 40, 58887.316796000000000, 1314.000000000000000, 116.468584000000000, 2.700000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 4178.50449, 436.72595, 2773.51841, 426.10000, 253, 4, 333, 0, 0, 0, 60.00000, 190.00000, 0, 1),
+(25800, 25800, "Mammon Collector Talos", 0, "Lord of Destruction", 0, "LineageMonster2.ashuras", 13.00, 37.50, 25, "male", "L2RaidBoss", 40, 43316.308536000000000, 259.200000000000000, 18.438531000000000, 1.500000000000000, 60, 57, 73, 76, 70, 80, 2541012, 79280, 74.22232, 305.50599, 4.67967, 149.04000, 253, 4, 333, 0, 0, 0, 41.00000, 190.00000, 0, 1),
+(25801, 25801, "Talos' Cohort", 0, "Follower of Destruction", 0, "LineageMonster.dre_vanul", 14.00, 36.00, 22, "male", "L2Monster", 40, 6247.184788000000000, 218.520000000000000, 17.157688000000000, 1.500000000000000, 40, 43, 30, 21, 20, 20, 0, 0, 231.18622, 138.98541, 58.17787, 135.60000, 253, 4, 333, 0, 0, 0, 80.00000, 190.00000, 0, 1),
 (27001, 27001, "Orc Sniper", 0, "", 0, "LineageMonster.orc_archer", 14, 25, 10, "male", "L2Monster", 1100, 163.28607, 108.4, 2, 0.9, 40, 43, 30, 21, 20, 20, 0, 0, 19.33758, 61.82527, 13.20506, 45.24105, 253, 8, 333, 14, 0, 0, 45, 110, 0, 1),
 (27002, 27002, "Orc Fighter", 0, "", 0, "LineageMonster.orc_fighter", 12, 22, 12, "male", "L2Monster", 40, 199.62322, 124.48, 2.5, 1.2, 40, 43, 30, 21, 20, 20, 0, 0, 22.99606, 66.32989, 15.70333, 48.53733, 253, 4, 333, 1, 0, 0, 45, 110, 0, 1),
 (27003, 27003, "Spirit Of Mirrors", 0, "Quest Monster", 0, "LineageMonster.poison_toad", 20, 10, 9, "male", "L2Monster", 40, 143.17564, 100.48, 2, 0.9, 40, 43, 30, 21, 20, 20, 0, 0, 17.70841, 59.66387, 12.09255, 43.65943, 253, 4, 333, 0, 0, 0, 50, 100, 0, 1),
diff --git a/L2J_DataPack_BETA/dist/sql/game/npc_elementals.sql b/L2J_DataPack_BETA/dist/sql/game/npc_elementals.sql
index fe1ec85033..7dc10000fa 100644
--- a/L2J_DataPack_BETA/dist/sql/game/npc_elementals.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/npc_elementals.sql
@@ -5655,73 +5655,73 @@ INSERT INTO `npc_elementals` VALUES
 (25732, 0, 0, 20, 20, 20, 20, 20, 20), -- Dragon Beast
 (25733, 0, 0, 20, 20, 20, 20, 20, 20), -- Gem Dragon
 (25734, 0, 0, 20, 20, 20, 20, 20, 20), -- Parasitic Leech
-(25735, 0, 0, 20, 20, 20, 20, 20, 20), -- Fairy Warrior
-(25736, 0, 0, 20, 20, 20, 20, 20, 20), -- Fairy Slasher
-(25737, 0, 0, 20, 20, 20, 20, 20, 20), -- Fairy Attacker
-(25738, 0, 0, 20, 20, 20, 20, 20, 20), -- Satyr Wizard
-(25739, 0, 0, 20, 20, 20, 20, 20, 20), -- Satyr Summoner
-(25740, 0, 0, 20, 20, 20, 20, 20, 20), -- Satyr Witch
-(25741, 0, 0, 20, 20, 20, 20, 20, 20), -- Trichin Defender
-(25742, 0, 0, 20, 20, 20, 20, 20, 20), -- Centaur Archer
-(25743, 0, 0, 20, 20, 20, 20, 20, 20), -- Beorning Berserker
-(25744, 0, 0, 20, 20, 20, 20, 20, 20), -- Double Nightmare
-(25745, 0, 0, 20, 20, 20, 20, 20, 20), -- Kimerian
-(25746, 0, 0, 20, 20, 20, 20, 20, 20), -- Kimerian Ghost
-(25747, 0, 0, 20, 20, 20, 20, 20, 20), -- Kimerian
-(25748, 0, 0, 20, 20, 20, 20, 20, 20), -- Fairy Warrior
-(25749, 0, 0, 20, 20, 20, 20, 20, 20), -- Fairy Slasher
-(25750, 0, 0, 20, 20, 20, 20, 20, 20), -- Fairy Attacker
-(25751, 0, 0, 20, 20, 20, 20, 20, 20), -- Satyr Wizard
-(25752, 0, 0, 20, 20, 20, 20, 20, 20), -- Satyr Summoner
-(25753, 0, 0, 20, 20, 20, 20, 20, 20), -- Satyr Witch
-(25754, 0, 0, 20, 20, 20, 20, 20, 20), -- Trichin Defender
-(25755, 0, 0, 20, 20, 20, 20, 20, 20), -- Centaur Archer
-(25756, 0, 0, 20, 20, 20, 20, 20, 20), -- Beorning Berserker
-(25757, 0, 0, 20, 20, 20, 20, 20, 20), -- Double Nightmare
-(25758, 0, 0, 20, 20, 20, 20, 20, 20), -- Kimerian
-(25759, 0, 0, 20, 20, 20, 20, 20, 20), -- Kimerian Ghost
-(25760, 0, 0, 20, 20, 20, 20, 20, 20), -- Turanclass
-(25761, 0, 0, 20, 20, 20, 20, 20, 20), -- Georgios
-(25762, 0, 0, 20, 20, 20, 20, 20, 20), -- Angelos
-(25763, 0, 0, 20, 20, 20, 20, 20, 20), -- Theofanis
-(25764, 0, 0, 20, 20, 20, 20, 20, 20), -- Steregos
-(25765, 0, 0, 20, 20, 20, 20, 20, 20), -- Beast
-(25766, 0, 0, 20, 20, 20, 20, 20, 20), -- Talicrome
-(25767, 0, 0, 20, 20, 20, 20, 20, 20), -- Meikaliya
-(25768, 0, 0, 20, 20, 20, 20, 20, 20), -- Evangelos
-(25769, 0, 0, 20, 20, 20, 20, 20, 20), -- Sotiris
-(25770, 0, 0, 20, 20, 20, 20, 20, 20), -- Lazaros
-(25771, 0, 0, 20, 20, 20, 20, 20, 20), -- Noctum
-(25772, 0, 0, 20, 20, 20, 20, 20, 20), -- Harnak Ghost
-(25773, 0, 0, 20, 20, 20, 20, 20, 20), -- Demonic Noctum
-(25774, 0, 0, 20, 20, 20, 20, 20, 20), -- Harnak's Evil Spirit
-(25775, 0, 0, 20, 20, 20, 20, 20, 20), -- Apherus
-(25776, 0, 0, 20, 20, 20, 20, 20, 20), -- Court Guard
-(25777, 0, 0, 20, 20, 20, 20, 20, 20), -- Chasseur
-(25778, 0, 0, 20, 20, 20, 20, 20, 20), -- Sentry
-(25779, 0, 0, 20, 20, 20, 20, 20, 20), -- Spezion
-(25780, 0, 0, 20, 20, 20, 20, 20, 20), -- Spezion's Subordinate
-(25781, 0, 0, 20, 20, 20, 20, 20, 20), -- Spezion's Subordinate
-(25782, 0, 0, 20, 20, 20, 20, 20, 20), -- Spezion's Subordinate
-(25783, 0, 0, 20, 20, 20, 20, 20, 20), -- Eyesaroch
-(25784, 0, 0, 20, 20, 20, 20, 20, 20), -- Overseer
-(25785, 0, 0, 20, 20, 20, 20, 20, 20), -- Teredor
-(25786, 0, 0, 20, 20, 20, 20, 20, 20), -- Lachikios
-(25787, 0, 0, 20, 20, 20, 20, 20, 20), -- Lachikios
-(25788, 0, 0, 20, 20, 20, 20, 20, 20), -- Lachikios
-(25789, 0, 0, 20, 20, 20, 20, 20, 20), -- Lachikios
-(25790, 0, 0, 20, 20, 20, 20, 20, 20), -- Royal Guard Member
-(25791, 0, 0, 20, 20, 20, 20, 20, 20), -- Royal Guard Member
-(25792, 0, 0, 20, 20, 20, 20, 20, 20), -- Rachicues
-(25793, 0, 0, 20, 20, 20, 20, 20, 20), -- Rachicues
-(25794, 0, 0, 20, 20, 20, 20, 20, 20), -- Rachicues
-(25795, 0, 0, 20, 20, 20, 20, 20, 20), -- Rachicues
-(25796, 0, 0, 20, 20, 20, 20, 20, 20), -- Veridan
-(25797, 0, 0, 20, 20, 20, 20, 20, 20), -- Kechi
-(25798, 0, 0, 20, 20, 20, 20, 20, 20), -- Kechi's Subordinate
-(25799, 0, 0, 20, 20, 20, 20, 20, 20), -- Michaela
-(25800, 0, 0, 20, 20, 20, 20, 20, 20), -- Michaela
-(25801, 0, 0, 20, 20, 20, 20, 20, 20), -- Teredor
+(25735, 0, 0, 20, 20, 20, 20, 20, 20), -- Greyclaw Kutus
+(25736, 0, 0, 20, 20, 20, 20, 20, 20), -- Kutus' Guard
+(25737, 0, 0, 20, 20, 20, 20, 20, 20), -- Kutus' Pawn
+(25738, 0, 0, 20, 20, 20, 20, 20, 20), -- Lead Tracker Sharuk
+(25739, 0, 0, 20, 20, 20, 20, 20, 20), -- Sharuk's Minion
+(25740, 0, 0, 20, 20, 20, 20, 20, 20), -- Sharuk's Marksman
+(25741, 0, 0, 20, 20, 20, 20, 20, 20), -- Sukar Wererat Chief
+(25742, 0, 0, 20, 20, 20, 20, 20, 20), -- Sukar Wererat Guard
+(25743, 0, 0, 20, 20, 20, 20, 20, 20), -- Sukar Wererat Priest
+(25744, 5, 20, 20, 20, 20, 20, -32, 53), -- Ikuntai
+(25745, 5, 20, 20, 20, 20, 20, -13, 189), -- Ikuntai's Servitor
+(25746, 5, 20, 20, 20, 20, 20, -32, 53), -- Ikuntai's Pawn
+(25747, 5, 20, 20, 20, 20, 20, -32, 53), -- Zombie Lord Crowl
+(25748, 5, 20, 20, 20, 20, 20, -32, 53), -- Evil Spirit Archer
+(25749, 5, 20, 20, 20, 20, 20, -32, 53), -- Evil Spirit Warrior
+(25750, 5, 20, 20, 20, 20, 20, -32, 53), -- Zombie Lord Ferkel
+(25751, 5, 20, 20, 20, 20, 20, -32, 53), -- Ferkel's Warrior
+(25752, 5, 20, 20, 20, 20, 20, -32, 53), -- Ferkel's Priest
+(25753, 5, 20, 20, 20, 20, 20, -32, 53), -- Guillotine Warden
+(25754, 5, 20, 20, 20, 20, 20, -13, 189), -- Fire Lord Shadar
+(25755, 0, 0, 20, 20, 53, 20, 20, 20), -- Sword of Shadar
+(25756, 5, 20, 20, 20, 20, 20, -13, 189), -- Whip of Shadar
+(25757, 5, 20, 20, 20, 20, 20, -83, 53), -- Soul Collector Acheron
+(25758, 5, 20, 20, 20, 20, 20, -32, 53), -- Soul Slasher
+(25759, 5, 20, 20, 20, 20, 20, -32, 53), -- Soul Strainer
+(25760, 5, 20, 20, 20, 20, 20, -32, 53), -- Lord Ishka
+(25761, 5, 20, 20, 20, 20, 20, -32, 53), -- Ishka's Elite Officer
+(25762, 5, 20, 20, 20, 20, 20, -32, 53), -- Ishka's Elite Soldier
+(25763, 5, 20, 20, 20, 20, 20, -13, 189), -- Demon Kuri
+(25764, 5, 20, 20, 20, 20, 20, -13, 189), -- Kuri's Wife
+(25765, 5, 20, 20, 20, 20, 20, -32, 53), -- Devil Blader of Chaos
+(25766, 0, 0, 20, 20, 20, 20, 20, 20), -- Ancient Drake
+(25767, 0, 0, 20, 20, 20, 20, 20, 20), -- Carnage Lord Gato
+(25768, 0, 0, 20, 20, 20, 20, 20, 20), -- Gato's Marksman
+(25769, 0, 0, 20, 20, 20, 20, 20, 20), -- Gato's Champion
+(25770, 0, 0, 20, 20, 20, 20, 20, 20), -- Ketra Commander Atis
+(25771, 0, 0, 20, 20, 20, 20, 20, 20), -- Ketra Marksman
+(25772, 0, 0, 20, 20, 20, 20, 20, 20), -- Ketra Raider
+(25773, 0, 0, 20, 20, 20, 20, 20, 20), -- Beacon of Blue Sky
+(25774, 5, 20, 20, 20, 20, 20, -32, 53), -- Beacon's Shooter
+(25775, 5, 20, 20, 20, 20, 20, -32, 53), -- Beacon's Warrior
+(25776, 0, 0, 20, 20, 20, 20, 20, 20), -- Earth Protector Panathen
+(25777, 0, 0, 20, 20, 20, 20, 20, 20), -- Panathen's Knight
+(25778, 0, 0, 20, 20, 20, 20, 20, 20), -- Panathen's Protectors
+(25779, 0, 0, 20, 20, 20, 20, 20, 20), -- Betrayer of Urutu Freki
+(25780, 0, 0, 20, 20, 20, 20, 20, 20), -- Freki's Vampire Bat
+(25781, 0, 0, 20, 20, 20, 20, 20, 20), -- Freki's Wild Bear
+(25782, 5, 20, 20, 20, 20, 20, 20, 80), -- Nellis' Vengeful Spirit
+(25783, 5, 20, 20, 20, 20, 20, 20, 103), -- Nellis' Follower
+(25784, 0, 0, 20, 20, 20, 20, 20, 20), -- Rayito the Looter
+(25785, 0, 0, 20, 20, 20, 20, 20, 20), -- Rayito's Henchman
+(25786, 0, 0, 20, 20, 20, 20, 20, 20), -- Rayito's Henchman
+(25787, 0, 0, 20, 20, 20, 20, 20, 20), -- Ketra's Hero Hekaton
+(25788, 0, 0, 20, 20, 20, 20, 20, 20), -- Scout of Hekaton
+(25789, 0, 0, 20, 20, 20, 20, 20, 20), -- Servant of Hekaton
+(25790, 0, 0, 20, 20, 20, 20, 20, 20), -- Varka's Hero Shadith
+(25791, 0, 0, 20, 20, 20, 20, 20, 20), -- Shadith's Royal Guard Captain
+(25792, 0, 0, 20, 20, 20, 20, 20, 20), -- Shadith's Sentinel
+(25793, 5, 20, 20, 20, 20, 20, -83, 53), -- Doom Blade Tanatos
+(25794, 5, 20, 20, 20, 20, 20, -13, 189), -- Kernon
+(25795, 5, 20, 20, 20, 20, 20, -32, 53), -- Taliadon
+(25796, 5, 20, 20, 20, 20, 20, -32, 53), -- Vemsk
+(25797, 0, 0, 20, 20, 20, 20, 20, 20), -- Meanas Anor
+(25798, 0, 0, 20, 20, 20, 20, 20, 20), -- Wyvern of Marsh
+(25799, 5, 20, 20, 20, 20, 20, -13, 189), -- Succubus of Marsh
+(25800, 0, 0, 20, 20, 20, 20, -13, 53), -- Mammon Collector Talos
+(25801, 0, 0, 20, 20, 20, 20, -13, 53), -- Talos' Cohort
 (27001, 0, 0, 20, 20, 20, 20, 20, 20), -- Orc Sniper
 (27002, 0, 0, 20, 20, 20, 20, 20, 20), -- Orc Fighter
 (27003, 0, 0, 20, 20, 20, 20, 20, 20), -- Spirit Of Mirrors
diff --git a/L2J_DataPack_BETA/dist/sql/game/npcaidata.sql b/L2J_DataPack_BETA/dist/sql/game/npcaidata.sql
index 06b7cdc800..575698aa8c 100644
--- a/L2J_DataPack_BETA/dist/sql/game/npcaidata.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/npcaidata.sql
@@ -5670,73 +5670,73 @@ INSERT INTO `npcaidata` VALUES
 (25732, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Beast
 (25733, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Gem Dragon
 (25734, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Parasitic Leech
-(25735, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Fairy Warrior
-(25736, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Fairy Slasher
-(25737, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Fairy Attacker
-(25738, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Satyr Wizard
-(25739, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Satyr Summoner
-(25740, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Satyr Witch
-(25741, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Trichin Defender
-(25742, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Centaur Archer
-(25743, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Beorning Berserker
-(25744, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Double Nightmare
-(25745, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Kimerian
-(25746, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Kimerian Ghost
-(25747, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Kimerian
-(25748, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Fairy Warrior
-(25749, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Fairy Slasher
-(25750, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Fairy Attacker
-(25751, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Satyr Wizard
-(25752, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Satyr Summoner
-(25753, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Satyr Witch
-(25754, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Trichin Defender
-(25755, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Centaur Archer
-(25756, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Beorning Berserker
-(25757, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Double Nightmare
-(25758, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Kimerian
-(25759, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Kimerian Ghost
-(25760, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Turanclass
-(25761, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Georgios
-(25762, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Angelos
-(25763, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Theofanis
-(25764, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Steregos
-(25765, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Beast
-(25766, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Talicrome
-(25767, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Meikaliya
-(25768, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Evangelos
-(25769, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Sotiris
-(25770, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Lazaros
-(25771, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Noctum
-(25772, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Harnak Ghost
-(25773, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Demonic Noctum
-(25774, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Harnak's Evil Spirit
-(25775, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Apherus
-(25776, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Court Guard
-(25777, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Chasseur
-(25778, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Sentry
-(25779, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Spezion
-(25780, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Spezion's Subordinate
-(25781, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Spezion's Subordinate
-(25782, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Spezion's Subordinate
-(25783, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Eyesaroch
-(25784, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Overseer
-(25785, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Teredor
-(25786, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Lachikios
-(25787, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Lachikios
-(25788, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Lachikios
-(25789, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Lachikios
-(25790, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Royal Guard Member
-(25791, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Royal Guard Member
-(25792, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Rachicues
-(25793, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Rachicues
-(25794, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Rachicues
-(25795, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Rachicues
-(25796, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Veridan
-(25797, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Kechi
-(25798, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Kechi's Subordinate
-(25799, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Michaela
-(25800, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Michaela
-(25801, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Teredor
+(25735, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Greyclaw Kutus
+(25736, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Kutus' Guard
+(25737, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Kutus' Pawn
+(25738, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Lead Tracker Sharuk
+(25739, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Sharuk's Minion
+(25740, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Sharuk's Marksman
+(25741, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Sukar Wererat Chief
+(25742, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Sukar Wererat Guard
+(25743, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Sukar Wererat Priest
+(25744, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Ikuntai
+(25745, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Ikuntai's Servitor
+(25746, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Ikuntai's Pawn
+(25747, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Zombie Lord Crowl
+(25748, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 15, "archer"), -- Evil Spirit Archer
+(25749, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Evil Spirit Warrior
+(25750, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Zombie Lord Ferkel
+(25751, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Ferkel's Warrior
+(25752, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Ferkel's Priest
+(25753, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Guillotine Warden
+(25754, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Fire Lord Shadar
+(25755, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Sword of Shadar
+(25756, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Whip of Shadar
+(25757, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "balanced"), -- Soul Collector Acheron
+(25758, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Soul Slasher
+(25759, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Soul Strainer
+(25760, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Lord Ishka
+(25761, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Ishka's Elite Officer
+(25762, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Ishka's Elite Soldier
+(25763, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Demon Kuri
+(25764, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Kuri's Wife
+(25765, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Devil Blader of Chaos
+(25766, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "balanced"), -- Ancient Drake
+(25767, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Carnage Lord Gato
+(25768, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 15, "archer"), -- Gato's Marksman
+(25769, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Gato's Champion
+(25770, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Ketra Commander Atis
+(25771, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 15, "archer"), -- Ketra Marksman
+(25772, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Ketra Raider
+(25773, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Beacon of Blue Sky
+(25774, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 15, "archer"), -- Beacon's Shooter
+(25775, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Beacon's Warrior
+(25776, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Earth Protector Panathen
+(25777, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Panathen's Knight
+(25778, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Panathen's Protectors
+(25779, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Betrayer of Urutu Freki
+(25780, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Freki's Vampire Bat
+(25781, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Freki's Wild Bear
+(25782, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 500, 0, "null", 300, "null", 0, 0, "balanced"), -- Nellis' Vengeful Spirit
+(25783, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Nellis' Follower
+(25784, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 500, 0, "null", 300, "null", 0, 0, "balanced"), -- Rayito the Looter
+(25785, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Rayito's Henchman
+(25786, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Rayito's Henchman
+(25787, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Ketra's Hero Hekaton
+(25788, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 15, "archer"), -- Scout of Hekaton
+(25789, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Servant of Hekaton
+(25790, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Varka's Hero Shadith
+(25791, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Shadith's Royal Guard Captain
+(25792, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Shadith's Sentinel
+(25793, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "balanced"), -- Doom Blade Tanatos
+(25794, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Kernon
+(25795, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Taliadon
+(25796, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Vemsk
+(25797, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Meanas Anor
+(25798, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Wyvern of Marsh
+(25799, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Succubus of Marsh
+(25800, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Mammon Collector Talos
+(25801, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Talos' Cohort
 (27001, 7, 15, 0, 1000, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 15, "archer"), -- Orc Sniper
 (27002, 7, 15, 0, 1000, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Orc Fighter
 (27003, 7, 15, 0, 1000, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Spirit Of Mirrors
diff --git a/L2J_DataPack_BETA/dist/sql/game/npcskills.sql b/L2J_DataPack_BETA/dist/sql/game/npcskills.sql
index 07b1509ba7..7a3a027c28 100644
--- a/L2J_DataPack_BETA/dist/sql/game/npcskills.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/npcskills.sql
@@ -70346,306 +70346,955 @@ INSERT INTO `npcskills` VALUES
 -- Parasitic Leech
 (25734, 4274, 4), -- Blunt Attack Weak Point
 (25734, 5463, 1), -- Water Attacks
--- Fairy Warrior
+-- Greyclaw Kutus
+(25735, 4045, 1), -- Resist Full Magic Attack
+(25735, 4197, 2), -- Hold
+(25735, 4408, 1), -- HP Modifiers
+(25735, 4409, 1), -- MP Modifiers
+(25735, 4410, 11), -- P. Atk. Modifiers
+(25735, 4411, 11), -- M. Atk. Modifiers
+(25735, 4412, 11), -- P. Def. Modifiers
+(25735, 4413, 11), -- M. Def. Modifiers
+(25735, 4414, 2), -- Armor Type
+(25735, 4415, 3), -- Weapon Type
 (25735, 4416, 6), -- Races
 (25735, 4494, 1), -- Raid Boss
 (25735, 4790, 1), -- Raid Boss - Level 23
--- Fairy Slasher
+-- Kutus' Guard
+(25736, 4045, 1), -- Resist Full Magic Attack
+(25736, 4191, 2), -- BOSS Wind Strike
+(25736, 4198, 2), -- Poison
+(25736, 4408, 1), -- HP Modifiers
+(25736, 4409, 1), -- MP Modifiers
+(25736, 4410, 11), -- P. Atk. Modifiers
+(25736, 4411, 11), -- M. Atk. Modifiers
+(25736, 4412, 11), -- P. Def. Modifiers
+(25736, 4413, 11), -- M. Def. Modifiers
 (25736, 4414, 3), -- Armor Type
+(25736, 4415, 3), -- Weapon Type
 (25736, 4416, 6), -- Races
--- Fairy Attacker
+-- Kutus' Pawn
+(25737, 4045, 1), -- Resist Full Magic Attack
+(25737, 4408, 1), -- HP Modifiers
+(25737, 4409, 1), -- MP Modifiers
+(25737, 4410, 11), -- P. Atk. Modifiers
+(25737, 4411, 11), -- M. Atk. Modifiers
+(25737, 4412, 11), -- P. Def. Modifiers
+(25737, 4413, 11), -- M. Def. Modifiers
 (25737, 4414, 3), -- Armor Type
+(25737, 4415, 3), -- Weapon Type
 (25737, 4416, 6), -- Races
--- Satyr Wizard
+(25737, 4727, 2), -- Stun
+-- Lead Tracker Sharuk
+(25738, 4045, 1), -- Resist Full Magic Attack
+(25738, 4408, 1), -- HP Modifiers
+(25738, 4409, 1), -- MP Modifiers
+(25738, 4410, 11), -- P. Atk. Modifiers
+(25738, 4411, 11), -- M. Atk. Modifiers
+(25738, 4412, 11), -- P. Def. Modifiers
+(25738, 4413, 11), -- M. Def. Modifiers
+(25738, 4414, 2), -- Armor Type
+(25738, 4415, 3), -- Weapon Type
 (25738, 4416, 6), -- Races
 (25738, 4494, 1), -- Raid Boss
+(25738, 4743, 2), -- BOSS Strike
 (25738, 4929, 1), -- Raid Boss - Level 23
--- Satyr Summoner
+-- Sharuk's Minion
+(25739, 4045, 1), -- Resist Full Magic Attack
+(25739, 4408, 1), -- HP Modifiers
+(25739, 4409, 1), -- MP Modifiers
+(25739, 4410, 11), -- P. Atk. Modifiers
+(25739, 4411, 11), -- M. Atk. Modifiers
+(25739, 4412, 11), -- P. Def. Modifiers
+(25739, 4413, 11), -- M. Def. Modifiers
 (25739, 4414, 3), -- Armor Type
+(25739, 4415, 3), -- Weapon Type
 (25739, 4416, 6), -- Races
--- Satyr Witch
+-- Sharuk's Marksman
+(25740, 4045, 1), -- Resist Full Magic Attack
+(25740, 4408, 1), -- HP Modifiers
+(25740, 4409, 1), -- MP Modifiers
+(25740, 4410, 11), -- P. Atk. Modifiers
+(25740, 4411, 11), -- M. Atk. Modifiers
+(25740, 4412, 11), -- P. Def. Modifiers
+(25740, 4413, 11), -- M. Def. Modifiers
 (25740, 4414, 3), -- Armor Type
+(25740, 4415, 9), -- Weapon Type
 (25740, 4416, 6), -- Races
--- Trichin Defender
+-- Sukar Wererat Chief
+(25741, 4045, 1), -- Resist Full Magic Attack
+(25741, 4178, 2), -- BOSS Flame Strike
+(25741, 4408, 1), -- HP Modifiers
+(25741, 4409, 1), -- MP Modifiers
+(25741, 4410, 11), -- P. Atk. Modifiers
+(25741, 4411, 11), -- M. Atk. Modifiers
+(25741, 4412, 11), -- P. Def. Modifiers
+(25741, 4413, 11), -- M. Def. Modifiers
+(25741, 4414, 2), -- Armor Type
+(25741, 4415, 7), -- Weapon Type
 (25741, 4416, 6), -- Races
 (25741, 4494, 1), -- Raid Boss
 (25741, 4927, 1), -- Raid Boss - Level 21
--- Centaur Archer
+-- Sukar Wererat Guard
+(25742, 4045, 1), -- Resist Full Magic Attack
+(25742, 4408, 1), -- HP Modifiers
+(25742, 4409, 1), -- MP Modifiers
+(25742, 4410, 11), -- P. Atk. Modifiers
+(25742, 4411, 11), -- M. Atk. Modifiers
+(25742, 4412, 11), -- P. Def. Modifiers
+(25742, 4413, 11), -- M. Def. Modifiers
 (25742, 4414, 3), -- Armor Type
+(25742, 4415, 7), -- Weapon Type
 (25742, 4416, 6), -- Races
--- Beorning Berserker
+(25742, 4733, 2), -- BOSS Mortal Blow
+-- Sukar Wererat Priest
+(25743, 4045, 1), -- Resist Full Magic Attack
+(25743, 4211, 2), -- BOSS Might
+(25743, 4408, 1), -- HP Modifiers
+(25743, 4409, 1), -- MP Modifiers
+(25743, 4410, 11), -- P. Atk. Modifiers
+(25743, 4411, 11), -- M. Atk. Modifiers
+(25743, 4412, 11), -- P. Def. Modifiers
+(25743, 4413, 11), -- M. Def. Modifiers
 (25743, 4414, 3), -- Armor Type
+(25743, 4415, 5), -- Weapon Type
 (25743, 4416, 6), -- Races
--- Double Nightmare
+(25743, 4783, 2), -- BOSS Heal
+-- Ikuntai
+(25744, 4045, 1), -- Resist Full Magic Attack
+(25744, 4178, 2), -- BOSS Flame Strike
 (25744, 4275, 2), -- Sacred Attack Weak Point
 (25744, 4278, 1), -- Dark Attack
+(25744, 4408, 1), -- HP Modifiers
+(25744, 4409, 1), -- MP Modifiers
+(25744, 4410, 11), -- P. Atk. Modifiers
+(25744, 4411, 11), -- M. Atk. Modifiers
+(25744, 4412, 11), -- P. Def. Modifiers
+(25744, 4413, 11), -- M. Def. Modifiers
+(25744, 4414, 2), -- Armor Type
+(25744, 4415, 3), -- Weapon Type
 (25744, 4416, 1), -- Races
 (25744, 4494, 1), -- Raid Boss
 (25744, 4853, 1), -- Raid Boss - Level 25
--- Kimerian
+-- Ikuntai's Servitor
+(25745, 4045, 1), -- Resist Full Magic Attack
+(25745, 4214, 2), -- BOSS Reflect Damage
 (25745, 4278, 1), -- Dark Attack
 (25745, 4333, 5), -- Resist Dark Attack
+(25745, 4408, 1), -- HP Modifiers
+(25745, 4409, 1), -- MP Modifiers
+(25745, 4410, 11), -- P. Atk. Modifiers
+(25745, 4411, 11), -- M. Atk. Modifiers
+(25745, 4412, 11), -- P. Def. Modifiers
+(25745, 4413, 11), -- M. Def. Modifiers
+(25745, 4414, 2), -- Armor Type
+(25745, 4415, 3), -- Weapon Type
 (25745, 4416, 9), -- Races
-(25745, 4780, 1), -- BOSS Heal
--- Kimerian Ghost
+(25745, 4780, 2), -- BOSS Heal
+-- Ikuntai's Pawn
+(25746, 4045, 1), -- Resist Full Magic Attack
 (25746, 4275, 2), -- Sacred Attack Weak Point
 (25746, 4278, 1), -- Dark Attack
+(25746, 4408, 1), -- HP Modifiers
+(25746, 4409, 1), -- MP Modifiers
+(25746, 4410, 11), -- P. Atk. Modifiers
+(25746, 4411, 11), -- M. Atk. Modifiers
+(25746, 4412, 11), -- P. Def. Modifiers
+(25746, 4413, 11), -- M. Def. Modifiers
 (25746, 4414, 3), -- Armor Type
+(25746, 4415, 3), -- Weapon Type
 (25746, 4416, 1), -- Races
--- Kimerian
+-- Zombie Lord Crowl
+(25747, 4045, 1), -- Resist Full Magic Attack
 (25747, 4275, 2), -- Sacred Attack Weak Point
 (25747, 4278, 1), -- Dark Attack
+(25747, 4408, 1), -- HP Modifiers
+(25747, 4409, 1), -- MP Modifiers
+(25747, 4410, 11), -- P. Atk. Modifiers
+(25747, 4411, 11), -- M. Atk. Modifiers
+(25747, 4412, 11), -- P. Def. Modifiers
+(25747, 4413, 11), -- M. Def. Modifiers
+(25747, 4414, 2), -- Armor Type
+(25747, 4415, 1), -- Weapon Type
 (25747, 4416, 1), -- Races
 (25747, 4494, 1), -- Raid Boss
+(25747, 4741, 2), -- BOSS Strike
 (25747, 4846, 1), -- Raid Boss - Level 25
--- Fairy Warrior
+-- Evil Spirit Archer
+(25748, 4045, 1), -- Resist Full Magic Attack
 (25748, 4275, 2), -- Sacred Attack Weak Point
 (25748, 4278, 1), -- Dark Attack
+(25748, 4408, 1), -- HP Modifiers
+(25748, 4409, 1), -- MP Modifiers
+(25748, 4410, 11), -- P. Atk. Modifiers
+(25748, 4411, 11), -- M. Atk. Modifiers
+(25748, 4412, 11), -- P. Def. Modifiers
+(25748, 4413, 11), -- M. Def. Modifiers
 (25748, 4414, 3), -- Armor Type
+(25748, 4415, 9), -- Weapon Type
 (25748, 4416, 1), -- Races
--- Fairy Slasher
+(25748, 4756, 2), -- BOSS Power Shot
+-- Evil Spirit Warrior
+(25749, 4045, 1), -- Resist Full Magic Attack
 (25749, 4275, 2), -- Sacred Attack Weak Point
 (25749, 4278, 1), -- Dark Attack
+(25749, 4408, 1), -- HP Modifiers
+(25749, 4409, 1), -- MP Modifiers
+(25749, 4410, 11), -- P. Atk. Modifiers
+(25749, 4411, 11), -- M. Atk. Modifiers
+(25749, 4412, 11), -- P. Def. Modifiers
+(25749, 4413, 11), -- M. Def. Modifiers
 (25749, 4414, 3), -- Armor Type
+(25749, 4415, 3), -- Weapon Type
 (25749, 4416, 1), -- Races
--- Fairy Attacker
+-- Zombie Lord Ferkel
+(25750, 4045, 1), -- Resist Full Magic Attack
+(25750, 4178, 2), -- BOSS Flame Strike
 (25750, 4273, 3), -- Resist Dagger
 (25750, 4274, 1), -- Blunt Attack Weak Point
 (25750, 4275, 2), -- Sacred Attack Weak Point
 (25750, 4278, 1), -- Dark Attack
+(25750, 4408, 1), -- HP Modifiers
+(25750, 4409, 1), -- MP Modifiers
+(25750, 4410, 11), -- P. Atk. Modifiers
+(25750, 4411, 11), -- M. Atk. Modifiers
+(25750, 4412, 11), -- P. Def. Modifiers
+(25750, 4413, 11), -- M. Def. Modifiers
+(25750, 4414, 2), -- Armor Type
+(25750, 4415, 1), -- Weapon Type
 (25750, 4416, 1), -- Races
 (25750, 4494, 1), -- Raid Boss
 (25750, 4899, 1), -- Raid Boss - Level 20
--- Satyr Wizard
+-- Ferkel's Warrior
+(25751, 4045, 1), -- Resist Full Magic Attack
 (25751, 4273, 3), -- Resist Dagger
 (25751, 4274, 1), -- Blunt Attack Weak Point
 (25751, 4275, 2), -- Sacred Attack Weak Point
 (25751, 4278, 1), -- Dark Attack
+(25751, 4408, 1), -- HP Modifiers
+(25751, 4409, 1), -- MP Modifiers
+(25751, 4410, 11), -- P. Atk. Modifiers
+(25751, 4411, 11), -- M. Atk. Modifiers
+(25751, 4412, 11), -- P. Def. Modifiers
+(25751, 4413, 11), -- M. Def. Modifiers
 (25751, 4414, 3), -- Armor Type
+(25751, 4415, 1), -- Weapon Type
 (25751, 4416, 1), -- Races
--- Satyr Summoner
+(25751, 4743, 1), -- BOSS Strike
+-- Ferkel's Priest
+(25752, 4045, 1), -- Resist Full Magic Attack
+(25752, 4213, 1), -- BOSS Haste
 (25752, 4273, 3), -- Resist Dagger
 (25752, 4274, 1), -- Blunt Attack Weak Point
 (25752, 4275, 2), -- Sacred Attack Weak Point
 (25752, 4278, 1), -- Dark Attack
+(25752, 4408, 1), -- HP Modifiers
+(25752, 4409, 1), -- MP Modifiers
+(25752, 4410, 11), -- P. Atk. Modifiers
+(25752, 4411, 11), -- M. Atk. Modifiers
+(25752, 4412, 11), -- P. Def. Modifiers
+(25752, 4413, 11), -- M. Def. Modifiers
 (25752, 4414, 3), -- Armor Type
+(25752, 4415, 1), -- Weapon Type
 (25752, 4416, 1), -- Races
--- Satyr Witch
+(25752, 4783, 1), -- BOSS Heal
+-- Guillotine Warden
+(25753, 4045, 1), -- Resist Full Magic Attack
+(25753, 4175, 4), -- BOSS Haste
+(25753, 4177, 4), -- BOSS Cancel Magic
 (25753, 4275, 2), -- Sacred Attack Weak Point
 (25753, 4278, 1), -- Dark Attack
+(25753, 4408, 1), -- HP Modifiers
+(25753, 4409, 1), -- MP Modifiers
+(25753, 4410, 11), -- P. Atk. Modifiers
+(25753, 4411, 11), -- M. Atk. Modifiers
+(25753, 4412, 11), -- P. Def. Modifiers
+(25753, 4413, 11), -- M. Def. Modifiers
 (25753, 4414, 3), -- Armor Type
+(25753, 4415, 3), -- Weapon Type
 (25753, 4416, 1), -- Races
 (25753, 4494, 1), -- Raid Boss
+(25753, 4726, 4), -- Stun
+(25753, 4736, 4), -- BOSS Spinning Slash
 (25753, 4833, 1), -- Raid Boss - Level 35
--- Trichin Defender
+-- Fire Lord Shadar
+(25754, 4045, 1), -- Resist Full Magic Attack
+(25754, 4182, 3), -- Poison
+(25754, 4186, 3), -- Hold
+(25754, 4192, 3), -- BOSS HP Drain
 (25754, 4278, 1), -- Dark Attack
 (25754, 4333, 5), -- Resist Dark Attack
+(25754, 4408, 1), -- HP Modifiers
+(25754, 4409, 1), -- MP Modifiers
+(25754, 4410, 11), -- P. Atk. Modifiers
+(25754, 4411, 11), -- M. Atk. Modifiers
+(25754, 4412, 11), -- P. Def. Modifiers
+(25754, 4413, 11), -- M. Def. Modifiers
+(25754, 4414, 2), -- Armor Type
+(25754, 4415, 1), -- Weapon Type
 (25754, 4416, 9), -- Races
 (25754, 4494, 1), -- Raid Boss
 (25754, 4847, 1), -- Raid Boss - Level 35
--- Centaur Archer
+-- Sword of Shadar
+(25755, 4045, 1), -- Resist Full Magic Attack
+(25755, 4408, 1), -- HP Modifiers
+(25755, 4409, 1), -- MP Modifiers
+(25755, 4410, 11), -- P. Atk. Modifiers
+(25755, 4411, 11), -- M. Atk. Modifiers
+(25755, 4412, 11), -- P. Def. Modifiers
+(25755, 4413, 11), -- M. Def. Modifiers
 (25755, 4414, 3), -- Armor Type
+(25755, 4415, 3), -- Weapon Type
 (25755, 4416, 13), -- Races
--- Beorning Berserker
+(25755, 4731, 3), -- BOSS Mortal Blow
+-- Whip of Shadar
+(25756, 4045, 1), -- Resist Full Magic Attack
 (25756, 4278, 1), -- Dark Attack
 (25756, 4333, 5), -- Resist Dark Attack
+(25756, 4408, 1), -- HP Modifiers
+(25756, 4409, 1), -- MP Modifiers
+(25756, 4410, 11), -- P. Atk. Modifiers
+(25756, 4411, 11), -- M. Atk. Modifiers
+(25756, 4412, 11), -- P. Def. Modifiers
+(25756, 4413, 11), -- M. Def. Modifiers
 (25756, 4414, 3), -- Armor Type
+(25756, 4415, 3), -- Weapon Type
 (25756, 4416, 9), -- Races
--- Double Nightmare
+-- Soul Collector Acheron
+(25757, 4045, 1), -- Resist Full Magic Attack
+(25757, 4197, 3), -- Hold
 (25757, 4275, 2), -- Sacred Attack Weak Point
 (25757, 4278, 1), -- Dark Attack
+(25757, 4408, 1), -- HP Modifiers
+(25757, 4409, 1), -- MP Modifiers
+(25757, 4410, 11), -- P. Atk. Modifiers
+(25757, 4411, 11), -- M. Atk. Modifiers
+(25757, 4412, 11), -- P. Def. Modifiers
+(25757, 4413, 11), -- M. Def. Modifiers
+(25757, 4414, 2), -- Armor Type
+(25757, 4415, 5), -- Weapon Type
 (25757, 4416, 9), -- Races
 (25757, 4494, 1), -- Raid Boss
 (25757, 4869, 1), -- Raid Boss - Level 35
--- Kimerian
+-- Soul Slasher
+(25758, 4045, 1), -- Resist Full Magic Attack
+(25758, 4196, 3), -- Decreases Speed
+(25758, 4203, 3), -- Decrease Speed
 (25758, 4275, 2), -- Sacred Attack Weak Point
 (25758, 4278, 1), -- Dark Attack
+(25758, 4408, 1), -- HP Modifiers
+(25758, 4409, 1), -- MP Modifiers
+(25758, 4410, 11), -- P. Atk. Modifiers
+(25758, 4411, 11), -- M. Atk. Modifiers
+(25758, 4412, 11), -- P. Def. Modifiers
+(25758, 4413, 11), -- M. Def. Modifiers
 (25758, 4414, 3), -- Armor Type
+(25758, 4415, 5), -- Weapon Type
 (25758, 4416, 1), -- Races
--- Kimerian Ghost
+-- Soul Strainer
+(25759, 4045, 1), -- Resist Full Magic Attack
 (25759, 4275, 2), -- Sacred Attack Weak Point
 (25759, 4278, 1), -- Dark Attack
+(25759, 4408, 1), -- HP Modifiers
+(25759, 4409, 1), -- MP Modifiers
+(25759, 4410, 11), -- P. Atk. Modifiers
+(25759, 4411, 11), -- M. Atk. Modifiers
+(25759, 4412, 11), -- P. Def. Modifiers
+(25759, 4413, 11), -- M. Def. Modifiers
 (25759, 4414, 3), -- Armor Type
+(25759, 4415, 5), -- Weapon Type
 (25759, 4416, 1), -- Races
--- Turanclass
+(25759, 4727, 3), -- Stun
+-- Lord Ishka
+(25760, 4045, 1), -- Resist Full Magic Attack
+(25760, 4197, 6), -- Hold
 (25760, 4273, 3), -- Resist Dagger
 (25760, 4274, 1), -- Blunt Attack Weak Point
 (25760, 4275, 2), -- Sacred Attack Weak Point
 (25760, 4278, 1), -- Dark Attack
+(25760, 4408, 1), -- HP Modifiers
+(25760, 4409, 1), -- MP Modifiers
+(25760, 4410, 11), -- P. Atk. Modifiers
+(25760, 4411, 11), -- M. Atk. Modifiers
+(25760, 4412, 11), -- P. Def. Modifiers
+(25760, 4413, 11), -- M. Def. Modifiers
+(25760, 4414, 2), -- Armor Type
+(25760, 4415, 3), -- Weapon Type
 (25760, 4416, 1), -- Races
 (25760, 4494, 1), -- Raid Boss
 (25760, 4947, 1), -- Raid Boss - Level 60
--- Georgios
+-- Ishka's Elite Officer
+(25761, 4045, 1), -- Resist Full Magic Attack
 (25761, 4273, 3), -- Resist Dagger
 (25761, 4274, 1), -- Blunt Attack Weak Point
 (25761, 4275, 2), -- Sacred Attack Weak Point
 (25761, 4278, 1), -- Dark Attack
+(25761, 4408, 1), -- HP Modifiers
+(25761, 4409, 1), -- MP Modifiers
+(25761, 4410, 11), -- P. Atk. Modifiers
+(25761, 4411, 11), -- M. Atk. Modifiers
+(25761, 4412, 11), -- P. Def. Modifiers
+(25761, 4413, 11), -- M. Def. Modifiers
 (25761, 4414, 3), -- Armor Type
+(25761, 4415, 7), -- Weapon Type
 (25761, 4416, 1), -- Races
--- Angelos
+(25761, 4733, 5), -- BOSS Mortal Blow
+-- Ishka's Elite Soldier
+(25762, 4045, 1), -- Resist Full Magic Attack
 (25762, 4273, 3), -- Resist Dagger
 (25762, 4274, 1), -- Blunt Attack Weak Point
 (25762, 4275, 2), -- Sacred Attack Weak Point
 (25762, 4278, 1), -- Dark Attack
+(25762, 4408, 1), -- HP Modifiers
+(25762, 4409, 1), -- MP Modifiers
+(25762, 4410, 11), -- P. Atk. Modifiers
+(25762, 4411, 11), -- M. Atk. Modifiers
+(25762, 4412, 11), -- P. Def. Modifiers
+(25762, 4413, 11), -- M. Def. Modifiers
 (25762, 4414, 3), -- Armor Type
+(25762, 4415, 3), -- Weapon Type
 (25762, 4416, 1), -- Races
--- Theofanis
+(25762, 4743, 5), -- BOSS Strike
+-- Demon Kuri
+(25763, 4045, 1), -- Resist Full Magic Attack
+(25763, 4178, 5), -- BOSS Flame Strike
 (25763, 4278, 1), -- Dark Attack
 (25763, 4333, 5), -- Resist Dark Attack
+(25763, 4408, 1), -- HP Modifiers
+(25763, 4409, 1), -- MP Modifiers
+(25763, 4410, 11), -- P. Atk. Modifiers
+(25763, 4411, 11), -- M. Atk. Modifiers
+(25763, 4412, 11), -- P. Def. Modifiers
+(25763, 4413, 11), -- M. Def. Modifiers
+(25763, 4414, 2), -- Armor Type
+(25763, 4415, 3), -- Weapon Type
 (25763, 4416, 9), -- Races
 (25763, 4494, 1), -- Raid Boss
 (25763, 4859, 1), -- Raid Boss - Level 59
--- Steregos
+-- Kuri's Wife
+(25764, 4045, 1), -- Resist Full Magic Attack
+(25764, 4213, 5), -- BOSS Haste
 (25764, 4278, 1), -- Dark Attack
 (25764, 4333, 5), -- Resist Dark Attack
+(25764, 4408, 1), -- HP Modifiers
+(25764, 4409, 1), -- MP Modifiers
+(25764, 4410, 11), -- P. Atk. Modifiers
+(25764, 4411, 11), -- M. Atk. Modifiers
+(25764, 4412, 11), -- P. Def. Modifiers
+(25764, 4413, 11), -- M. Def. Modifiers
+(25764, 4414, 2), -- Armor Type
+(25764, 4415, 3), -- Weapon Type
 (25764, 4416, 9), -- Races
--- Beast
+(25764, 4786, 5), -- BOSS Chant of Life
+-- Devil Blader of Chaos
+(25765, 4045, 1), -- Resist Full Magic Attack
 (25765, 4275, 2), -- Sacred Attack Weak Point
 (25765, 4278, 1), -- Dark Attack
+(25765, 4408, 1), -- HP Modifiers
+(25765, 4409, 1), -- MP Modifiers
+(25765, 4410, 11), -- P. Atk. Modifiers
+(25765, 4411, 11), -- M. Atk. Modifiers
+(25765, 4412, 11), -- P. Def. Modifiers
+(25765, 4413, 11), -- M. Def. Modifiers
+(25765, 4414, 2), -- Armor Type
+(25765, 4415, 3), -- Weapon Type
 (25765, 4416, 1), -- Races
--- Talicrome
+-- Ancient Drake
+(25766, 4045, 1), -- Resist Full Magic Attack
+(25766, 4172, 6), -- Stun
+(25766, 4175, 6), -- BOSS Haste
+(25766, 4177, 6), -- BOSS Cancel Magic
 (25766, 4276, 1), -- Archery Attack Weak Point
+(25766, 4408, 1), -- HP Modifiers
+(25766, 4409, 1), -- MP Modifiers
+(25766, 4410, 11), -- P. Atk. Modifiers
+(25766, 4411, 11), -- M. Atk. Modifiers
+(25766, 4412, 11), -- P. Def. Modifiers
+(25766, 4413, 11), -- M. Def. Modifiers
+(25766, 4414, 2), -- Armor Type
+(25766, 4415, 3), -- Weapon Type
 (25766, 4416, 10), -- Races
 (25766, 4494, 1), -- Raid Boss
+(25766, 4731, 6), -- BOSS Mortal Blow
 (25766, 4874, 1), -- Raid Boss - Level 60
--- Meikaliya
+-- Carnage Lord Gato
+(25767, 4045, 1), -- Resist Full Magic Attack
+(25767, 4408, 1), -- HP Modifiers
+(25767, 4409, 1), -- MP Modifiers
+(25767, 4410, 11), -- P. Atk. Modifiers
+(25767, 4411, 11), -- M. Atk. Modifiers
+(25767, 4412, 11), -- P. Def. Modifiers
+(25767, 4413, 11), -- M. Def. Modifiers
+(25767, 4414, 2), -- Armor Type
+(25767, 4415, 3), -- Weapon Type
 (25767, 4416, 6), -- Races
 (25767, 4494, 1), -- Raid Boss
+(25767, 4741, 5), -- BOSS Strike
 (25767, 4840, 1), -- Raid Boss - Level 50
--- Evangelos
+-- Gato's Marksman
+(25768, 4045, 1), -- Resist Full Magic Attack
+(25768, 4408, 1), -- HP Modifiers
+(25768, 4409, 1), -- MP Modifiers
+(25768, 4410, 11), -- P. Atk. Modifiers
+(25768, 4411, 11), -- M. Atk. Modifiers
+(25768, 4412, 11), -- P. Def. Modifiers
+(25768, 4413, 11), -- M. Def. Modifiers
 (25768, 4414, 3), -- Armor Type
+(25768, 4415, 9), -- Weapon Type
 (25768, 4416, 6), -- Races
--- Sotiris
+(25768, 4761, 4), -- Stun
+-- Gato's Champion
+(25769, 4045, 1), -- Resist Full Magic Attack
+(25769, 4408, 1), -- HP Modifiers
+(25769, 4409, 1), -- MP Modifiers
+(25769, 4410, 11), -- P. Atk. Modifiers
+(25769, 4411, 11), -- M. Atk. Modifiers
+(25769, 4412, 11), -- P. Def. Modifiers
+(25769, 4413, 11), -- M. Def. Modifiers
+(25769, 4414, 2), -- Armor Type
+(25769, 4415, 3), -- Weapon Type
 (25769, 4416, 6), -- Races
--- Lazaros
+-- Ketra Commander Atis
+(25770, 4045, 1), -- Resist Full Magic Attack
+(25770, 4408, 1), -- HP Modifiers
+(25770, 4409, 1), -- MP Modifiers
+(25770, 4410, 11), -- P. Atk. Modifiers
+(25770, 4411, 11), -- M. Atk. Modifiers
+(25770, 4412, 11), -- P. Def. Modifiers
+(25770, 4413, 11), -- M. Def. Modifiers
+(25770, 4414, 2), -- Armor Type
+(25770, 4415, 5), -- Weapon Type
 (25770, 4416, 6), -- Races
 (25770, 4494, 1), -- Raid Boss
+(25770, 4746, 4), -- Stun
 (25770, 4799, 1), -- Raid Boss - Level 49
--- Noctum
+-- Ketra Marksman
+(25771, 4045, 1), -- Resist Full Magic Attack
+(25771, 4408, 1), -- HP Modifiers
+(25771, 4409, 1), -- MP Modifiers
+(25771, 4410, 11), -- P. Atk. Modifiers
+(25771, 4411, 11), -- M. Atk. Modifiers
+(25771, 4412, 11), -- P. Def. Modifiers
+(25771, 4413, 11), -- M. Def. Modifiers
 (25771, 4414, 3), -- Armor Type
+(25771, 4415, 9), -- Weapon Type
 (25771, 4416, 6), -- Races
--- Harnak Ghost
+(25771, 4761, 4), -- Stun
+-- Ketra Raider
+(25772, 4045, 1), -- Resist Full Magic Attack
+(25772, 4408, 1), -- HP Modifiers
+(25772, 4409, 1), -- MP Modifiers
+(25772, 4410, 11), -- P. Atk. Modifiers
+(25772, 4411, 11), -- M. Atk. Modifiers
+(25772, 4412, 11), -- P. Def. Modifiers
+(25772, 4413, 11), -- M. Def. Modifiers
+(25772, 4414, 2), -- Armor Type
+(25772, 4415, 3), -- Weapon Type
 (25772, 4416, 6), -- Races
--- Demonic Noctum
+-- Beacon of Blue Sky
+(25773, 4045, 1), -- Resist Full Magic Attack
+(25773, 4408, 1), -- HP Modifiers
+(25773, 4409, 1), -- MP Modifiers
+(25773, 4410, 11), -- P. Atk. Modifiers
+(25773, 4411, 11), -- M. Atk. Modifiers
+(25773, 4412, 11), -- P. Def. Modifiers
+(25773, 4413, 11), -- M. Def. Modifiers
+(25773, 4414, 2), -- Armor Type
+(25773, 4415, 3), -- Weapon Type
 (25773, 4416, 3), -- Races
 (25773, 4494, 1), -- Raid Boss
+(25773, 4742, 4), -- BOSS Strike
 (25773, 4810, 1), -- Raid Boss - Level 45
--- Harnak's Evil Spirit
+-- Beacon's Shooter
+(25774, 4045, 1), -- Resist Full Magic Attack
 (25774, 4275, 2), -- Sacred Attack Weak Point
 (25774, 4278, 1), -- Dark Attack
+(25774, 4408, 1), -- HP Modifiers
+(25774, 4409, 1), -- MP Modifiers
+(25774, 4410, 11), -- P. Atk. Modifiers
+(25774, 4411, 11), -- M. Atk. Modifiers
+(25774, 4412, 11), -- P. Def. Modifiers
+(25774, 4413, 11), -- M. Def. Modifiers
 (25774, 4414, 3), -- Armor Type
+(25774, 4415, 9), -- Weapon Type
 (25774, 4416, 1), -- Races
--- Apherus
+(25774, 4757, 5), -- BOSS Power Shot
+-- Beacon's Warrior
+(25775, 4045, 1), -- Resist Full Magic Attack
 (25775, 4275, 2), -- Sacred Attack Weak Point
 (25775, 4278, 1), -- Dark Attack
+(25775, 4408, 1), -- HP Modifiers
+(25775, 4409, 1), -- MP Modifiers
+(25775, 4410, 11), -- P. Atk. Modifiers
+(25775, 4411, 11), -- M. Atk. Modifiers
+(25775, 4412, 11), -- P. Def. Modifiers
+(25775, 4413, 11), -- M. Def. Modifiers
+(25775, 4414, 2), -- Armor Type
+(25775, 4415, 3), -- Weapon Type
 (25775, 4416, 1), -- Races
--- Court Guard
+-- Earth Protector Panathen
+(25776, 4045, 1), -- Resist Full Magic Attack
+(25776, 4183, 4), -- Decrease P. Atk.
+(25776, 4189, 4), -- Paralysis
+(25776, 4191, 4), -- BOSS Wind Strike
+(25776, 4408, 1), -- HP Modifiers
+(25776, 4409, 1), -- MP Modifiers
+(25776, 4410, 11), -- P. Atk. Modifiers
+(25776, 4411, 11), -- M. Atk. Modifiers
+(25776, 4412, 11), -- P. Def. Modifiers
+(25776, 4413, 11), -- M. Def. Modifiers
+(25776, 4414, 2), -- Armor Type
+(25776, 4415, 5), -- Weapon Type
 (25776, 4416, 6), -- Races
 (25776, 4494, 1), -- Raid Boss
 (25776, 4863, 1), -- Raid Boss - Level 43
--- Chasseur
+-- Panathen's Knight
+(25777, 4045, 1), -- Resist Full Magic Attack
+(25777, 4408, 1), -- HP Modifiers
+(25777, 4409, 1), -- MP Modifiers
+(25777, 4410, 11), -- P. Atk. Modifiers
+(25777, 4411, 11), -- M. Atk. Modifiers
+(25777, 4412, 11), -- P. Def. Modifiers
+(25777, 4413, 11), -- M. Def. Modifiers
+(25777, 4414, 2), -- Armor Type
+(25777, 4415, 3), -- Weapon Type
 (25777, 4416, 6), -- Races
--- Sentry
+(25777, 4721, 4), -- BOSS Strike
+-- Panathen's Protectors
+(25778, 4045, 1), -- Resist Full Magic Attack
+(25778, 4408, 1), -- HP Modifiers
+(25778, 4409, 1), -- MP Modifiers
+(25778, 4410, 11), -- P. Atk. Modifiers
+(25778, 4411, 11), -- M. Atk. Modifiers
+(25778, 4412, 11), -- P. Def. Modifiers
+(25778, 4413, 11), -- M. Def. Modifiers
 (25778, 4414, 3), -- Armor Type
+(25778, 4415, 9), -- Weapon Type
 (25778, 4416, 6), -- Races
--- Spezion
+-- Betrayer of Urutu Freki
+(25779, 4045, 1), -- Resist Full Magic Attack
+(25779, 4197, 2), -- Hold
+(25779, 4408, 1), -- HP Modifiers
+(25779, 4409, 1), -- MP Modifiers
+(25779, 4410, 11), -- P. Atk. Modifiers
+(25779, 4411, 11), -- M. Atk. Modifiers
+(25779, 4412, 11), -- P. Def. Modifiers
+(25779, 4413, 11), -- M. Def. Modifiers
+(25779, 4414, 2), -- Armor Type
+(25779, 4415, 1), -- Weapon Type
 (25779, 4416, 6), -- Races
 (25779, 4494, 1), -- Raid Boss
 (25779, 4954, 1), -- Raid Boss - Level 25
--- Spezion's Subordinate
+-- Freki's Vampire Bat
+(25780, 4045, 1), -- Resist Full Magic Attack
+(25780, 4408, 1), -- HP Modifiers
+(25780, 4409, 1), -- MP Modifiers
+(25780, 4410, 11), -- P. Atk. Modifiers
+(25780, 4411, 11), -- M. Atk. Modifiers
+(25780, 4412, 11), -- P. Def. Modifiers
+(25780, 4413, 11), -- M. Def. Modifiers
 (25780, 4414, 3), -- Armor Type
+(25780, 4415, 3), -- Weapon Type
 (25780, 4416, 4), -- Races
--- Spezion's Subordinate
+(25780, 4743, 2), -- BOSS Strike
+-- Freki's Wild Bear
+(25781, 4045, 1), -- Resist Full Magic Attack
+(25781, 4408, 1), -- HP Modifiers
+(25781, 4409, 1), -- MP Modifiers
+(25781, 4410, 11), -- P. Atk. Modifiers
+(25781, 4411, 11), -- M. Atk. Modifiers
+(25781, 4412, 11), -- P. Def. Modifiers
+(25781, 4413, 11), -- M. Def. Modifiers
 (25781, 4414, 3), -- Armor Type
+(25781, 4415, 1), -- Weapon Type
 (25781, 4416, 4), -- Races
--- Spezion's Subordinate
+(25781, 4728, 2), -- Stun
+-- Nellis' Vengeful Spirit
+(25782, 4045, 1), -- Resist Full Magic Attack
+(25782, 4197, 3), -- Hold
 (25782, 4278, 1), -- Dark Attack
 (25782, 4333, 3), -- Resist Dark Attack
+(25782, 4408, 1), -- HP Modifiers
+(25782, 4409, 1), -- MP Modifiers
+(25782, 4410, 11), -- P. Atk. Modifiers
+(25782, 4411, 11), -- M. Atk. Modifiers
+(25782, 4412, 11), -- P. Def. Modifiers
+(25782, 4413, 11), -- M. Def. Modifiers
+(25782, 4414, 2), -- Armor Type
+(25782, 4415, 3), -- Weapon Type
 (25782, 4416, 1), -- Races
 (25782, 4494, 1), -- Raid Boss
 (25782, 5026, 1), -- Raid Boss - Level 39
--- Eyesaroch
+-- Nellis' Follower
+(25783, 4045, 1), -- Resist Full Magic Attack
 (25783, 4278, 1), -- Dark Attack
 (25783, 4333, 3), -- Resist Dark Attack
+(25783, 4408, 1), -- HP Modifiers
+(25783, 4409, 1), -- MP Modifiers
+(25783, 4410, 11), -- P. Atk. Modifiers
+(25783, 4411, 11), -- M. Atk. Modifiers
+(25783, 4412, 11), -- P. Def. Modifiers
+(25783, 4413, 11), -- M. Def. Modifiers
 (25783, 4414, 3), -- Armor Type
+(25783, 4415, 3), -- Weapon Type
 (25783, 4416, 1), -- Races
--- Overseer
+(25783, 4723, 3), -- BOSS Strike
+-- Rayito the Looter
+(25784, 4045, 1), -- Resist Full Magic Attack
+(25784, 4197, 3), -- Hold
+(25784, 4408, 1), -- HP Modifiers
+(25784, 4409, 1), -- MP Modifiers
+(25784, 4410, 11), -- P. Atk. Modifiers
+(25784, 4411, 11), -- M. Atk. Modifiers
+(25784, 4412, 11), -- P. Def. Modifiers
+(25784, 4413, 11), -- M. Def. Modifiers
+(25784, 4414, 2), -- Armor Type
+(25784, 4415, 5), -- Weapon Type
 (25784, 4416, 6), -- Races
 (25784, 4494, 1), -- Raid Boss
 (25784, 5027, 1), -- Raid Boss - Level 37
--- Teredor
+-- Rayito's Henchman
+(25785, 4045, 1), -- Resist Full Magic Attack
+(25785, 4408, 1), -- HP Modifiers
+(25785, 4409, 1), -- MP Modifiers
+(25785, 4410, 11), -- P. Atk. Modifiers
+(25785, 4411, 11), -- M. Atk. Modifiers
+(25785, 4412, 11), -- P. Def. Modifiers
+(25785, 4413, 11), -- M. Def. Modifiers
 (25785, 4414, 3), -- Armor Type
+(25785, 4415, 5), -- Weapon Type
 (25785, 4416, 6), -- Races
--- Lachikios
+(25785, 4728, 3), -- Stun
+-- Rayito's Henchman
+(25786, 4045, 1), -- Resist Full Magic Attack
+(25786, 4194, 3), -- BOSS Aura Burn
+(25786, 4202, 3), -- Hold
+(25786, 4408, 1), -- HP Modifiers
+(25786, 4409, 1), -- MP Modifiers
+(25786, 4410, 11), -- P. Atk. Modifiers
+(25786, 4411, 11), -- M. Atk. Modifiers
+(25786, 4412, 11), -- P. Def. Modifiers
+(25786, 4413, 11), -- M. Def. Modifiers
 (25786, 4414, 3), -- Armor Type
+(25786, 4415, 5), -- Weapon Type
 (25786, 4416, 6), -- Races
--- Lachikios
+-- Ketra's Hero Hekaton
+(25787, 4045, 1), -- Resist Full Magic Attack
+(25787, 4408, 1), -- HP Modifiers
+(25787, 4409, 1), -- MP Modifiers
+(25787, 4410, 11), -- P. Atk. Modifiers
+(25787, 4411, 11), -- M. Atk. Modifiers
+(25787, 4412, 11), -- P. Def. Modifiers
+(25787, 4413, 11), -- M. Def. Modifiers
+(25787, 4414, 2), -- Armor Type
+(25787, 4415, 6), -- Weapon Type
 (25787, 4416, 6), -- Races
 (25787, 4494, 1), -- Raid Boss
+(25787, 4746, 9), -- Stun
 (25787, 4903, 1), -- Raid Boss - Level 80
--- Lachikios
+-- Scout of Hekaton
+(25788, 4045, 1), -- Resist Full Magic Attack
+(25788, 4408, 1), -- HP Modifiers
+(25788, 4409, 1), -- MP Modifiers
+(25788, 4410, 11), -- P. Atk. Modifiers
+(25788, 4411, 11), -- M. Atk. Modifiers
+(25788, 4412, 11), -- P. Def. Modifiers
+(25788, 4413, 11), -- M. Def. Modifiers
 (25788, 4414, 3), -- Armor Type
+(25788, 4415, 9), -- Weapon Type
 (25788, 4416, 6), -- Races
--- Lachikios
+-- Servant of Hekaton
+(25789, 4045, 1), -- Resist Full Magic Attack
+(25789, 4408, 1), -- HP Modifiers
+(25789, 4409, 1), -- MP Modifiers
+(25789, 4410, 11), -- P. Atk. Modifiers
+(25789, 4411, 11), -- M. Atk. Modifiers
+(25789, 4412, 11), -- P. Def. Modifiers
+(25789, 4413, 11), -- M. Def. Modifiers
 (25789, 4414, 3), -- Armor Type
+(25789, 4415, 7), -- Weapon Type
 (25789, 4416, 6), -- Races
--- Royal Guard Member
+-- Varka's Hero Shadith
+(25790, 4045, 1), -- Resist Full Magic Attack
+(25790, 4184, 9), -- Decrease Atk. Spd.
+(25790, 4188, 9), -- Bleed
+(25790, 4195, 9), -- BOSS Twister
+(25790, 4408, 1), -- HP Modifiers
+(25790, 4409, 1), -- MP Modifiers
+(25790, 4410, 11), -- P. Atk. Modifiers
+(25790, 4411, 11), -- M. Atk. Modifiers
+(25790, 4412, 11), -- P. Def. Modifiers
+(25790, 4413, 11), -- M. Def. Modifiers
+(25790, 4414, 2), -- Armor Type
+(25790, 4415, 6), -- Weapon Type
 (25790, 4416, 6), -- Races
 (25790, 4494, 1), -- Raid Boss
 (25790, 4907, 1), -- Raid Boss - Level 80
--- Royal Guard Member
+-- Shadith's Royal Guard Captain
+(25791, 4045, 1), -- Resist Full Magic Attack
+(25791, 4408, 1), -- HP Modifiers
+(25791, 4409, 1), -- MP Modifiers
+(25791, 4410, 11), -- P. Atk. Modifiers
+(25791, 4411, 11), -- M. Atk. Modifiers
+(25791, 4412, 11), -- P. Def. Modifiers
+(25791, 4413, 11), -- M. Def. Modifiers
 (25791, 4414, 3), -- Armor Type
+(25791, 4415, 3), -- Weapon Type
 (25791, 4416, 6), -- Races
--- Rachicues
+(25791, 4741, 8), -- BOSS Strike
+-- Shadith's Sentinel
+(25792, 4045, 1), -- Resist Full Magic Attack
+(25792, 4408, 1), -- HP Modifiers
+(25792, 4409, 1), -- MP Modifiers
+(25792, 4410, 11), -- P. Atk. Modifiers
+(25792, 4411, 11), -- M. Atk. Modifiers
+(25792, 4412, 11), -- P. Def. Modifiers
+(25792, 4413, 11), -- M. Def. Modifiers
 (25792, 4414, 3), -- Armor Type
+(25792, 4415, 7), -- Weapon Type
 (25792, 4416, 6), -- Races
--- Rachicues
+-- Doom Blade Tanatos
+(25793, 4045, 1), -- Resist Full Magic Attack
+(25793, 4175, 7), -- BOSS Haste
+(25793, 4177, 7), -- BOSS Cancel Magic
 (25793, 4273, 3), -- Resist Dagger
 (25793, 4274, 1), -- Blunt Attack Weak Point
 (25793, 4275, 2), -- Sacred Attack Weak Point
 (25793, 4278, 1), -- Dark Attack
+(25793, 4408, 1), -- HP Modifiers
+(25793, 4409, 1), -- MP Modifiers
+(25793, 4410, 11), -- P. Atk. Modifiers
+(25793, 4411, 11), -- M. Atk. Modifiers
+(25793, 4412, 11), -- P. Def. Modifiers
+(25793, 4413, 11), -- M. Def. Modifiers
+(25793, 4414, 2), -- Armor Type
+(25793, 4415, 3), -- Weapon Type
 (25793, 4416, 9), -- Races
 (25793, 4494, 1), -- Raid Boss
+(25793, 4720, 7), -- BOSS Strike
+(25793, 4735, 7), -- BOSS Spinning Slash
 (25793, 4880, 1), -- Raid Boss - Level 72
--- Rachicues
+-- Kernon
+(25794, 4045, 1), -- Resist Full Magic Attack
+(25794, 4182, 8), -- Poison
+(25794, 4190, 8), -- Decrease MP
+(25794, 4195, 8), -- BOSS Twister
 (25794, 4278, 1), -- Dark Attack
 (25794, 4333, 5), -- Resist Dark Attack
+(25794, 4408, 1), -- HP Modifiers
+(25794, 4409, 1), -- MP Modifiers
+(25794, 4410, 11), -- P. Atk. Modifiers
+(25794, 4411, 11), -- M. Atk. Modifiers
+(25794, 4412, 11), -- P. Def. Modifiers
+(25794, 4413, 11), -- M. Def. Modifiers
+(25794, 4414, 2), -- Armor Type
+(25794, 4415, 1), -- Weapon Type
 (25794, 4416, 9), -- Races
 (25794, 4494, 1), -- Raid Boss
 (25794, 4809, 1), -- Raid Boss - Level 75
--- Rachicues
+-- Taliadon
+(25795, 4045, 1), -- Resist Full Magic Attack
+(25795, 4168, 7), -- BOSS Power Strike
 (25795, 4275, 2), -- Sacred Attack Weak Point
 (25795, 4278, 1), -- Dark Attack
+(25795, 4408, 1), -- HP Modifiers
+(25795, 4409, 1), -- MP Modifiers
+(25795, 4410, 11), -- P. Atk. Modifiers
+(25795, 4411, 11), -- M. Atk. Modifiers
+(25795, 4412, 11), -- P. Def. Modifiers
+(25795, 4413, 11), -- M. Def. Modifiers
+(25795, 4414, 2), -- Armor Type
+(25795, 4415, 3), -- Weapon Type
 (25795, 4416, 1), -- Races
--- Veridan
+-- Vemsk
+(25796, 4045, 1), -- Resist Full Magic Attack
 (25796, 4275, 2), -- Sacred Attack Weak Point
 (25796, 4278, 1), -- Dark Attack
+(25796, 4408, 1), -- HP Modifiers
+(25796, 4409, 1), -- MP Modifiers
+(25796, 4410, 11), -- P. Atk. Modifiers
+(25796, 4411, 11), -- M. Atk. Modifiers
+(25796, 4412, 11), -- P. Def. Modifiers
+(25796, 4413, 11), -- M. Def. Modifiers
+(25796, 4414, 2), -- Armor Type
+(25796, 4415, 3), -- Weapon Type
 (25796, 4416, 1), -- Races
--- Kechi
+-- Meanas Anor
+(25797, 4045, 1), -- Resist Full Magic Attack
+(25797, 4184, 7), -- Decrease Atk. Spd.
+(25797, 4188, 7), -- Bleed
+(25797, 4195, 7), -- BOSS Twister
+(25797, 4408, 1), -- HP Modifiers
+(25797, 4409, 1), -- MP Modifiers
+(25797, 4410, 11), -- P. Atk. Modifiers
+(25797, 4411, 11), -- M. Atk. Modifiers
+(25797, 4412, 11), -- P. Def. Modifiers
+(25797, 4413, 11), -- M. Def. Modifiers
+(25797, 4414, 2), -- Armor Type
+(25797, 4415, 3), -- Weapon Type
 (25797, 4416, 10), -- Races
 (25797, 4494, 1), -- Raid Boss
 (25797, 4962, 1), -- Raid Boss - Level 70
--- Kechi's Subordinate
+-- Wyvern of Marsh
+(25798, 4045, 1), -- Resist Full Magic Attack
+(25798, 4196, 6), -- Decreases Speed
+(25798, 4204, 6), -- Bleed
+(25798, 4408, 1), -- HP Modifiers
+(25798, 4409, 1), -- MP Modifiers
+(25798, 4410, 11), -- P. Atk. Modifiers
+(25798, 4411, 11), -- M. Atk. Modifiers
+(25798, 4412, 11), -- P. Def. Modifiers
+(25798, 4413, 11), -- M. Def. Modifiers
 (25798, 4414, 3), -- Armor Type
+(25798, 4415, 3), -- Weapon Type
 (25798, 4416, 10), -- Races
--- Michaela
+-- Succubus of Marsh
+(25799, 4045, 1), -- Resist Full Magic Attack
+(25799, 4211, 6), -- BOSS Might
 (25799, 4278, 1), -- Dark Attack
 (25799, 4333, 5), -- Resist Dark Attack
+(25799, 4408, 1), -- HP Modifiers
+(25799, 4409, 1), -- MP Modifiers
+(25799, 4410, 11), -- P. Atk. Modifiers
+(25799, 4411, 11), -- M. Atk. Modifiers
+(25799, 4412, 11), -- P. Def. Modifiers
+(25799, 4413, 11), -- M. Def. Modifiers
 (25799, 4414, 3), -- Armor Type
+(25799, 4415, 1), -- Weapon Type
 (25799, 4416, 9), -- Races
--- Michaela
+(25799, 4780, 6), -- BOSS Heal
+-- Mammon Collector Talos
+(25800, 4045, 1), -- Resist Full Magic Attack
+(25800, 4197, 2), -- Hold
 (25800, 4273, 3), -- Resist Dagger
 (25800, 4274, 1), -- Blunt Attack Weak Point
+(25800, 4408, 1), -- HP Modifiers
+(25800, 4409, 1), -- MP Modifiers
+(25800, 4410, 11), -- P. Atk. Modifiers
+(25800, 4411, 11), -- M. Atk. Modifiers
+(25800, 4412, 11), -- P. Def. Modifiers
+(25800, 4413, 11), -- M. Def. Modifiers
+(25800, 4414, 2), -- Armor Type
+(25800, 4415, 1), -- Weapon Type
 (25800, 4416, 9), -- Races
 (25800, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (25800, 4494, 1), -- Raid Boss
 (25800, 4983, 1), -- Raid Boss - Level 25
--- Teredor
+-- Talos' Cohort
+(25801, 4045, 1), -- Resist Full Magic Attack
 (25801, 4273, 3), -- Resist Dagger
 (25801, 4274, 1), -- Blunt Attack Weak Point
+(25801, 4408, 1), -- HP Modifiers
+(25801, 4409, 1), -- MP Modifiers
+(25801, 4410, 11), -- P. Atk. Modifiers
+(25801, 4411, 11), -- M. Atk. Modifiers
+(25801, 4412, 11), -- P. Def. Modifiers
+(25801, 4413, 11), -- M. Def. Modifiers
 (25801, 4414, 3), -- Armor Type
+(25801, 4415, 1), -- Weapon Type
 (25801, 4416, 9), -- Races
 (25801, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
+(25801, 4743, 2), -- BOSS Strike
 -- Orc Sniper
 (27001, 4408, 1), -- HP Modifiers
 (27001, 4409, 1), -- MP Modifiers
diff --git a/L2J_DataPack_BETA/dist/sql/game/spawnlist.sql b/L2J_DataPack_BETA/dist/sql/game/spawnlist.sql
index 8ebe5d763b..9cc6976c44 100644
--- a/L2J_DataPack_BETA/dist/sql/game/spawnlist.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/spawnlist.sql
@@ -45735,4 +45735,79 @@ INSERT INTO `spawnlist` VALUES
 ("aden10_2420_20", 1, 20645, 165376, 87033, -2370, 0, 0, 7788, 23, 0, 0, 0),
 ("aden10_2420_20", 1, 20645, 164615, 73136, -3108, 0, 0, 31985, 23, 0, 0, 0),
 ("aden10_2420_20", 1, 20645, 165796, 81166, -2046, 0, 0, 10525, 23, 0, 0, 0),
-("aden10_2420_20", 1, 20645, 165993, 88314, -2370, 0, 0, 12693, 23, 0, 0, 0);
\ No newline at end of file
+("aden10_2420_20", 1, 20645, 165993, 88314, -2370, 0, 0, 12693, 23, 0, 0, 0);
+
+---- Altars of Sacrifice
+INSERT INTO `spawnlist` VALUES
+-- TalkingIsland
+("unset", 1, 4327, -92545, 244590, -3547, 0, 0, 12868, 0, 0, 0, 0),
+("unset", 1, 4328, -92657, 244716, -3547, 0, 0, 48184, 0, 0, 0, 0),
+("unset", 1, 4328, -92383, 244642, -3547, 0, 0, 5431, 0, 0, 0, 0),
+-- Elven
+("unset", 1, 4327, 40120, 53784, -3336, 0, 0, 32768, 0, 0, 0, 0),
+("unset", 1, 4328, 40280, 53784, -3328, 0, 0, 0, 0, 0, 0, 0),
+("unset", 1, 4328, 40056, 53944, -3329, 0, 0, 40961, 0, 0, 0, 0),
+-- DarkElf
+("unset", 1, 4327, 1828, 21917, -3345, 0, 0, 49730, 0, 0, 0, 0),
+("unset", 1, 4328, 1970, 21840, -3348, 0, 0, 56189, 0, 0, 0, 0),
+("unset", 1, 4328, 1703, 21815, -3348, 0, 0, 40172, 0, 0, 0, 0),
+-- Dwarven
+("unset", 1, 4327, 130140, -181200, -3315, 0, 0, 16383, 0, 0, 0, 0),
+("unset", 1, 4328, 129995, -181099, -3313, 0, 0, 24575, 0, 0, 0, 0),
+("unset", 1, 4328, 130285, -181110, -3313, 0, 0, 58144, 0, 0, 0, 0),
+-- Orc
+("unset", 1, 4327, -45559, -118327, -208, 0, 0, 64163, 0, 0, 0, 0),
+("unset", 1, 4328, -45482, -118196, -208, 0, 0, 38012, 0, 0, 0, 0),
+("unset", 1, 4328, -45460, -118477, -208, 0, 0, 55285, 0, 0, 0, 0),
+-- Kamael
+("unset", 1, 4327, -104260, 45060, -1464, 0, 0, 0, 0, 0, 0, 0),
+("unset", 1, 4328, -104153, 45196, -1459, 0, 0, 7128, 0, 0, 0, 0),
+("unset", 1, 4328, -104175, 44925, -1459, 0, 0, 51751, 0, 0, 0, 0),
+-- Oren
+("unset", 1, 4327, 80188, 46822, -3155, 0, 0, 16001, 0, 0, 0, 0),
+("unset", 1, 4328, 80049, 46907, -3152, 0, 0, 27657, 0, 0, 0, 0),
+("unset", 1, 4328, 80341, 46907, -3154, 0, 0, 64381, 0, 0, 0, 0),
+-- Gludin
+("unset", 1, 4327, -86687, 151321, -3059, 0, 0, 11094, 0, 0, 0, 0),
+("unset", 1, 4328, -86780, 151449, -3059, 0, 0, 21042, 0, 0, 0, 0),
+("unset", 1, 4328, -86521, 151365, -3059, 0, 0, 990, 0, 0, 0, 0),
+-- Gludio
+("unset", 1, 4327, -14362, 120670, -2979, 0, 0, 64381, 0, 0, 0, 0),
+("unset", 1, 4328, -14285, 120814, -2977, 0, 0, 10030, 0, 0, 0, 0),
+("unset", 1, 4328, -14294, 120545, -2977, 0, 0, 60910, 0, 0, 0, 0),
+-- Dion
+("unset", 1, 4327, 16941, 148369, -3262, 0, 0, 35178, 0, 0, 0, 0),
+("unset", 1, 4328, 16866, 148215, -3252, 0, 0, 40411, 0, 0, 0, 0),
+("unset", 1, 4328, 16826, 148487, -3253, 0, 0, 26941, 0, 0, 0, 0),
+-- Heine
+("unset", 1, 4327, 119897, 219161, -3371, 0, 0, 0, 0, 0, 0, 0),
+("unset", 1, 4328, 119990, 219321, -3360, 0, 0, 34731, 0, 0, 0, 0),
+("unset", 1, 4328, 119989, 219015, -3360, 0, 0, 51929, 0, 0, 0, 0),
+-- Giran
+("unset", 1, 4327, 80932, 142538, -3532, 0, 0, 32219, 0, 0, 0, 0),
+("unset", 1, 4328, 80843, 142395, -3531, 0, 0, 42017, 0, 0, 0, 0),
+("unset", 1, 4328, 80848, 142674, -3530, 0, 0, 26153, 0, 0, 0, 0),
+-- Aden
+("unset", 1, 4327, 152721, 24487, -2125, 0, 0, 15438, 0, 0, 0, 0),
+("unset", 1, 4328, 152592, 24585, -2095, 0, 0, 9346, 0, 0, 0, 0),
+("unset", 1, 4328, 152850, 24585, -2125, 0, 0, 45091, 0, 0, 0, 0),
+-- Rune
+("unset", 1, 4327, 28006, -49397, -1319, 0, 0, 15229, 0, 0, 0, 0),
+("unset", 1, 4328, 27875, -49312, -1317, 0, 0, 52676, 0, 0, 0, 0),
+("unset", 1, 4328, 28150, -49302, -1320, 0, 0, 6133, 0, 0, 0, 0),
+-- Goddard
+("unset", 1, 4327, 152295, -57933, -3423, 0, 0, 15304, 0, 0, 0, 0),
+("unset", 1, 4328, 152154, -57836, -3423, 0, 0, 22458, 0, 0, 0, 0),
+("unset", 1, 4328, 152427, -57820, -3423, 0, 0, 2015, 0, 0, 0, 0),
+-- Schutgart
+("unset", 1, 4327, 82065, -139196, -2262, 0, 0, 48051, 0, 0, 0, 0),
+("unset", 1, 4328, 82204, -139283, -2262, 0, 0, 18191, 0, 0, 0, 0),
+("unset", 1, 4328, 81923, -139285, -2262, 0, 0, 31822, 0, 0, 0, 0),
+-- Primeval
+("unset", 1, 4327, 10812, -24193, -3644, 0, 0, 5844, 0, 0, 0, 0),
+("unset", 1, 4328, 10823, -24045, -3644, 0, 0, 10305, 0, 0, 0, 0),
+("unset", 1, 4328, 10964, -24256, -3644, 0, 0, 767, 0, 0, 0, 0),
+-- Dragon Valley
+("unset", 1, 4327, 69403, 118816, -3459, 0, 0, 58824, 0, 0, 0, 0),
+("unset", 1, 4328, 69549, 118880, -3460, 0, 0, 64074, 0, 0, 0, 0),
+("unset", 1, 4328, 69403, 118653, -3460, 0, 0, 41572, 0, 0, 0, 0);
\ No newline at end of file
-- 
GitLab