Sync with L2jOrg and various adjustments.

This commit is contained in:
MobiusDevelopment
2019-10-10 09:57:48 +00:00
parent 0b9d2b8173
commit 8e6f33bc41
349 changed files with 31442 additions and 25115 deletions

View File

@@ -3,8 +3,8 @@ We are the <font color="LEVEL">Dimensional Merchants</font>. Get your Dimensiona
Oh, we are also upgrading products from the past L2Store, so exchange them as well.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest DimensionalMerchant getDimensonalItem">"I want a Dimensional Item."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest DimensionalMerchant 32478-01.html">"I want to exchange a Minion Coupon or Rose Spirit Coupon Pack for a Minion pet."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_package_deposit" msg="1040"><font color="LEVEL">"I want to transfer a Dimensional Item to another character on the same account."</font></Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h npc_%objectId%_package_withdraw"><font color="LEVEL">"I want to withdraw a transferred Dimensional Item."</font></Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest DimensionalMerchant package_deposit" msg="1040"><font color="LEVEL">"I want to transfer a Dimensional Item to another character on the same account."</font></Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest DimensionalMerchant package_withdraw"><font color="LEVEL">"I want to withdraw a transferred Dimensional Item."</font></Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest DimensionalMerchant 32478-20.html">"I want to exchange a Vitality item or XP Buff."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest DimensionalMerchant 32478-21.html">"I want to know about the Power Shirt."</Button>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest DimensionalMerchant 32478-22.html">"I have an Exchange Coupon."</Button>

View File

@@ -22,15 +22,23 @@ import org.l2jmobius.gameserver.handler.IItemHandler;
import org.l2jmobius.gameserver.handler.ItemHandler;
import org.l2jmobius.gameserver.model.actor.Npc;
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
import org.l2jmobius.gameserver.model.events.EventType;
import org.l2jmobius.gameserver.model.events.ListenerRegisterType;
import org.l2jmobius.gameserver.model.events.annotations.RegisterEvent;
import org.l2jmobius.gameserver.model.events.annotations.RegisterType;
import org.l2jmobius.gameserver.model.events.impl.creature.player.OnPlayerBypass;
import org.l2jmobius.gameserver.model.itemcontainer.PlayerFreight;
import org.l2jmobius.gameserver.model.items.instance.ItemInstance;
import org.l2jmobius.gameserver.network.SystemMessageId;
import org.l2jmobius.gameserver.network.serverpackets.ExGetPremiumItemList;
import org.l2jmobius.gameserver.network.serverpackets.PackageToList;
import org.l2jmobius.gameserver.network.serverpackets.WareHouseWithdrawalList;
import ai.AbstractNpcAI;
/**
* Dimensional Merchant AI.
* @author St3eT
* @author St3eT, Mobius
*/
public class DimensionalMerchant extends AbstractNpcAI
{
@@ -43,9 +51,10 @@ public class DimensionalMerchant extends AbstractNpcAI
private static final int SUP_MINION_COUPON_EV = 14074; // Superior Minion Coupon (Event) - 5-hour
private static final int ENH_MINION_COUPON = 20914; // Enhanced Rose Spirit Coupon (5-hour)
private static final int ENH_MINION_COUPON_EV = 22240; // Enhanced Rose Spirit Coupon (5-hour) - Event
// Misc
// Others
private static final String COMMAND_BYPASS = "Quest DimensionalMerchant ";
private static final HashMap<String, Integer> MINION_EXCHANGE = new HashMap<>();
static
{
// Normal
MINION_EXCHANGE.put("whiteWeasel", 13017); // White Weasel Minion Necklace
@@ -76,7 +85,6 @@ public class DimensionalMerchant extends AbstractNpcAI
public String onAdvEvent(String event, Npc npc, PlayerInstance player)
{
String htmltext = null;
switch (event)
{
case "32478.html":
@@ -144,6 +152,43 @@ public class DimensionalMerchant extends AbstractNpcAI
htmltext = giveMinion(player, event, ENH_MINION_COUPON, ENH_MINION_COUPON_EV);
break;
}
case "package_deposit":
{
if (player.getAccountChars().size() < 1)
{
player.sendPacket(SystemMessageId.THAT_CHARACTER_DOES_NOT_EXIST);
}
else
{
player.sendPacket(new PackageToList(player.getAccountChars()));
}
break;
}
case "package_withdraw":
{
final PlayerFreight freight = player.getFreight();
if (freight != null)
{
if (freight.getSize() > 0)
{
player.setActiveWarehouse(freight);
for (ItemInstance i : player.getActiveWarehouse().getItems())
{
if (i.isTimeLimitedItem() && (i.getRemainingTime() <= 0))
{
player.getActiveWarehouse().destroyItem("ItemInstance", i, player, null);
}
}
player.sendPacket(new WareHouseWithdrawalList(1, player, WareHouseWithdrawalList.FREIGHT));
player.sendPacket(new WareHouseWithdrawalList(2, player, WareHouseWithdrawalList.FREIGHT));
}
else
{
player.sendPacket(SystemMessageId.YOU_HAVE_NOT_DEPOSITED_ANY_ITEMS_IN_YOUR_WAREHOUSE);
}
}
break;
}
}
return htmltext;
}
@@ -166,6 +211,17 @@ public class DimensionalMerchant extends AbstractNpcAI
return "32478-07.html";
}
@RegisterEvent(EventType.ON_PLAYER_BYPASS)
@RegisterType(ListenerRegisterType.GLOBAL_PLAYERS)
public void OnPlayerBypass(OnPlayerBypass event)
{
final PlayerInstance player = event.getPlayer();
if (event.getCommand().startsWith(COMMAND_BYPASS))
{
notifyEvent(event.getCommand().replace(COMMAND_BYPASS, ""), null, player);
}
}
public static void main(String[] args)
{
new DimensionalMerchant();

View File

@@ -90,12 +90,7 @@
<class classId="116" name="Doom Cryer" parentClassId="52" />
<class classId="117" name="Fortune Seeker" parentClassId="55" />
<class classId="118" name="Maestro" parentClassId="57" />
<!-- NPCs -->
<class classId="119" name="World Trap" />
<class classId="120" name="Player Trap" />
<class classId="121" name="Double Ghost" />
<class classId="122" name="Siege Attacker" />
<!-- Third Classes Kamael -->
<!-- Kamael -->
<class classId="123" name="Male Kamael Soldier" />
<class classId="124" name="Female Kamael Soldier" />
<class classId="125" name="Trooper" parentClassId="123" />
@@ -155,9 +150,9 @@
<class classId="179" name="Aeore Cardinal" parentClassId="97" />
<class classId="180" name="Aeore Eva's Saint" parentClassId="105" />
<class classId="181" name="Aeore Shillien Saint" parentClassId="112" />
<!-- Etheria -->
<class classId="182" name="Etheria Fighter" />
<class classId="183" name="Etheria Wizard" />
<!-- Ertheia -->
<class classId="182" name="Ertheia Fighter" />
<class classId="183" name="Ertheia Wizard" />
<class classId="184" name="Marauder" parentClassId="182" />
<class classId="185" name="Cloud Breaker" parentClassId="183" />
<class classId="186" name="Ripper" parentClassId="184" />

View File

@@ -1497,7 +1497,7 @@
<height normal="10" />
</collision>
</npc>
<npc id="13591" level="85" type="L2Npc" name="Greater Virgo Agathion Charm">
<npc id="13591" level="85" type="Npc" name="Greater Virgo Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1516,7 +1516,7 @@
<height normal="5.15" />
</collision>
</npc>
<npc id="13592" level="85" type="L2Npc" name="Greater Capricorn Agathion Charm">
<npc id="13592" level="85" type="Npc" name="Greater Capricorn Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1535,7 +1535,7 @@
<height normal="5.15" />
</collision>
</npc>
<npc id="13593" level="85" type="L2Npc" name="Greater Libra Agathion Charm">
<npc id="13593" level="85" type="Npc" name="Greater Libra Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1554,7 +1554,7 @@
<height normal="5.15" />
</collision>
</npc>
<npc id="13594" level="85" type="L2Npc" name="Greater Aries Agathion Charm">
<npc id="13594" level="85" type="Npc" name="Greater Aries Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1573,7 +1573,7 @@
<height normal="5.15" />
</collision>
</npc>
<npc id="13595" level="85" type="L2Npc" name="Greater Taurus Agathion Charm">
<npc id="13595" level="85" type="Npc" name="Greater Taurus Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1592,7 +1592,7 @@
<height normal="5.15" />
</collision>
</npc>
<npc id="13596" level="85" type="L2Npc" name="Greater Leo Agathion Charm">
<npc id="13596" level="85" type="Npc" name="Greater Leo Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1611,7 +1611,7 @@
<height normal="5.15" />
</collision>
</npc>
<npc id="13597" level="85" type="L2Npc" name="Greater Gemini Agathion Charm">
<npc id="13597" level="85" type="Npc" name="Greater Gemini Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1630,7 +1630,7 @@
<height normal="5.15" />
</collision>
</npc>
<npc id="13598" level="85" type="L2Npc" name="Greater Scorpio Agathion Charm">
<npc id="13598" level="85" type="Npc" name="Greater Scorpio Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1649,7 +1649,7 @@
<height normal="5.15" />
</collision>
</npc>
<npc id="13599" level="85" type="L2Npc" name="Greater Aquarius Agathion Charm">
<npc id="13599" level="85" type="Npc" name="Greater Aquarius Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/npcs.xsd">
<npc id="13600" level="85" type="L2Npc" name="Greater Pisces Agathion Charm">
<npc id="13600" level="85" type="Npc" name="Greater Pisces Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -19,7 +19,7 @@
<height normal="5.15" />
</collision>
</npc>
<npc id="13601" level="85" type="L2Npc" name="Greater Sagittarius Agathion Charm">
<npc id="13601" level="85" type="Npc" name="Greater Sagittarius Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -38,7 +38,7 @@
<height normal="5.15" />
</collision>
</npc>
<npc id="13602" level="85" type="L2Npc" name="Greater Cancer Agathion Charm">
<npc id="13602" level="85" type="Npc" name="Greater Cancer Agathion Charm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>

View File

@@ -1538,7 +1538,7 @@
<height normal="23.5" />
</collision>
</npc>
<npc id="15250" level="85" type="L2Npc" name="Blood Panther">
<npc id="15250" level="85" type="Npc" name="Blood Panther">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1557,7 +1557,7 @@
<height normal="14.5" />
</collision>
</npc>
<npc id="15251" level="85" type="L2Npc" name="Blood Panther">
<npc id="15251" level="85" type="Npc" name="Blood Panther">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1576,7 +1576,7 @@
<height normal="14.5" />
</collision>
</npc>
<npc id="15252" level="85" type="L2Npc" name="Feline Queen">
<npc id="15252" level="85" type="Npc" name="Feline Queen">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1596,7 +1596,7 @@
<height normal="15" />
</collision>
</npc>
<npc id="15253" level="85" type="L2Npc" name="Feline Queen">
<npc id="15253" level="85" type="Npc" name="Feline Queen">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1616,7 +1616,7 @@
<height normal="15" />
</collision>
</npc>
<npc id="15254" level="85" type="L2Npc" name="Seraphim the Unicorn">
<npc id="15254" level="85" type="Npc" name="Seraphim the Unicorn">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1636,7 +1636,7 @@
<height normal="25.5" />
</collision>
</npc>
<npc id="15255" level="85" type="L2Npc" name="Seraphim the Unicorn">
<npc id="15255" level="85" type="Npc" name="Seraphim the Unicorn">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1656,7 +1656,7 @@
<height normal="25.5" />
</collision>
</npc>
<npc id="15256" level="85" type="L2Npc" name="Soulless">
<npc id="15256" level="85" type="Npc" name="Soulless">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1676,7 +1676,7 @@
<height normal="33" />
</collision>
</npc>
<npc id="15257" level="85" type="L2Npc" name="Soulless">
<npc id="15257" level="85" type="Npc" name="Soulless">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>

View File

@@ -784,7 +784,7 @@
<skill id="32727" level="3" /> <!-- Fafurion's Arrogance - Stage 3 -->
</skillList>
</npc>
<npc id="19741" level="85" type="L2Npc" name="Sticky Mushroom">
<npc id="19741" level="85" type="Npc" name="Sticky Mushroom">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -803,7 +803,7 @@
<height normal="0.1" />
</collision>
</npc>
<npc id="19742" level="85" type="L2Npc" name="Herb Effect">
<npc id="19742" level="85" type="Npc" name="Herb Effect">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -822,7 +822,7 @@
<height normal="0.1" />
</collision>
</npc>
<npc id="19743" level="85" type="L2Npc" name="">
<npc id="19743" level="85" type="Npc" name="">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -841,7 +841,7 @@
<height normal="0.1" />
</collision>
</npc>
<npc id="19744" level="85" type="L2Npc" name="Pa'agrio Orc Hero">
<npc id="19744" level="85" type="Npc" name="Pa'agrio Orc Hero">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -861,7 +861,7 @@
<height normal="49" />
</collision>
</npc>
<npc id="19745" level="85" type="L2Npc" name="Pa'agrio Orc">
<npc id="19745" level="85" type="Npc" name="Pa'agrio Orc">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>

View File

@@ -1315,7 +1315,7 @@
</lucky>
</dropLists>
</npc>
<npc id="24330" level="85" type="L2Npc" name="Ice Knight">
<npc id="24330" level="85" type="Npc" name="Ice Knight">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1334,7 +1334,7 @@
<height normal="31" />
</collision>
</npc>
<npc id="24331" level="85" type="L2Npc" name="Klacias">
<npc id="24331" level="85" type="Npc" name="Klacias">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1353,7 +1353,7 @@
<height normal="67.5" />
</collision>
</npc>
<npc id="24332" level="85" type="L2Npc" name="Icy Breath">
<npc id="24332" level="85" type="Npc" name="Icy Breath">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1372,7 +1372,7 @@
<height normal="50" />
</collision>
</npc>
<npc id="24333" level="85" type="L2Npc" name="Freya">
<npc id="24333" level="85" type="Npc" name="Freya">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1391,7 +1391,7 @@
<height normal="55" />
</collision>
</npc>
<npc id="24334" level="85" type="L2Npc" name="Tanta Lizardman Scout">
<npc id="24334" level="85" type="Npc" name="Tanta Lizardman Scout">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1411,7 +1411,7 @@
<height normal="35" />
</collision>
</npc>
<npc id="24335" level="85" type="L2Npc" name="Tanta Lizardman Warrior">
<npc id="24335" level="85" type="Npc" name="Tanta Lizardman Warrior">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1431,7 +1431,7 @@
<height normal="40" />
</collision>
</npc>
<npc id="24336" level="85" type="L2Npc" name="Tanta Lizardman Soldier">
<npc id="24336" level="85" type="Npc" name="Tanta Lizardman Soldier">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1450,7 +1450,7 @@
<height normal="40.25" />
</collision>
</npc>
<npc id="24337" level="85" type="L2Npc" name="Tanta Lizardman Berserker">
<npc id="24337" level="85" type="Npc" name="Tanta Lizardman Berserker">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1469,7 +1469,7 @@
<height normal="37.5" />
</collision>
</npc>
<npc id="24338" level="85" type="L2Npc" name="Tanta Lizardman Archer">
<npc id="24338" level="85" type="Npc" name="Tanta Lizardman Archer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1488,7 +1488,7 @@
<height normal="40.25" />
</collision>
</npc>
<npc id="24339" level="85" type="L2Npc" name="Tanta Lizardman Wizard">
<npc id="24339" level="85" type="Npc" name="Tanta Lizardman Wizard">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1508,7 +1508,7 @@
<height normal="35" />
</collision>
</npc>
<npc id="24340" level="85" type="L2Npc" name="Tanta Lizardman Summoner">
<npc id="24340" level="85" type="Npc" name="Tanta Lizardman Summoner">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1527,7 +1527,7 @@
<height normal="44" />
</collision>
</npc>
<npc id="24341" level="85" type="L2Npc" name="Tanta Lizardman Guard" title="Ugoros' Escort">
<npc id="24341" level="85" type="Npc" name="Tanta Lizardman Guard" title="Ugoros' Escort">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1547,7 +1547,7 @@
<height normal="35" />
</collision>
</npc>
<npc id="24342" level="85" type="L2Npc" name="Priest Ugoros" title="Tanta Lizardmen">
<npc id="24342" level="85" type="Npc" name="Priest Ugoros" title="Tanta Lizardmen">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1566,7 +1566,7 @@
<height normal="81.75" />
</collision>
</npc>
<npc id="24343" level="85" type="L2Npc" name="Sel Mahum Drill Sergeant">
<npc id="24343" level="85" type="Npc" name="Sel Mahum Drill Sergeant">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1585,7 +1585,7 @@
<height normal="31.5" />
</collision>
</npc>
<npc id="24344" level="85" type="L2Npc" name="Sel Mahum Training Officer">
<npc id="24344" level="85" type="Npc" name="Sel Mahum Training Officer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1604,7 +1604,7 @@
<height normal="33.5" />
</collision>
</npc>
<npc id="24345" level="85" type="L2Npc" name="Sel Mahum Drill Sergeant">
<npc id="24345" level="85" type="Npc" name="Sel Mahum Drill Sergeant">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1623,7 +1623,7 @@
<height normal="37" />
</collision>
</npc>
<npc id="24346" level="85" type="L2Npc" name="Sel Mahum Drill Sergeant">
<npc id="24346" level="85" type="Npc" name="Sel Mahum Drill Sergeant">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1642,7 +1642,7 @@
<height normal="31" />
</collision>
</npc>
<npc id="24347" level="85" type="L2Npc" name="Sel Mahum Warrior">
<npc id="24347" level="85" type="Npc" name="Sel Mahum Warrior">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1661,7 +1661,7 @@
<height normal="37" />
</collision>
</npc>
<npc id="24348" level="85" type="L2Npc" name="Sel Mahum Recruit">
<npc id="24348" level="85" type="Npc" name="Sel Mahum Recruit">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1680,7 +1680,7 @@
<height normal="31.5" />
</collision>
</npc>
<npc id="24349" level="85" type="L2Npc" name="Sel Mahum Soldier">
<npc id="24349" level="85" type="Npc" name="Sel Mahum Soldier">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1699,7 +1699,7 @@
<height normal="33.5" />
</collision>
</npc>
<npc id="24350" level="85" type="L2Npc" name="Sel Mahum Recruit">
<npc id="24350" level="85" type="Npc" name="Sel Mahum Recruit">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1718,7 +1718,7 @@
<height normal="37" />
</collision>
</npc>
<npc id="24351" level="85" type="L2Npc" name="Sel Mahum Soldier">
<npc id="24351" level="85" type="Npc" name="Sel Mahum Soldier">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1737,7 +1737,7 @@
<height normal="37" />
</collision>
</npc>
<npc id="24352" level="85" type="L2Npc" name="Sel Mahum Recruit">
<npc id="24352" level="85" type="Npc" name="Sel Mahum Recruit">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1756,7 +1756,7 @@
<height normal="31" />
</collision>
</npc>
<npc id="24353" level="85" type="L2Npc" name="Sel Mahum Soldier">
<npc id="24353" level="85" type="Npc" name="Sel Mahum Soldier">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1775,7 +1775,7 @@
<height normal="31" />
</collision>
</npc>
<npc id="24354" level="85" type="L2Npc" name="Sel Mahum Squad Leader">
<npc id="24354" level="85" type="Npc" name="Sel Mahum Squad Leader">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1794,7 +1794,7 @@
<height normal="31.5" />
</collision>
</npc>
<npc id="24355" level="85" type="L2Npc" name="Sel Mahum Squad Leader">
<npc id="24355" level="85" type="Npc" name="Sel Mahum Squad Leader">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1813,7 +1813,7 @@
<height normal="37" />
</collision>
</npc>
<npc id="24356" level="85" type="L2Npc" name="Sel Mahum Squad Leader">
<npc id="24356" level="85" type="Npc" name="Sel Mahum Squad Leader">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1832,7 +1832,7 @@
<height normal="31" />
</collision>
</npc>
<npc id="24357" level="85" type="L2Npc" name="Keltron" title="Sel Mahum Chief">
<npc id="24357" level="85" type="Npc" name="Keltron" title="Sel Mahum Chief">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1851,7 +1851,7 @@
<height normal="51.75" />
</collision>
</npc>
<npc id="24358" level="85" type="L2Npc" name="Keltron's Guard" title="Keltron's Minion">
<npc id="24358" level="85" type="Npc" name="Keltron's Guard" title="Keltron's Minion">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1870,7 +1870,7 @@
<height normal="37" />
</collision>
</npc>
<npc id="24359" level="85" type="L2Npc" name="Fury Tier Weiss">
<npc id="24359" level="85" type="Npc" name="Fury Tier Weiss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1889,7 +1889,7 @@
<height normal="28" />
</collision>
</npc>
<npc id="24360" level="85" type="L2Npc" name="Fury Tier Blanc">
<npc id="24360" level="85" type="Npc" name="Fury Tier Blanc">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1908,7 +1908,7 @@
<height normal="28" />
</collision>
</npc>
<npc id="24361" level="85" type="L2Npc" name="Fury Sylph Album">
<npc id="24361" level="85" type="Npc" name="Fury Sylph Album">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1927,7 +1927,7 @@
<height normal="40" />
</collision>
</npc>
<npc id="24362" level="85" type="L2Npc" name="Fury Tier Nero">
<npc id="24362" level="85" type="Npc" name="Fury Tier Nero">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1946,7 +1946,7 @@
<height normal="28" />
</collision>
</npc>
<npc id="24363" level="85" type="L2Npc" name="Fury Sylph Melan">
<npc id="24363" level="85" type="Npc" name="Fury Sylph Melan">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1965,7 +1965,7 @@
<height normal="40" />
</collision>
</npc>
<npc id="24364" level="85" type="L2Npc" name="Fury Harpy Schvar">
<npc id="24364" level="85" type="Npc" name="Fury Harpy Schvar">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1984,7 +1984,7 @@
<height normal="27" />
</collision>
</npc>
<npc id="24365" level="85" type="L2Npc" name="Sel Mahum Chef">
<npc id="24365" level="85" type="Npc" name="Sel Mahum Chef">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2003,7 +2003,7 @@
<height normal="32.5" />
</collision>
</npc>
<npc id="24366" level="85" type="L2Npc" name="Priest of Purification" title="Zariche">
<npc id="24366" level="85" type="Npc" name="Priest of Purification" title="Zariche">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2022,7 +2022,7 @@
<height normal="36.5" />
</collision>
</npc>
<npc id="24367" level="85" type="L2Npc" name="Priest of Purification" title="Zariche">
<npc id="24367" level="85" type="Npc" name="Priest of Purification" title="Zariche">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2041,7 +2041,7 @@
<height normal="36.5" />
</collision>
</npc>
<npc id="24368" level="85" type="L2Npc" name="Priest of Purification" title="Akamanah">
<npc id="24368" level="85" type="Npc" name="Priest of Purification" title="Akamanah">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2060,7 +2060,7 @@
<height normal="36.5" />
</collision>
</npc>
<npc id="24369" level="85" type="L2Npc" name="Priest of Purification" title="Akamanah">
<npc id="24369" level="85" type="Npc" name="Priest of Purification" title="Akamanah">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2079,7 +2079,7 @@
<height normal="36.5" />
</collision>
</npc>
<npc id="24370" level="85" type="L2Npc" name="Zariche's Treasure Chest">
<npc id="24370" level="85" type="Npc" name="Zariche's Treasure Chest">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2098,7 +2098,7 @@
<height normal="45" />
</collision>
</npc>
<npc id="24371" level="85" type="L2Npc" name="Akamanah's Treasure Chest">
<npc id="24371" level="85" type="Npc" name="Akamanah's Treasure Chest">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2117,7 +2117,7 @@
<height normal="45" />
</collision>
</npc>
<npc id="24372" level="85" type="L2Npc" name="Crokian Lad">
<npc id="24372" level="85" type="Npc" name="Crokian Lad">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2137,7 +2137,7 @@
<height normal="32.2" />
</collision>
</npc>
<npc id="24373" level="85" type="L2Npc" name="Dailaon Lad">
<npc id="24373" level="85" type="Npc" name="Dailaon Lad">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2157,7 +2157,7 @@
<height normal="31.1" />
</collision>
</npc>
<npc id="24374" level="85" type="L2Npc" name="Crokian Lad Warrior" title="Watcher of Alligator Island">
<npc id="24374" level="85" type="Npc" name="Crokian Lad Warrior" title="Watcher of Alligator Island">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2177,7 +2177,7 @@
<height normal="48.2" />
</collision>
</npc>
<npc id="24375" level="85" type="L2Npc" name="Farhite Lad">
<npc id="24375" level="85" type="Npc" name="Farhite Lad">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2197,7 +2197,7 @@
<height normal="34.4" />
</collision>
</npc>
<npc id="24376" level="85" type="L2Npc" name="Nos Lad">
<npc id="24376" level="85" type="Npc" name="Nos Lad">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2217,7 +2217,7 @@
<height normal="35.25" />
</collision>
</npc>
<npc id="24377" level="85" type="L2Npc" name="Swamp Tribe" title="Lord of Alligator Island">
<npc id="24377" level="85" type="Npc" name="Swamp Tribe" title="Lord of Alligator Island">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2237,7 +2237,7 @@
<height normal="65" />
</collision>
</npc>
<npc id="24378" level="85" type="L2Npc" name="Swamp Alligator">
<npc id="24378" level="85" type="Npc" name="Swamp Alligator">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2257,7 +2257,7 @@
<height normal="32.2" />
</collision>
</npc>
<npc id="24379" level="85" type="L2Npc" name="Swamp Warrior">
<npc id="24379" level="85" type="Npc" name="Swamp Warrior">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2277,7 +2277,7 @@
<height normal="31.1" />
</collision>
</npc>
<npc id="24380" level="85" type="L2Npc" name="Nasty Eye">
<npc id="24380" level="85" type="Npc" name="Nasty Eye">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2296,7 +2296,7 @@
<height normal="43" />
</collision>
</npc>
<npc id="24381" level="85" type="L2Npc" name="Nasty Buggle">
<npc id="24381" level="85" type="Npc" name="Nasty Buggle">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2315,7 +2315,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="24382" level="85" type="L2Npc" name="Nasty Zombie">
<npc id="24382" level="85" type="Npc" name="Nasty Zombie">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2334,7 +2334,7 @@
<height normal="27.5" />
</collision>
</npc>
<npc id="24383" level="85" type="L2Npc" name="Nasty Zombie Lord">
<npc id="24383" level="85" type="Npc" name="Nasty Zombie Lord">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2353,7 +2353,7 @@
<height normal="21" />
</collision>
</npc>
<npc id="24384" level="85" type="L2Npc" name="Carcass Bat">
<npc id="24384" level="85" type="Npc" name="Carcass Bat">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2372,7 +2372,7 @@
<height normal="33.5" />
</collision>
</npc>
<npc id="24385" level="85" type="L2Npc" name="Vampire">
<npc id="24385" level="85" type="Npc" name="Vampire">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2392,7 +2392,7 @@
<height normal="21.5" />
</collision>
</npc>
<npc id="24386" level="85" type="L2Npc" name="Skeleton Scout">
<npc id="24386" level="85" type="Npc" name="Skeleton Scout">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2411,7 +2411,7 @@
<height normal="22" />
</collision>
</npc>
<npc id="24387" level="85" type="L2Npc" name="Skeleton Archer">
<npc id="24387" level="85" type="Npc" name="Skeleton Archer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2431,7 +2431,7 @@
<height normal="27" />
</collision>
</npc>
<npc id="24388" level="85" type="L2Npc" name="Skeleton Warrior">
<npc id="24388" level="85" type="Npc" name="Skeleton Warrior">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2451,7 +2451,7 @@
<height normal="25" />
</collision>
</npc>
<npc id="24389" level="85" type="L2Npc" name="Spartoi Soldier">
<npc id="24389" level="85" type="Npc" name="Spartoi Soldier">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2471,7 +2471,7 @@
<height normal="27" />
</collision>
</npc>
<npc id="24390" level="85" type="L2Npc" name="Raging Spartoi">
<npc id="24390" level="85" type="Npc" name="Raging Spartoi">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2491,7 +2491,7 @@
<height normal="27" />
</collision>
</npc>
<npc id="24391" level="85" type="L2Npc" name="Sobbing Windra">
<npc id="24391" level="85" type="Npc" name="Sobbing Windra">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2510,7 +2510,7 @@
<height normal="35" />
</collision>
</npc>
<npc id="24392" level="85" type="L2Npc" name="Whispering Windra">
<npc id="24392" level="85" type="Npc" name="Whispering Windra">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2529,7 +2529,7 @@
<height normal="35" />
</collision>
</npc>
<npc id="24393" level="85" type="L2Npc" name="Giggling Windra">
<npc id="24393" level="85" type="Npc" name="Giggling Windra">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2548,7 +2548,7 @@
<height normal="35" />
</collision>
</npc>
<npc id="24394" level="85" type="L2Npc" name="Fear Ratel">
<npc id="24394" level="85" type="Npc" name="Fear Ratel">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2567,7 +2567,7 @@
<height normal="15" />
</collision>
</npc>
<npc id="24395" level="85" type="L2Npc" name="Fear Ratel Robust">
<npc id="24395" level="85" type="Npc" name="Fear Ratel Robust">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2586,7 +2586,7 @@
<height normal="15" />
</collision>
</npc>
<npc id="24396" level="85" type="L2Npc" name="Fear Growler">
<npc id="24396" level="85" type="Npc" name="Fear Growler">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2605,7 +2605,7 @@
<height normal="17" />
</collision>
</npc>
<npc id="24397" level="85" type="L2Npc" name="Fear Growler Evolved">
<npc id="24397" level="85" type="Npc" name="Fear Growler Evolved">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2624,7 +2624,7 @@
<height normal="27" />
</collision>
</npc>
<npc id="24398" level="85" type="L2Npc" name="Fear Growler Robust">
<npc id="24398" level="85" type="Npc" name="Fear Growler Robust">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -2643,7 +2643,7 @@
<height normal="17" />
</collision>
</npc>
<npc id="24399" level="85" type="L2Npc" name="Fussy Leaf">
<npc id="24399" level="85" type="Npc" name="Fussy Leaf">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/npcs.xsd">
<npc id="24400" level="85" type="L2Npc" name="Fussy Arbor">
<npc id="24400" level="85" type="Npc" name="Fussy Arbor">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -19,7 +19,7 @@
<height normal="90" />
</collision>
</npc>
<npc id="24401" level="85" type="L2Npc" name="Tiny Windima">
<npc id="24401" level="85" type="Npc" name="Tiny Windima">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -38,7 +38,7 @@
<height normal="21.5" />
</collision>
</npc>
<npc id="24402" level="85" type="L2Npc" name="Giant Windima">
<npc id="24402" level="85" type="Npc" name="Giant Windima">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -57,7 +57,7 @@
<height normal="47" />
</collision>
</npc>
<npc id="24403" level="85" type="L2Npc" name="Turek War Hound">
<npc id="24403" level="85" type="Npc" name="Turek War Hound">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -76,7 +76,7 @@
<height normal="17.5" />
</collision>
</npc>
<npc id="24404" level="85" type="L2Npc" name="Turek Orc Footman">
<npc id="24404" level="85" type="Npc" name="Turek Orc Footman">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -96,7 +96,7 @@
<height normal="21" />
</collision>
</npc>
<npc id="24405" level="85" type="L2Npc" name="Turek Orc Archer">
<npc id="24405" level="85" type="Npc" name="Turek Orc Archer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -116,7 +116,7 @@
<height normal="25" />
</collision>
</npc>
<npc id="24406" level="85" type="L2Npc" name="Turek Orc Skirmisher">
<npc id="24406" level="85" type="Npc" name="Turek Orc Skirmisher">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -136,7 +136,7 @@
<height normal="22" />
</collision>
</npc>
<npc id="24407" level="85" type="L2Npc" name="Turek Orc Prefect">
<npc id="24407" level="85" type="Npc" name="Turek Orc Prefect">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -156,7 +156,7 @@
<height normal="23" />
</collision>
</npc>
<npc id="24408" level="85" type="L2Npc" name="Turek Orc Priest">
<npc id="24408" level="85" type="Npc" name="Turek Orc Priest">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -176,7 +176,7 @@
<height normal="22" />
</collision>
</npc>
<npc id="24409" level="85" type="L2Npc" name="Ketra Orc Raider">
<npc id="24409" level="85" type="Npc" name="Ketra Orc Raider">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -196,7 +196,7 @@
<height normal="24" />
</collision>
</npc>
<npc id="24410" level="85" type="L2Npc" name="Ketra Orc Warrior">
<npc id="24410" level="85" type="Npc" name="Ketra Orc Warrior">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -216,7 +216,7 @@
<height normal="24" />
</collision>
</npc>
<npc id="24411" level="85" type="L2Npc" name="Ketra Orc Scout">
<npc id="24411" level="85" type="Npc" name="Ketra Orc Scout">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -236,7 +236,7 @@
<height normal="27" />
</collision>
</npc>
<npc id="24412" level="85" type="L2Npc" name="Ketra Orc Priest">
<npc id="24412" level="85" type="Npc" name="Ketra Orc Priest">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -256,7 +256,7 @@
<height normal="23" />
</collision>
</npc>
<npc id="24413" level="85" type="L2Npc" name="Ketra Orc Officer">
<npc id="24413" level="85" type="Npc" name="Ketra Orc Officer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -276,7 +276,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="24414" level="85" type="L2Npc" name="Ketra Orc Captain">
<npc id="24414" level="85" type="Npc" name="Ketra Orc Captain">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -296,7 +296,7 @@
<height normal="38.5" />
</collision>
</npc>
<npc id="24415" level="85" type="L2Npc" name="Breka Orc Scout">
<npc id="24415" level="85" type="Npc" name="Breka Orc Scout">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -316,7 +316,7 @@
<height normal="20" />
</collision>
</npc>
<npc id="24416" level="85" type="L2Npc" name="Breka Orc Scout Captain">
<npc id="24416" level="85" type="Npc" name="Breka Orc Scout Captain">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -336,7 +336,7 @@
<height normal="24" />
</collision>
</npc>
<npc id="24417" level="85" type="L2Npc" name="Breka Orc Archer">
<npc id="24417" level="85" type="Npc" name="Breka Orc Archer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -356,7 +356,7 @@
<height normal="21.5" />
</collision>
</npc>
<npc id="24418" level="85" type="L2Npc" name="Breka Orc Shaman">
<npc id="24418" level="85" type="Npc" name="Breka Orc Shaman">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -375,7 +375,7 @@
<height normal="28.5" />
</collision>
</npc>
<npc id="24419" level="85" type="L2Npc" name="Breka Orc Slaughterer">
<npc id="24419" level="85" type="Npc" name="Breka Orc Slaughterer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -395,7 +395,7 @@
<height normal="33" />
</collision>
</npc>
<npc id="24420" level="85" type="L2Npc" name="Breka Orc Prefect" title="Lord of Breka's Stronghold">
<npc id="24420" level="85" type="Npc" name="Breka Orc Prefect" title="Lord of Breka's Stronghold">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -414,7 +414,7 @@
<height normal="36.5" />
</collision>
</npc>
<npc id="24421" level="85" type="L2Npc" name="Stone Gargoyle">
<npc id="24421" level="85" type="Npc" name="Stone Gargoyle">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -433,7 +433,7 @@
<height normal="50" />
</collision>
</npc>
<npc id="24422" level="85" type="L2Npc" name="Stone Golem">
<npc id="24422" level="85" type="Npc" name="Stone Golem">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -452,7 +452,7 @@
<height normal="31" />
</collision>
</npc>
<npc id="24423" level="85" type="L2Npc" name="Monster Eye">
<npc id="24423" level="85" type="Npc" name="Monster Eye">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -471,7 +471,7 @@
<height normal="43" />
</collision>
</npc>
<npc id="24424" level="85" type="L2Npc" name="Gargoyle Hunter">
<npc id="24424" level="85" type="Npc" name="Gargoyle Hunter">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -490,7 +490,7 @@
<height normal="65" />
</collision>
</npc>
<npc id="24425" level="85" type="L2Npc" name="Steel Golem">
<npc id="24425" level="85" type="Npc" name="Steel Golem">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -509,7 +509,7 @@
<height normal="34" />
</collision>
</npc>
<npc id="24426" level="85" type="L2Npc" name="Stone Cube" title="Lord of Ivory Tower Crater">
<npc id="24426" level="85" type="Npc" name="Stone Cube" title="Lord of Ivory Tower Crater">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -528,7 +528,7 @@
<height normal="35" />
</collision>
</npc>
<npc id="24427" level="85" type="L2Npc" name="Fury Tier Nero">
<npc id="24427" level="85" type="Npc" name="Fury Tier Nero">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -547,7 +547,7 @@
<height normal="28" />
</collision>
</npc>
<npc id="24428" level="85" type="L2Npc" name="Fury Sylph Melan">
<npc id="24428" level="85" type="Npc" name="Fury Sylph Melan">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -566,7 +566,7 @@
<height normal="40" />
</collision>
</npc>
<npc id="24429" level="85" type="L2Npc" name="Fury Sylph Album">
<npc id="24429" level="85" type="Npc" name="Fury Sylph Album">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -585,7 +585,7 @@
<height normal="40" />
</collision>
</npc>
<npc id="24430" level="85" type="L2Npc" name="Fury Harpy Schvar">
<npc id="24430" level="85" type="Npc" name="Fury Harpy Schvar">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -604,7 +604,7 @@
<height normal="27" />
</collision>
</npc>
<npc id="24431" level="85" type="L2Npc" name="Fury Harpe">
<npc id="24431" level="85" type="Npc" name="Fury Harpe">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -623,7 +623,7 @@
<height normal="43" />
</collision>
</npc>
<npc id="24432" level="85" type="L2Npc" name="Fury Harpy Queen" title="Goddess of Storm">
<npc id="24432" level="85" type="Npc" name="Fury Harpy Queen" title="Goddess of Storm">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -642,7 +642,7 @@
<height normal="43" />
</collision>
</npc>
<npc id="24436" level="85" type="L2Npc" name="Deinonychus">
<npc id="24436" level="85" type="Npc" name="Deinonychus">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -661,7 +661,7 @@
<height normal="14.3" />
</collision>
</npc>
<npc id="24437" level="85" type="L2Npc" name="Ornithomimus">
<npc id="24437" level="85" type="Npc" name="Ornithomimus">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -680,7 +680,7 @@
<height normal="37.2" />
</collision>
</npc>
<npc id="24438" level="85" type="L2Npc" name="Velociraptor">
<npc id="24438" level="85" type="Npc" name="Velociraptor">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -699,7 +699,7 @@
<height normal="47.2" />
</collision>
</npc>
<npc id="24439" level="85" type="L2Npc" name="Pachycephalosaurus">
<npc id="24439" level="85" type="Npc" name="Pachycephalosaurus">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -718,7 +718,7 @@
<height normal="40" />
</collision>
</npc>
<npc id="24440" level="85" type="L2Npc" name="Pterosaur">
<npc id="24440" level="85" type="Npc" name="Pterosaur">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -737,7 +737,7 @@
<height normal="43.7" />
</collision>
</npc>
<npc id="24441" level="85" type="L2Npc" name="Tyrannosaurus" title="Primeval Tyrant">
<npc id="24441" level="85" type="Npc" name="Tyrannosaurus" title="Primeval Tyrant">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -756,7 +756,7 @@
<height normal="70" />
</collision>
</npc>
<npc id="24445" level="85" type="L2Npc" name="Lizardman Rogue">
<npc id="24445" level="85" type="Npc" name="Lizardman Rogue">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -775,7 +775,7 @@
<height normal="40.25" />
</collision>
</npc>
<npc id="24446" level="85" type="L2Npc" name="Island Guardian">
<npc id="24446" level="85" type="Npc" name="Island Guardian">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -794,7 +794,7 @@
<height normal="16" />
</collision>
</npc>
<npc id="24447" level="85" type="L2Npc" name="Niasis">
<npc id="24447" level="85" type="Npc" name="Niasis">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -814,7 +814,7 @@
<height normal="27.5" />
</collision>
</npc>
<npc id="24448" level="85" type="L2Npc" name="Lizardman Archer">
<npc id="24448" level="85" type="Npc" name="Lizardman Archer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -833,7 +833,7 @@
<height normal="40.25" />
</collision>
</npc>
<npc id="24449" level="85" type="L2Npc" name="Lizardman Warrior">
<npc id="24449" level="85" type="Npc" name="Lizardman Warrior">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -852,7 +852,7 @@
<height normal="37.5" />
</collision>
</npc>
<npc id="24450" level="85" type="L2Npc" name="Lizardmen Wizard">
<npc id="24450" level="85" type="Npc" name="Lizardmen Wizard">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -871,7 +871,7 @@
<height normal="53.5" />
</collision>
</npc>
<npc id="24451" level="85" type="L2Npc" name="Lizardmen Defender" title="Lord of Isle of Prayer">
<npc id="24451" level="85" type="Npc" name="Lizardmen Defender" title="Lord of Isle of Prayer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -890,7 +890,7 @@
<height normal="57.75" />
</collision>
</npc>
<npc id="24452" level="85" type="L2Npc" name="Doom Soldier">
<npc id="24452" level="85" type="Npc" name="Doom Soldier">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -909,7 +909,7 @@
<height normal="41" />
</collision>
</npc>
<npc id="24453" level="85" type="L2Npc" name="Doom Servant">
<npc id="24453" level="85" type="Npc" name="Doom Servant">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -928,7 +928,7 @@
<height normal="41" />
</collision>
</npc>
<npc id="24454" level="85" type="L2Npc" name="Doom Berserker">
<npc id="24454" level="85" type="Npc" name="Doom Berserker">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -947,7 +947,7 @@
<height normal="51" />
</collision>
</npc>
<npc id="24455" level="85" type="L2Npc" name="Doom Seer">
<npc id="24455" level="85" type="Npc" name="Doom Seer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -966,7 +966,7 @@
<height normal="51" />
</collision>
</npc>
<npc id="24457" level="85" type="L2Npc" name="Marsh Vampire Rogue">
<npc id="24457" level="85" type="Npc" name="Marsh Vampire Rogue">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -985,7 +985,7 @@
<height normal="28.5" />
</collision>
</npc>
<npc id="24458" level="85" type="L2Npc" name="Marsh Vampire Warrior">
<npc id="24458" level="85" type="Npc" name="Marsh Vampire Warrior">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1004,7 +1004,7 @@
<height normal="37" />
</collision>
</npc>
<npc id="24459" level="85" type="L2Npc" name="Marsh Vampire Wizard">
<npc id="24459" level="85" type="Npc" name="Marsh Vampire Wizard">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1023,7 +1023,7 @@
<height normal="32" />
</collision>
</npc>
<npc id="24460" level="85" type="L2Npc" name="Marsh Vampire Shooter">
<npc id="24460" level="85" type="Npc" name="Marsh Vampire Shooter">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1043,7 +1043,7 @@
<height normal="26" />
</collision>
</npc>
<npc id="24461" level="85" type="L2Npc" name="Forest Ghost">
<npc id="24461" level="85" type="Npc" name="Forest Ghost">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1062,7 +1062,7 @@
<height normal="21" />
</collision>
</npc>
<npc id="24462" level="85" type="L2Npc" name="Bewildered Expedition Member">
<npc id="24462" level="85" type="Npc" name="Bewildered Expedition Member">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1081,7 +1081,7 @@
<height normal="33.4" />
</collision>
</npc>
<npc id="24463" level="85" type="L2Npc" name="Bewildered Patrol">
<npc id="24463" level="85" type="Npc" name="Bewildered Patrol">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1101,7 +1101,7 @@
<height normal="31.45" />
</collision>
</npc>
<npc id="24464" level="85" type="L2Npc" name="Bewildered Dwarf Adventurer">
<npc id="24464" level="85" type="Npc" name="Bewildered Dwarf Adventurer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1120,7 +1120,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="24465" level="85" type="L2Npc" name="Forest Evil Spirit">
<npc id="24465" level="85" type="Npc" name="Forest Evil Spirit">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1139,7 +1139,7 @@
<height normal="52" />
</collision>
</npc>
<npc id="24466" level="85" type="L2Npc" name="Demonic Mirror" title="Emperor of the Forest of Mirrors">
<npc id="24466" level="85" type="Npc" name="Demonic Mirror" title="Emperor of the Forest of Mirrors">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1158,7 +1158,7 @@
<height normal="79.5" />
</collision>
</npc>
<npc id="24470" level="85" type="L2Npc" name="Kamael Traitor">
<npc id="24470" level="85" type="Npc" name="Kamael Traitor">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1178,7 +1178,7 @@
<height normal="24" />
</collision>
</npc>
<npc id="24471" level="85" type="L2Npc" name="Kamael Renegade">
<npc id="24471" level="85" type="Npc" name="Kamael Renegade">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1198,7 +1198,7 @@
<height normal="24" />
</collision>
</npc>
<npc id="24472" level="85" type="L2Npc" name="Trained Monkey">
<npc id="24472" level="85" type="Npc" name="Trained Monkey">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1218,7 +1218,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="24473" level="85" type="L2Npc" name="Dwarf Grave Robber">
<npc id="24473" level="85" type="Npc" name="Dwarf Grave Robber">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1238,7 +1238,7 @@
<height normal="20" />
</collision>
</npc>
<npc id="24474" level="85" type="L2Npc" name="Muertos Outlaw">
<npc id="24474" level="85" type="Npc" name="Muertos Outlaw">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1258,7 +1258,7 @@
<height normal="24.5" />
</collision>
</npc>
<npc id="24475" level="85" type="L2Npc" name="Orc Raider">
<npc id="24475" level="85" type="Npc" name="Orc Raider">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1278,7 +1278,7 @@
<height normal="26.5" />
</collision>
</npc>
<npc id="24480" level="85" type="L2Npc" name="Dragon Legionary">
<npc id="24480" level="85" type="Npc" name="Dragon Legionary">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1298,7 +1298,7 @@
<height normal="42" />
</collision>
</npc>
<npc id="24481" level="85" type="L2Npc" name="Dragon Peltast">
<npc id="24481" level="85" type="Npc" name="Dragon Peltast">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1318,7 +1318,7 @@
<height normal="36" />
</collision>
</npc>
<npc id="24482" level="85" type="L2Npc" name="Dragon Officer">
<npc id="24482" level="85" type="Npc" name="Dragon Officer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1337,7 +1337,7 @@
<height normal="39.5" />
</collision>
</npc>
<npc id="24483" level="85" type="L2Npc" name="Dragon Centurion">
<npc id="24483" level="85" type="Npc" name="Dragon Centurion">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1357,7 +1357,7 @@
<height normal="33" />
</collision>
</npc>
<npc id="24484" level="85" type="L2Npc" name="Dragon Elite Guard">
<npc id="24484" level="85" type="Npc" name="Dragon Elite Guard">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1376,7 +1376,7 @@
<height normal="55" />
</collision>
</npc>
<npc id="24485" level="85" type="L2Npc" name="Behemoth Dragon" title="Emperor of the Dragon Valley">
<npc id="24485" level="85" type="Npc" name="Behemoth Dragon" title="Emperor of the Dragon Valley">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>

View File

@@ -586,7 +586,7 @@
<height normal="72" />
</collision>
</npc>
<npc id="26427" level="85" type="L2Npc" name="Gigantic Golden Pig" title="Raid Boss">
<npc id="26427" level="85" type="Npc" name="Gigantic Golden Pig" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -605,7 +605,7 @@
<height normal="120.75" />
</collision>
</npc>
<npc id="26431" level="85" type="L2Npc" name="Avenger Alusion" title="Raid Boss">
<npc id="26431" level="85" type="Npc" name="Avenger Alusion" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -624,7 +624,7 @@
<height normal="92.2" />
</collision>
</npc>
<npc id="26432" level="85" type="L2Npc" name="Avenger Graff" title="Raid Boss">
<npc id="26432" level="85" type="Npc" name="Avenger Graff" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -643,7 +643,7 @@
<height normal="85.4" />
</collision>
</npc>
<npc id="26433" level="85" type="L2Npc" name="Demon Venoma" title="Raid Boss">
<npc id="26433" level="85" type="Npc" name="Demon Venoma" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -663,7 +663,7 @@
<height normal="56" />
</collision>
</npc>
<npc id="26434" level="85" type="L2Npc" name="Fiend Sarboth" title="Raid Boss">
<npc id="26434" level="85" type="Npc" name="Fiend Sarboth" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -682,7 +682,7 @@
<height normal="68" />
</collision>
</npc>
<npc id="26435" level="85" type="L2Npc" name="Watcher Tristan" title="Raid Boss">
<npc id="26435" level="85" type="Npc" name="Watcher Tristan" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -701,7 +701,7 @@
<height normal="71.4" />
</collision>
</npc>
<npc id="26436" level="85" type="L2Npc" name="Watcher Setheth" title="Raid Boss">
<npc id="26436" level="85" type="Npc" name="Watcher Setheth" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -720,7 +720,7 @@
<height normal="67.5" />
</collision>
</npc>
<npc id="26437" level="85" type="L2Npc" name="Berserker Zetahl" title="Raid Boss">
<npc id="26437" level="85" type="Npc" name="Berserker Zetahl" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -739,7 +739,7 @@
<height normal="40.8" />
</collision>
</npc>
<npc id="26438" level="85" type="L2Npc" name="Berserker Tabris" title="Raid Boss">
<npc id="26438" level="85" type="Npc" name="Berserker Tabris" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -758,7 +758,7 @@
<height normal="54.5" />
</collision>
</npc>
<npc id="26439" level="85" type="L2Npc" name="Ferocious Valac" title="Raid Boss">
<npc id="26439" level="85" type="Npc" name="Ferocious Valac" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -777,7 +777,7 @@
<height normal="77.5" />
</collision>
</npc>
<npc id="26440" level="85" type="L2Npc" name="Arrogant Lebruum" title="Raid Boss">
<npc id="26440" level="85" type="Npc" name="Arrogant Lebruum" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>

View File

@@ -3682,7 +3682,7 @@
<skill id="16547" level="10" /> <!-- Danger Zone Attack Resistance -->
</skillList>
</npc>
<npc id="29379" level="85" type="L2Npc" name="Lord Ishka" title="Blade of Revenge">
<npc id="29379" level="85" type="Npc" name="Lord Ishka" title="Blade of Revenge">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>

View File

@@ -1801,7 +1801,7 @@
<height normal="18" />
</collision>
</npc>
<npc id="34495" level="85" type="L2Npc" name="Anakim's Messenger">
<npc id="34495" level="85" type="Npc" name="Anakim's Messenger">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1821,7 +1821,7 @@
<height normal="30.5" />
</collision>
</npc>
<npc id="34496" level="85" type="L2Npc" name="Dimensional Castle Siege Messenger">
<npc id="34496" level="85" type="Npc" name="Dimensional Castle Siege Messenger">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1841,7 +1841,7 @@
<height normal="24" />
</collision>
</npc>
<npc id="34497" level="85" type="L2Npc" name="Happy Snow" title="Celebrating the 15th Anniversary">
<npc id="34497" level="85" type="Npc" name="Happy Snow" title="Celebrating the 15th Anniversary">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1861,7 +1861,7 @@
<height normal="16.2" />
</collision>
</npc>
<npc id="34498" level="85" type="L2Npc" name="15th Anniversary Cake" title="Sharing happiness">
<npc id="34498" level="85" type="Npc" name="15th Anniversary Cake" title="Sharing happiness">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -1880,7 +1880,7 @@
<height normal="19.5" />
</collision>
</npc>
<npc id="34499" level="85" type="L2Npc" name="15th Anniversary Cake" title="Delicious">
<npc id="34499" level="85" type="Npc" name="15th Anniversary Cake" title="Delicious">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/npcs.xsd">
<npc id="34500" level="85" type="L2Npc" name="Clumsy Snow" title="Proud">
<npc id="34500" level="85" type="Npc" name="Clumsy Snow" title="Proud">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -19,7 +19,7 @@
<height normal="20.25" />
</collision>
</npc>
<npc id="34501" level="85" type="L2Npc" name="Bora" title="GM Helper">
<npc id="34501" level="85" type="Npc" name="Bora" title="GM Helper">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -38,7 +38,7 @@
<height normal="45" />
</collision>
</npc>
<npc id="34502" level="85" type="L2Npc" name="Bora" title="GM Helper">
<npc id="34502" level="85" type="Npc" name="Bora" title="GM Helper">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -57,7 +57,7 @@
<height normal="45" />
</collision>
</npc>
<npc id="34503" level="85" type="L2Npc" name="Sel Mahum Treasure Chest">
<npc id="34503" level="85" type="Npc" name="Sel Mahum Treasure Chest">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -76,7 +76,7 @@
<height normal="8" />
</collision>
</npc>
<npc id="34504" level="85" type="L2Npc" name="Leona Blackbird" title="Blackbird Clan Lord">
<npc id="34504" level="85" type="Npc" name="Leona Blackbird" title="Blackbird Clan Lord">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -96,7 +96,7 @@
<height normal="22.4" />
</collision>
</npc>
<npc id="34505" level="85" type="L2Npc" name="Tarti">
<npc id="34505" level="85" type="Npc" name="Tarti">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -115,7 +115,7 @@
<height normal="20" />
</collision>
</npc>
<npc id="34506" level="85" type="L2Npc" name="Lucy" title="Kindhearted">
<npc id="34506" level="85" type="Npc" name="Lucy" title="Kindhearted">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -134,7 +134,7 @@
<height normal="23" />
</collision>
</npc>
<npc id="34507" level="85" type="L2Npc" name="Rok" title="Caring">
<npc id="34507" level="85" type="Npc" name="Rok" title="Caring">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -154,7 +154,7 @@
<height normal="21" />
</collision>
</npc>
<npc id="34508" level="85" type="L2Npc" name="Battlefield Guide" title="Cursed Sword">
<npc id="34508" level="85" type="Npc" name="Battlefield Guide" title="Cursed Sword">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -173,7 +173,7 @@
<height normal="27" />
</collision>
</npc>
<npc id="34509" level="85" type="L2Npc" name="Lucky Pig" title="Golden Pig">
<npc id="34509" level="85" type="Npc" name="Lucky Pig" title="Golden Pig">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -192,7 +192,7 @@
<height normal="15" />
</collision>
</npc>
<npc id="34510" level="85" type="L2Npc" name="Golden Pig" title="Year of the Golden Pig">
<npc id="34510" level="85" type="Npc" name="Golden Pig" title="Year of the Golden Pig">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -211,7 +211,7 @@
<height normal="18.3" />
</collision>
</npc>
<npc id="34511" level="85" type="L2Npc" name="Lucy" title="Kindhearted">
<npc id="34511" level="85" type="Npc" name="Lucy" title="Kindhearted">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -230,7 +230,7 @@
<height normal="23" />
</collision>
</npc>
<npc id="34512" level="85" type="L2Npc" name="Caring Rok" title="Inexperienced in Love Affairs">
<npc id="34512" level="85" type="Npc" name="Caring Rok" title="Inexperienced in Love Affairs">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -250,7 +250,7 @@
<height normal="21" />
</collision>
</npc>
<npc id="34513" level="85" type="L2Npc" name="Joachim" title="Dual Class Master">
<npc id="34513" level="85" type="Npc" name="Joachim" title="Dual Class Master">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -270,7 +270,7 @@
<height normal="25" />
</collision>
</npc>
<npc id="34514" level="85" type="L2Npc" name="Gallias" title="Dual Class Certificate Manager">
<npc id="34514" level="85" type="Npc" name="Gallias" title="Dual Class Certificate Manager">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -290,7 +290,7 @@
<height normal="26" />
</collision>
</npc>
<npc id="34515" level="85" type="L2Npc" name="Eva's Avatar" title="Goddess of Water">
<npc id="34515" level="85" type="Npc" name="Eva's Avatar" title="Goddess of Water">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -309,7 +309,7 @@
<height normal="26.5" />
</collision>
</npc>
<npc id="34516" level="85" type="L2Npc" name="Unused NPC">
<npc id="34516" level="85" type="Npc" name="Unused NPC">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -328,7 +328,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="34517" level="85" type="L2Npc" name="Unused NPC">
<npc id="34517" level="85" type="Npc" name="Unused NPC">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -347,7 +347,7 @@
<height normal="30.5" />
</collision>
</npc>
<npc id="34518" level="85" type="L2Npc" name="Unused NPC">
<npc id="34518" level="85" type="Npc" name="Unused NPC">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -366,7 +366,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="34519" level="85" type="L2Npc" name="Unused NPC">
<npc id="34519" level="85" type="Npc" name="Unused NPC">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -385,7 +385,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="34520" level="85" type="L2Npc" name="Unused NPC">
<npc id="34520" level="85" type="Npc" name="Unused NPC">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -404,7 +404,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="34521" level="85" type="L2Npc" name="Unused NPC">
<npc id="34521" level="85" type="Npc" name="Unused NPC">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -423,7 +423,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="34522" level="85" type="L2Npc" name="Unused NPC">
<npc id="34522" level="85" type="Npc" name="Unused NPC">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -442,7 +442,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="34523" level="85" type="L2Npc" name="Unused NPC">
<npc id="34523" level="85" type="Npc" name="Unused NPC">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -461,7 +461,7 @@
<height normal="30.5" />
</collision>
</npc>
<npc id="34524" level="85" type="L2Npc" name="Unused NPC">
<npc id="34524" level="85" type="Npc" name="Unused NPC">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -480,7 +480,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="34525" level="85" type="L2Npc" name="Unused NPC">
<npc id="34525" level="85" type="Npc" name="Unused NPC">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -499,7 +499,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="34526" level="85" type="L2Npc" name="Expedition Teleporter" title="Primeval Isle Explorer">
<npc id="34526" level="85" type="Npc" name="Expedition Teleporter" title="Primeval Isle Explorer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -518,7 +518,7 @@
<height normal="28" />
</collision>
</npc>
<npc id="34527" level="85" type="L2Npc" name="Expedition Guard" title="Primeval Isle Explorer">
<npc id="34527" level="85" type="Npc" name="Expedition Guard" title="Primeval Isle Explorer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -538,7 +538,7 @@
<height normal="28.5" />
</collision>
</npc>
<npc id="34528" level="85" type="L2Npc" name="Hora" title="Storm Isle Entrance Manager">
<npc id="34528" level="85" type="Npc" name="Hora" title="Storm Isle Entrance Manager">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -558,7 +558,7 @@
<height normal="21.5" />
</collision>
</npc>
<npc id="34529" level="85" type="L2Npc" name="Investigators Teleporter" title="Storm Isle Investigators">
<npc id="34529" level="85" type="Npc" name="Investigators Teleporter" title="Storm Isle Investigators">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -577,7 +577,7 @@
<height normal="23" />
</collision>
</npc>
<npc id="34530" level="85" type="L2Npc" name="Investigators Guard" title="Storm Isle Investigators">
<npc id="34530" level="85" type="Npc" name="Investigators Guard" title="Storm Isle Investigators">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -597,7 +597,7 @@
<height normal="23.5" />
</collision>
</npc>
<npc id="34531" level="85" type="L2Npc" name="Chief Investigator Luria" title="Storm Isle Investigators">
<npc id="34531" level="85" type="Npc" name="Chief Investigator Luria" title="Storm Isle Investigators">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -617,7 +617,7 @@
<height normal="21.5" />
</collision>
</npc>
<npc id="34532" level="85" type="L2Npc" name="Coal Mine Control">
<npc id="34532" level="85" type="Npc" name="Coal Mine Control">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -636,7 +636,7 @@
<height normal="200" />
</collision>
</npc>
<npc id="34533" level="85" type="L2Npc" name="Underground Fortress Control">
<npc id="34533" level="85" type="Npc" name="Underground Fortress Control">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -655,7 +655,7 @@
<height normal="200" />
</collision>
</npc>
<npc id="34534" level="85" type="L2Npc" name="Forgotten Temple Control">
<npc id="34534" level="85" type="Npc" name="Forgotten Temple Control">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -674,7 +674,7 @@
<height normal="200" />
</collision>
</npc>
<npc id="34535" level="85" type="L2Npc" name="Ruins Control">
<npc id="34535" level="85" type="Npc" name="Ruins Control">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -693,7 +693,7 @@
<height normal="200" />
</collision>
</npc>
<npc id="34536" level="85" type="L2Npc" name="Reward Drop">
<npc id="34536" level="85" type="Npc" name="Reward Drop">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -712,7 +712,7 @@
<height normal="200" />
</collision>
</npc>
<npc id="34537" level="85" type="L2Npc" name="Vitality King Golden Pig">
<npc id="34537" level="85" type="Npc" name="Vitality King Golden Pig">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -731,7 +731,7 @@
<height normal="120.75" />
</collision>
</npc>
<npc id="34538" level="85" type="L2Npc" name="Dandy" title="Successful">
<npc id="34538" level="85" type="Npc" name="Dandy" title="Successful">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -750,7 +750,7 @@
<height normal="30" />
</collision>
</npc>
<npc id="34539" level="85" type="L2Npc" name="Mr. Cat">
<npc id="34539" level="85" type="Npc" name="Mr. Cat">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>
@@ -769,7 +769,7 @@
<height normal="16" />
</collision>
</npc>
<npc id="34540" level="85" type="L2Npc" name="Battlefield Manager">
<npc id="34540" level="85" type="Npc" name="Battlefield Manager">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ETC</race>
<sex>FEMALE</sex>