Raidboss and quest 10416, 10797 improvements.

Contributed by gamelike85.
This commit is contained in:
MobiusDev
2017-12-26 15:26:49 +00:00
parent 2a26123a8d
commit d2d2c5862e
17 changed files with 2310 additions and 2149 deletions

View File

@@ -1,4 +1,4 @@
<html><body>Eye of Argos:<br>
The annoying group called <font color="LEVEL">Embryo</font> failed to get me on their side. So now they want to recruit <font color="LEVEL">Daimon</font>. If they succeed... well.<br>
The energy of the beasts in the valley around here has subsided significantly. Is it you that has slain them? ...Interesting... <br>
Give me some time to think about what to do.
</body></html>

View File

@@ -1,5 +1,5 @@
<html><body>Giant's Minion Janitt:<br>
So far, Argos isn't exactly falling all over himself to support Embryo. The problem is, he doesn't trust us either. I managed to get him to agree to give me a chance; I have to send someone brave and wise to convince him.<br>
Are you brave enough and wise enough? We're on a time limit here, so I don't know that we have the time to find out. I need you to go talk to him.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10416_InSearchOfTheEyeOfArgos 33851-04.htm">"Got it."</Button>
Yes, that's right! So far, Argos isn't exactly falling all over himself to support Embryo. The problem is, he doesn't trust us either. I managed to get him to agree to give me a chance; I have to send someone brave and wise to convince him.<br>
You may be qualified. Come on, it should be worth trying.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10416_InSearchOfTheEyeOfArgos 33851-04.htm">"Alright, I will."</Button>
</body></html>

View File

@@ -1,3 +1,4 @@
<html><body>Giant's Minion Janitt:<br>
Hurry, then. I'll mark the location of the <font color="LEVEL">Eye of Argos</font> on your map. Go talk to him right away.
Though you're a stranger to wisdom, obviously, the best way to prove your bravery would be to slay the monsters around here, correct? Slay the <font color="LEVEL">Canyon Antelope, Canyon Bandersnatch, Valley Buffalo, Valley Grendel, Canyon Antelope Slave, Canyon Bandersnatch Slave, Valley Buffalo Slave, and Valley Grendel Slave</font>. In the process, Argos may recognize your bravery. Desperate times call for desperate measures.<br>
If you feel you've done enough, teleport to where the <font color="LEVEL">Eye of Argos</font> is, and try to have a conversation.
</body></html>

View File

@@ -1,3 +1,4 @@
<html><body>Giant's Minion Janitt:<br>
Hurry, then. I'll mark the location of the <font color="LEVEL">Eye of Argos</font> on your map. Go talk to him right away.
Let's try to prove your bravery, why don't we. Slay the <font color="LEVEL">Canyon Antelope, Canyon Bandersnatch, Valley Buffalo, Valley Grendel, Canyon Antelope Slave, Canyon Bandersnatch Slave, Valley Buffalo Slave, and Valley Grendel Slave</font>. In the process, Argos may recognize your bravery. Desperate times call for desperate measures.<br>
If you feel you've done enough, teleport to where the <font color="LEVEL">Eye of Argos</font> is, and try to have a conversation.
</body></html>

View File

@@ -16,12 +16,19 @@
*/
package quests.Q10416_InSearchOfTheEyeOfArgos;
import java.util.HashSet;
import java.util.Set;
import com.l2jmobius.gameserver.enums.QuestSound;
import com.l2jmobius.gameserver.enums.QuestType;
import com.l2jmobius.gameserver.enums.Race;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import com.l2jmobius.gameserver.model.holders.NpcLogListHolder;
import com.l2jmobius.gameserver.model.quest.Quest;
import com.l2jmobius.gameserver.model.quest.QuestState;
import com.l2jmobius.gameserver.model.quest.State;
import com.l2jmobius.gameserver.network.NpcStringId;
/**
* In Search of the Eye of Argos (10416)
@@ -32,17 +39,29 @@ public final class Q10416_InSearchOfTheEyeOfArgos extends Quest
// NPCs
private static final int JANITT = 33851;
private static final int EYE_OF_ARGOS = 31683;
// Items
private static final int EAA = 730; // Scroll: Enchant Armor (A-grade)
// Monsters
private static final int[] MONSTERS =
{
21294, // Canyon Antelope
21296, // Canyon Bandersnatch
23311, // Valley Buffalo
23312, // Valley Grendel
21295, // Canyon Antelope Slave
21297, // Canyon Bandersnatch Slave
21299, // Valley Buffalo Slave
21304 // Valley Grendel Slave
};
// Misc
private static final int MIN_LEVEL = 70;
private static final int MAX_LEVEL = 75;
private static final String KILL_COUNT_VAR = "KillCount";
public Q10416_InSearchOfTheEyeOfArgos()
{
super(10416);
addStartNpc(JANITT);
addTalkId(JANITT, EYE_OF_ARGOS);
addKillId(MONSTERS);
addCondNotRace(Race.ERTHEIA, "33851-06.html");
addCondLevel(MIN_LEVEL, MAX_LEVEL, "33851-07.htm");
}
@@ -73,16 +92,19 @@ public final class Q10416_InSearchOfTheEyeOfArgos extends Quest
}
case "31683-02.html":
{
if (st.isCond(1))
if (st.isCond(2))
{
st.exitQuest(false, true);
giveItems(player, EAA, 2);
giveStoryQuestReward(npc, player);
if (player.getLevel() > MIN_LEVEL)
if (player.getLevel() >= MIN_LEVEL)
{
addExpAndSp(player, 1_088_640, 261);
addExpAndSp(player, 178_732_196, 261);
giveStoryQuestReward(npc, player);
st.exitQuest(QuestType.ONE_TIME, true);
htmltext = event;
}
else
{
htmltext = getNoQuestLevelRewardMsg(player);
}
htmltext = event;
}
break;
}
@@ -108,9 +130,13 @@ public final class Q10416_InSearchOfTheEyeOfArgos extends Quest
}
case State.STARTED:
{
if (st.isCond(1))
if (st.isCond(1) && (npc.getId() == JANITT))
{
htmltext = npc.getId() == JANITT ? "33851-05.html" : "31683-01.html";
htmltext = "33851-05.html";
}
if (st.isCond(2) && (npc.getId() == EYE_OF_ARGOS))
{
htmltext = "31683-01.html";
}
break;
}
@@ -125,4 +151,42 @@ public final class Q10416_InSearchOfTheEyeOfArgos extends Quest
}
return htmltext;
}
@Override
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
{
final QuestState qs = getQuestState(killer, false);
if ((qs != null) && qs.isCond(1))
{
int count = qs.getInt(KILL_COUNT_VAR);
qs.set(KILL_COUNT_VAR, ++count);
if (count >= 200)
{
qs.setCond(2, true);
}
else
{
sendNpcLogList(killer);
playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET);
}
}
return super.onKill(npc, killer, isSummon);
}
@Override
public Set<NpcLogListHolder> getNpcLogList(L2PcInstance player)
{
final QuestState qs = getQuestState(player, false);
if ((qs != null) && qs.isCond(1))
{
final int killCount = qs.getInt(KILL_COUNT_VAR);
if (killCount > 0)
{
final Set<NpcLogListHolder> holder = new HashSet<>();
holder.add(new NpcLogListHolder(NpcStringId.DEFEAT_THE_BEASTS_OF_THE_VALLEY, killCount));
return holder;
}
}
return super.getNpcLogList(player);
}
}

View File

@@ -16,12 +16,19 @@
*/
package quests.Q10797_CrossingFate;
import java.util.HashSet;
import java.util.Set;
import com.l2jmobius.commons.util.CommonUtil;
import com.l2jmobius.gameserver.enums.QuestSound;
import com.l2jmobius.gameserver.enums.QuestType;
import com.l2jmobius.gameserver.enums.Race;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import com.l2jmobius.gameserver.model.holders.NpcLogListHolder;
import com.l2jmobius.gameserver.model.quest.Quest;
import com.l2jmobius.gameserver.model.quest.QuestState;
import com.l2jmobius.gameserver.util.Util;
import com.l2jmobius.gameserver.network.NpcStringId;
import quests.Q10796_TheEyeThatDefiedTheGods.Q10796_TheEyeThatDefiedTheGods;
@@ -35,11 +42,21 @@ public class Q10797_CrossingFate extends Quest
// NPCs
private static final int EYE_OF_ARGOS = 31683;
private static final int DAIMON_THE_WHITE_EYED = 27499;
// Items
private static final int EAA = 730;
private static final int[] MONSTERS =
{
21294, // Canyon Antelope
21296, // Canyon Bandersnatch
23311, // Valley Buffalo
23312, // Valley Grendel
21295, // Canyon Antelope Slave
21297, // Canyon Bandersnatch Slave
21299, // Valley Buffalo Slave
21304 // Valley Grendel Slave
};
// Misc
private static final int MIN_LEVEL = 70;
private static final int MAX_LEVEL = 75;
private static final String KILL_COUNT_VAR = "KillCount";
public Q10797_CrossingFate()
{
@@ -47,8 +64,9 @@ public class Q10797_CrossingFate extends Quest
addStartNpc(EYE_OF_ARGOS);
addTalkId(EYE_OF_ARGOS);
addKillId(DAIMON_THE_WHITE_EYED);
addKillId(MONSTERS);
addCondLevel(MIN_LEVEL, MAX_LEVEL, "no_level.html");
addCondRace(Race.ERTHEIA, "noErtheya.html");
addCondRace(Race.ERTHEIA, "noErtheia.html");
addCondCompletedQuest(Q10796_TheEyeThatDefiedTheGods.class.getSimpleName(), "restriction.html");
}
@@ -75,14 +93,21 @@ public class Q10797_CrossingFate extends Quest
}
case "31683-07.html":
{
if (qs.isCond(2))
if (qs.isCond(3))
{
addExpAndSp(player, 2721600, 653);
giveStoryQuestReward(npc, player);
giveItems(player, EAA, 5);
qs.exitQuest(false, true);
break;
if (player.getLevel() >= MIN_LEVEL)
{
addExpAndSp(player, 306_167_814, 653);
giveStoryQuestReward(npc, player);
qs.exitQuest(QuestType.ONE_TIME, true);
htmltext = event;
}
else
{
htmltext = getNoQuestLevelRewardMsg(player);
}
}
break;
}
}
return htmltext;
@@ -97,11 +122,11 @@ public class Q10797_CrossingFate extends Quest
{
htmltext = "31683-01.htm";
}
else if (qs.isCond(1))
else if (qs.isCond(1) || qs.isCond(2))
{
htmltext = "31683-05.html";
}
else if (qs.isCond(2))
else if (qs.isCond(3))
{
htmltext = "31683-06.html";
}
@@ -116,10 +141,41 @@ public class Q10797_CrossingFate extends Quest
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
{
final QuestState qs = getQuestState(killer, false);
if ((qs != null) && qs.isCond(1) && Util.checkIfInRange(1500, npc, qs.getPlayer(), false))
if ((qs != null) && qs.isCond(1) && CommonUtil.contains(MONSTERS, npc.getId()))
{
qs.setCond(2, true);
int count = qs.getInt(KILL_COUNT_VAR);
qs.set(KILL_COUNT_VAR, ++count);
if (count >= 100)
{
qs.setCond(2, true);
}
else
{
sendNpcLogList(killer);
playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET);
}
}
if ((qs != null) && qs.isCond(2) && (npc.getId() == DAIMON_THE_WHITE_EYED))
{
qs.setCond(3, true);
}
return super.onKill(npc, killer, isSummon);
}
@Override
public Set<NpcLogListHolder> getNpcLogList(L2PcInstance player)
{
final QuestState qs = getQuestState(player, false);
if ((qs != null) && qs.isCond(1))
{
final int killCount = qs.getInt(KILL_COUNT_VAR);
if (killCount > 0)
{
final Set<NpcLogListHolder> holder = new HashSet<>();
holder.add(new NpcLogListHolder(NpcStringId.DEFEAT_THE_BEASTS_OF_THE_VALLEY4, killCount));
return holder;
}
}
return super.getNpcLogList(player);
}
}

View File

@@ -299,7 +299,6 @@
<npc id="23267" x="-106842" y="41730" z="-1544" heading="56503" respawnTime="60sec" /> <!-- Screw Golem -->
<npc id="23267" x="-107350" y="42789" z="-1448" heading="48863" respawnTime="60sec" /> <!-- Screw Golem -->
<npc id="23267" x="-107522" y="42719" z="-1456" heading="657" respawnTime="60sec" /> <!-- Screw Golem -->
<npc id="25902" x="-105372" y="46754" z="-1512" heading="13361" respawnTime="60sec" /> <!-- Gigantic Golem -->
<npc id="19308" x="-88002" y="38645" z="-2368" respawnTime="60sec" /> <!-- Yin Fragment -->
<npc id="19308" x="-87772" y="40052" z="-2520" respawnTime="60sec" /> <!-- Yin Fragment -->
<npc id="19308" x="-85413" y="39503" z="-2432" respawnTime="60sec" /> <!-- Yin Fragment -->

View File

@@ -1666,235 +1666,271 @@
<npc id="25322" dbSave="true" dbName="demonic_agent_falston" respawnTime="24hour" respawnRandom="12hour" /> <!-- Demon's Agent Falston -->
</spawn>
<spawn>
<npc id="3473" x="199526" y="84696" z="-203" dbSave="true" dbName="Omega Golem" respawnTime="24hour" respawnRandom="12hour" /> <!-- Omega Golem -->
<npc id="3473" x="199526" y="84696" z="-203" heading="0" dbSave="true" dbName="Omega Golem" respawnTime="24hour" respawnRandom="12hour" /> <!-- Omega Golem -->
</spawn>
<spawn>
<npc id="3477" x="207218" y="80172" z="592" dbSave="true" dbName="Reinforced Super Kat the Cat" respawnTime="24hour" respawnRandom="12hour" /> <!-- Reinforced Super Kat the Cat -->
<npc id="3477" x="207218" y="80172" z="592" heading="0" dbSave="true" dbName="Reinforced Super Kat the Cat" respawnTime="24hour" respawnRandom="12hour" /> <!-- Reinforced Super Kat the Cat -->
</spawn>
<spawn>
<npc id="3479" x="217564" y="83921" z="966" dbSave="true" dbName="Darkened Super Feline Queen" respawnTime="24hour" respawnRandom="12hour" /> <!-- Darkened Super Feline Queen -->
<npc id="3479" x="217564" y="83921" z="966" heading="0" dbSave="true" dbName="Darkened Super Feline Queen" respawnTime="24hour" respawnRandom="12hour" /> <!-- Darkened Super Feline Queen -->
</spawn>
<spawn>
<npc id="3481" x="205923" y="113567" z="-1793" dbSave="true" dbName="Control-crazed Mew the Cat" respawnTime="24hour" respawnRandom="12hour" /> <!-- Control-crazed Mew the Cat -->
<npc id="3481" x="205923" y="113567" z="-1793" heading="0" dbSave="true" dbName="Control-crazed Mew the Cat" respawnTime="24hour" respawnRandom="12hour" /> <!-- Control-crazed Mew the Cat -->
</spawn>
<spawn>
<npc id="25775" x="213715" y="115261" z="-856" dbSave="true" dbName="Apherus" respawnTime="24hour" respawnRandom="3hour" /> <!-- Apherus -->
<npc id="25775" x="213715" y="115261" z="-856" heading="0" dbSave="true" dbName="Apherus" respawnTime="24hour" respawnRandom="3hour" /> <!-- Apherus -->
</spawn>
<spawn>
<npc id="25886" x="48986" y="145825" z="-3592" dbSave="true" dbName="Houpon the Warden Overseer" respawnTime="24hour" respawnRandom="12hour" /> <!-- Houpon the Warden Overseer -->
<npc id="25886" x="48986" y="145825" z="-3592" heading="0" dbSave="true" dbName="Houpon the Warden Overseer" respawnTime="24hour" respawnRandom="12hour" /> <!-- Houpon the Warden Overseer -->
</spawn>
<spawn>
<npc id="25887" x="43883" y="145950" z="-3696" dbSave="true" dbName="Crook the Mad" respawnTime="24hour" respawnRandom="12hour" /> <!-- Crook the Mad -->
<npc id="25887" x="43883" y="145950" z="-3696" heading="0" dbSave="true" dbName="Crook the Mad" respawnTime="24hour" respawnRandom="12hour" /> <!-- Crook the Mad -->
</spawn>
<spawn>
<npc id="25892" x="44961" y="155943" z="-1052" dbSave="true" dbName="Guillotine of Death" respawnTime="24hour" respawnRandom="12hour" /> <!-- Guillotine of Death -->
<npc id="25892" x="44961" y="155943" z="-1052" heading="0" dbSave="true" dbName="Guillotine of Death" respawnTime="24hour" respawnRandom="12hour" /> <!-- Guillotine of Death -->
</spawn>
<spawn>
<npc id="25922" x="17819" y="-149959" z="-64" dbSave="true" dbName="Nerva Chief Turakan" respawnTime="24hour" respawnRandom="12hour" /> <!-- Nerva Chief Turakan -->
<npc id="25902" x="-105372" y="46754" z="-1512" heading="13361" dbSave="true" dbName="Gigantic Golem" respawnTime="24hour" respawnRandom="12hour" /> <!-- Gigantic Golem -->
</spawn>
<spawn>
<npc id="25932" x="-13255" y="46299" z="-3648" dbSave="true" dbName="Transformed: Dartanion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Transformed: Dartanion -->
<npc id="25922" x="17819" y="-149959" z="-64" heading="0" dbSave="true" dbName="Nerva Chief Turakan" respawnTime="24hour" respawnRandom="12hour" /> <!-- Nerva Chief Turakan -->
</spawn>
<spawn>
<npc id="25945" x="-24277" y="-94887" z="-3552" dbSave="true" dbName="Megaloprepis" respawnTime="24hour" respawnRandom="12hour" /> <!-- Megaloprepis -->
<npc id="25945" x="-24277" y="-94887" z="-3552" heading="0" dbSave="true" dbName="Megaloprepis" respawnTime="24hour" respawnRandom="12hour" /> <!-- Megaloprepis -->
</spawn>
<spawn>
<npc id="25946" x="-36977" y="-116456" z="-1647" dbSave="true" dbName="Antharas' Herald Komabor" respawnTime="24hour" respawnRandom="12hour" /> <!-- Antharas' Herald Komabor -->
<npc id="25946" x="-36977" y="-116456" z="-1647" heading="0" dbSave="true" dbName="Antharas' Herald Komabor" respawnTime="24hour" respawnRandom="12hour" /> <!-- Antharas' Herald Komabor -->
</spawn>
<spawn>
<npc id="25947" x="-14683" y="-96518" z="-2215" dbSave="true" dbName="Skellrus' Herald Iskios" respawnTime="24hour" respawnRandom="12hour" /> <!-- Skellrus' Herald Iskios -->
<npc id="25947" x="-14683" y="-96518" z="-2215" heading="0" dbSave="true" dbName="Skellrus' Herald Iskios" respawnTime="24hour" respawnRandom="12hour" /> <!-- Skellrus' Herald Iskios -->
</spawn>
<spawn>
<npc id="25948" x="-16185" y="-80297" z="-3408" dbSave="true" dbName="Valakas' Herald Potigia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Valakas' Herald Potigia -->
<npc id="25948" x="-16185" y="-80297" z="-3408" heading="0" dbSave="true" dbName="Valakas' Herald Potigia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Valakas' Herald Potigia -->
</spawn>
<spawn>
<npc id="25949" x="423" y="-101106" z="-1925" dbSave="true" dbName="Lindvior's Herald Numa" respawnTime="24hour" respawnRandom="12hour" /> <!-- Lindvior's Herald Numa -->
<npc id="25949" x="423" y="-101106" z="-1925" heading="0" dbSave="true" dbName="Lindvior's Herald Numa" respawnTime="24hour" respawnRandom="12hour" /> <!-- Lindvior's Herald Numa -->
</spawn>
<spawn>
<npc id="25950" x="-2787" y="-72803" z="-3690" dbSave="true" dbName="Fafurion's Herald Aquarion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fafurion's Herald Aquarion -->
<npc id="25950" x="-2787" y="-72803" z="-3690" heading="0" dbSave="true" dbName="Fafurion's Herald Aquarion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fafurion's Herald Aquarion -->
</spawn>
<spawn>
<npc id="25956" x="-124702" y="51903" z="-560" dbSave="true" dbName="Vengeful Eligos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Eligos -->
<npc id="25956" x="-124702" y="51903" z="-560" heading="0" dbSave="true" dbName="Vengeful Eligos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Eligos -->
</spawn>
<spawn>
<npc id="25957" x="-121987" y="63234" z="-2513" dbSave="true" dbName="Vengeful Agarez" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Agarez -->
<npc id="25957" x="-121987" y="63234" z="-2513" heading="0" dbSave="true" dbName="Vengeful Agarez" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Agarez -->
</spawn>
<spawn>
<npc id="25958" x="-122520" y="89411" z="-3690" dbSave="true" dbName="Vengeful Lerazia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Lerazia -->
<npc id="25958" x="-122520" y="89411" z="-3690" heading="0" dbSave="true" dbName="Vengeful Lerazia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Lerazia -->
</spawn>
<spawn>
<npc id="25959" x="-109117" y="83850" z="-3608" dbSave="true" dbName="Vengeful Oretross" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Oretross -->
<npc id="25959" x="-109117" y="83850" z="-3608" heading="0" dbSave="true" dbName="Vengeful Oretross" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Oretross -->
</spawn>
<spawn>
<npc id="25960" x="-113110" y="62908" z="-2656" dbSave="true" dbName="Vengeful Edaire" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Edaire -->
<npc id="25960" x="-113110" y="62908" z="-2656" heading="0" dbSave="true" dbName="Vengeful Edaire" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Edaire -->
</spawn>
<spawn>
<npc id="25961" x="-98752" y="60708" z="-3440" dbSave="true" dbName="Vengeful Agonia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Agonia -->
<npc id="25961" x="-98752" y="60708" z="-3440" heading="0" dbSave="true" dbName="Vengeful Agonia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Vengeful Agonia -->
</spawn>
<spawn>
<npc id="25967" x="86982" y="124486" z="-2113" dbSave="true" dbName="Zetahl" respawnTime="24hour" respawnRandom="12hour" /> <!-- Zetahl -->
<npc id="25967" x="86982" y="124486" z="-2113" heading="0" dbSave="true" dbName="Zetahl" respawnTime="24hour" respawnRandom="12hour" /> <!-- Zetahl -->
</spawn>
<spawn>
<npc id="25968" x="82273" y="130843" z="-3672" dbSave="true" dbName="Tabris" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tabris -->
<npc id="25968" x="82273" y="130843" z="-3672" heading="0" dbSave="true" dbName="Tabris" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tabris -->
</spawn>
<spawn>
<npc id="25969" x="123743" y="137792" z="-3344" dbSave="true" dbName="Stelos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Stelos -->
<npc id="25969" x="123743" y="137792" z="-3344" heading="0" dbSave="true" dbName="Stelos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Stelos -->
</spawn>
<spawn>
<npc id="25970" x="108856" y="131159" z="-3216" dbSave="true" dbName="Ravolas" respawnTime="24hour" respawnRandom="12hour" /> <!-- Ravolas -->
<npc id="25970" x="108856" y="131159" z="-3216" heading="0" dbSave="true" dbName="Ravolas" respawnTime="24hour" respawnRandom="12hour" /> <!-- Ravolas -->
</spawn>
<spawn>
<npc id="25971" x="98907" y="130910" z="-3224" dbSave="true" dbName="Stelo Soma" respawnTime="24hour" respawnRandom="12hour" /> <!-- Stelo Soma -->
<npc id="25971" x="98907" y="130910" z="-3224" heading="0" dbSave="true" dbName="Stelo Soma" respawnTime="24hour" respawnRandom="12hour" /> <!-- Stelo Soma -->
</spawn>
<spawn>
<npc id="25972" x="92524" y="136116" z="-2500" dbSave="true" dbName="Dephracor" respawnTime="24hour" respawnRandom="12hour" /> <!-- Dephracor -->
<npc id="25972" x="92524" y="136116" z="-2500" heading="0" dbSave="true" dbName="Dephracor" respawnTime="24hour" respawnRandom="12hour" /> <!-- Dephracor -->
</spawn>
<spawn>
<npc id="25978" x="28221" y="106046" z="-3664" dbSave="true" dbName="Garamor's Herald Gariott" respawnTime="24hour" respawnRandom="12hour" /> <!-- Garamor's Herald Gariott -->
<npc id="25978" x="28221" y="106046" z="-3664" heading="0" dbSave="true" dbName="Garamor's Herald Gariott" respawnTime="24hour" respawnRandom="12hour" /> <!-- Garamor's Herald Gariott -->
</spawn>
<spawn>
<npc id="25979" x="4166" y="119041" z="-3696" dbSave="true" dbName="Varvacion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varvacion -->
<npc id="25979" x="4166" y="119041" z="-3696" heading="0" dbSave="true" dbName="Varvacion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varvacion -->
</spawn>
<spawn>
<npc id="25980" x="6807" y="106075" z="-3648" dbSave="true" dbName="Varmoni" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varmoni -->
<npc id="25980" x="6807" y="106075" z="-3648" heading="0" dbSave="true" dbName="Varmoni" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varmoni -->
</spawn>
<spawn>
<npc id="25981" x="22067" y="100176" z="-3689" dbSave="true" dbName="Varvinos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varvinos -->
<npc id="25981" x="22067" y="100176" z="-3689" heading="0" dbSave="true" dbName="Varvinos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varvinos -->
</spawn>
<spawn>
<npc id="25982" x="26025" y="115283" z="-3752" dbSave="true" dbName="Varmonia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varmonia -->
<npc id="25982" x="26025" y="115283" z="-3752" heading="0" dbSave="true" dbName="Varmonia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varmonia -->
</spawn>
<spawn>
<npc id="25983" x="25712" y="130253" z="-2440" dbSave="true" dbName="Varkaron" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varkaron -->
<npc id="25983" x="25712" y="130253" z="-2440" heading="0" dbSave="true" dbName="Varkaron" respawnTime="24hour" respawnRandom="12hour" /> <!-- Varkaron -->
</spawn>
<spawn>
<npc id="25989" x="35960" y="34794" z="-3664" dbSave="true" dbName="Harp's Clone" respawnTime="24hour" respawnRandom="12hour" /> <!-- Harp's Clone -->
<npc id="25989" x="35960" y="34794" z="-3664" heading="0" dbSave="true" dbName="Harp's Clone" respawnTime="24hour" respawnRandom="12hour" /> <!-- Harp's Clone -->
</spawn>
<spawn>
<npc id="25990" x="27002" y="47873" z="-3376" dbSave="true" dbName="Isadora's Avatar" respawnTime="24hour" respawnRandom="12hour" /> <!-- Isadora's Avatar -->
<npc id="25990" x="27002" y="47873" z="-3376" heading="0" dbSave="true" dbName="Isadora's Avatar" respawnTime="24hour" respawnRandom="12hour" /> <!-- Isadora's Avatar -->
</spawn>
<spawn>
<npc id="25991" x="37134" y="64082" z="-3584" dbSave="true" dbName="Maliss' Avatar" respawnTime="24hour" respawnRandom="12hour" /> <!-- Maliss' Avatar -->
<npc id="25991" x="37134" y="64082" z="-3584" heading="0" dbSave="true" dbName="Maliss' Avatar" respawnTime="24hour" respawnRandom="12hour" /> <!-- Maliss' Avatar -->
</spawn>
<spawn>
<npc id="25992" x="31946" y="56184" z="-3536" dbSave="true" dbName="Embryo Garron" respawnTime="24hour" respawnRandom="12hour" /> <!-- Embryo Garron -->
<npc id="25992" x="31946" y="56184" z="-3536" heading="0" dbSave="true" dbName="Embryo Garron" respawnTime="24hour" respawnRandom="12hour" /> <!-- Embryo Garron -->
</spawn>
<spawn>
<npc id="25993" x="30859" y="40926" z="-2992" dbSave="true" dbName="Embryo Nigel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Embryo Nigel -->
<npc id="25993" x="30859" y="40926" z="-2992" heading="0" dbSave="true" dbName="Embryo Nigel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Embryo Nigel -->
</spawn>
<spawn>
<npc id="25994" x="42112" y="61122" z="-3488" dbSave="true" dbName="Embryo Dabos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Embryo Dabos -->
<npc id="25994" x="42112" y="61122" z="-3488" heading="0" dbSave="true" dbName="Embryo Dabos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Embryo Dabos -->
</spawn>
<spawn>
<npc id="26000" x="-95911" y="115798" z="-3311" dbSave="true" dbName="Amden Orc Turahot" respawnTime="24hour" respawnRandom="12hour" /> <!-- Amden Orc Turahot -->
<npc id="26000" x="-95911" y="115798" z="-3311" heading="0" dbSave="true" dbName="Amden Orc Turahot" respawnTime="24hour" respawnRandom="12hour" /> <!-- Amden Orc Turahot -->
</spawn>
<spawn>
<npc id="26001" x="-98930" y="115921" z="-3296" dbSave="true" dbName="Amden Orc Turation" respawnTime="24hour" respawnRandom="12hour" /> <!-- Amden Orc Turation -->
<npc id="26001" x="-98930" y="115921" z="-3296" heading="0" dbSave="true" dbName="Amden Orc Turation" respawnTime="24hour" respawnRandom="12hour" /> <!-- Amden Orc Turation -->
</spawn>
<spawn>
<npc id="26002" x="-101797" y="114993" z="-3536" dbSave="true" dbName="Amden Orc Turamathia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Amden Orc Turamathia -->
<npc id="26002" x="-101797" y="114993" z="-3536" heading="0" dbSave="true" dbName="Amden Orc Turamathia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Amden Orc Turamathia -->
</spawn>
<spawn>
<npc id="26003" x="-101713" y="100922" z="-3080" dbSave="true" dbName="Amden Orc Turabait" respawnTime="24hour" respawnRandom="12hour" /> <!-- Amden Orc Turabait -->
<npc id="26003" x="-101713" y="100922" z="-3080" heading="0" dbSave="true" dbName="Amden Orc Turabait" respawnTime="24hour" respawnRandom="12hour" /> <!-- Amden Orc Turabait -->
</spawn>
<spawn>
<npc id="26004" x="-90176" y="92170" z="-3048" dbSave="true" dbName="Nerva Orc Nermion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Nerva Orc Nermion -->
<npc id="26004" x="-90176" y="92170" z="-3048" heading="0" dbSave="true" dbName="Nerva Orc Nermion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Nerva Orc Nermion -->
</spawn>
<spawn>
<npc id="26005" x="-89700" y="97002" z="-3592" dbSave="true" dbName="Nerva Orc Nergatt" respawnTime="24hour" respawnRandom="12hour" /> <!-- Nerva Orc Nergatt -->
<npc id="26005" x="-89700" y="97002" z="-3592" heading="0" dbSave="true" dbName="Nerva Orc Nergatt" respawnTime="24hour" respawnRandom="12hour" /> <!-- Nerva Orc Nergatt -->
</spawn>
<spawn>
<npc id="26011" x="-24886" y="47067" z="-3752" dbSave="true" dbName="Bloody Earth Dragon Gagia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Bloody Earth Dragon Gagia -->
<npc id="26011" x="-24886" y="47067" z="-3752" heading="0" dbSave="true" dbName="Bloody Earth Dragon Gagia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Bloody Earth Dragon Gagia -->
</spawn>
<spawn>
<npc id="26012" x="-29500" y="19914" z="-3519" dbSave="true" dbName="Demon Fardune" respawnTime="24hour" respawnRandom="12hour" /> <!-- Demon Fardune -->
<npc id="26012" x="-29500" y="19914" z="-3519" heading="0" dbSave="true" dbName="Demon Fardune" respawnTime="24hour" respawnRandom="12hour" /> <!-- Demon Fardune -->
</spawn>
<spawn>
<npc id="26013" x="-4760" y="19261" z="-1600" dbSave="true" dbName="Demon Harsia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Demon Harsia -->
<npc id="26013" x="-4760" y="19261" z="-1600" heading="0" dbSave="true" dbName="Demon Harsia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Demon Harsia -->
</spawn>
<spawn>
<npc id="26014" x="-5065" y="38264" z="-3616" dbSave="true" dbName="Demon Bedukel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Demon Bedukel -->
<npc id="26014" x="-5065" y="38264" z="-3616" heading="0" dbSave="true" dbName="Demon Bedukel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Demon Bedukel -->
</spawn>
<spawn>
<npc id="26015" x="-31082" y="32233" z="-3357" dbSave="true" dbName="Bloody Witch Rumilla" respawnTime="24hour" respawnRandom="12hour" /> <!-- Bloody Witch Rumilla -->
<npc id="26015" x="-31082" y="32233" z="-3357" heading="0" dbSave="true" dbName="Bloody Witch Rumilla" respawnTime="24hour" respawnRandom="12hour" /> <!-- Bloody Witch Rumilla -->
</spawn>
<spawn>
<npc id="26016" x="-4976" y="55093" z="-732" dbSave="true" dbName="Shilen's Priest Sasia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Shilen's Priest Sasia -->
<npc id="26016" x="-4976" y="55093" z="-732" heading="0" dbSave="true" dbName="Shilen's Priest Sasia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Shilen's Priest Sasia -->
</spawn>
<spawn>
<npc id="26022" x="187662" y="12009" z="-2683" dbSave="true" dbName="Dark Messenger Afjak" respawnTime="24hour" respawnRandom="12hour" /> <!-- Dark Messenger Afjak -->
<npc id="26022" x="187662" y="12009" z="-2683" heading="0" dbSave="true" dbName="Dark Messenger Afjak" respawnTime="24hour" respawnRandom="12hour" /> <!-- Dark Messenger Afjak -->
</spawn>
<spawn>
<npc id="26023" x="183944" y="25233" z="-3328" dbSave="true" dbName="Dusk Knight Feilnor" respawnTime="24hour" respawnRandom="12hour" /> <!-- Dusk Knight Feilnor -->
<npc id="26023" x="183944" y="25233" z="-3328" heading="0" dbSave="true" dbName="Dusk Knight Feilnor" respawnTime="24hour" respawnRandom="12hour" /> <!-- Dusk Knight Feilnor -->
</spawn>
<spawn>
<npc id="26024" x="176277" y="35011" z="-3696" dbSave="true" dbName="Chaos Wizard Amormio" respawnTime="24hour" respawnRandom="12hour" /> <!-- Chaos Wizard Amormio -->
<npc id="26024" x="176277" y="35011" z="-3696" heading="0" dbSave="true" dbName="Chaos Wizard Amormio" respawnTime="24hour" respawnRandom="12hour" /> <!-- Chaos Wizard Amormio -->
</spawn>
<spawn>
<npc id="26025" x="162020" y="24088" z="-3728" dbSave="true" dbName="Insolence Knight Lahav" respawnTime="24hour" respawnRandom="12hour" /> <!-- Insolence Knight Lahav -->
<npc id="26025" x="162020" y="24088" z="-3728" heading="0" dbSave="true" dbName="Insolence Knight Lahav" respawnTime="24hour" respawnRandom="12hour" /> <!-- Insolence Knight Lahav -->
</spawn>
<spawn>
<npc id="26026" x="164566" y="5238" z="-3537" dbSave="true" dbName="Death Priest Borhunt" respawnTime="24hour" respawnRandom="12hour" /> <!-- Death Priest Borhunt -->
<npc id="26026" x="164566" y="5238" z="-3537" heading="0" dbSave="true" dbName="Death Priest Borhunt" respawnTime="24hour" respawnRandom="12hour" /> <!-- Death Priest Borhunt -->
</spawn>
<spawn>
<npc id="26027" x="179885" y="5746" z="-2708" dbSave="true" dbName="Destruction Knight Zeruel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Destruction Knight Zeruel -->
<npc id="26027" x="179885" y="5746" z="-2708" heading="0" dbSave="true" dbName="Destruction Knight Zeruel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Destruction Knight Zeruel -->
</spawn>
<spawn>
<npc id="26033" x="94712" y="-84407" z="-3750" heading="0" dbSave="true" dbName="Fallen Angel Tiera" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fallen Angel Tiera -->
</spawn>
<spawn>
<npc id="26034" x="69109" y="-87204" z="-2878" heading="0" dbSave="true" dbName="Corrupted Goblier" respawnTime="24hour" respawnRandom="12hour" /> <!-- Corrupted Goblier -->
</spawn>
<spawn>
<npc id="26035" x="77305" y="-92857" z="-3342" heading="0" dbSave="true" dbName="Corrupted Cherkia" respawnTime="24hour" respawnRandom="12hour" /> <!-- Corrupted Cherkia -->
</spawn>
<spawn>
<npc id="26036" x="92226" y="-79863" z="-3654" heading="0" dbSave="true" dbName="Corrupted Harthemon" respawnTime="24hour" respawnRandom="12hour" /> <!-- Corrupted Harthemon -->
</spawn>
<spawn>
<npc id="26037" x="87812" y="-76106" z="-3430" heading="0" dbSave="true" dbName="Corrupted Sarboth" respawnTime="24hour" respawnRandom="12hour" /> <!-- Corrupted Sarboth -->
</spawn>
<spawn>
<npc id="26038" x="74443" y="-71152" z="-3606" heading="0" dbSave="true" dbName="Fallen Angel Eloule" respawnTime="24hour" respawnRandom="12hour" /> <!-- Fallen Angel Eloule -->
</spawn>
<spawn>
<npc id="26044" x="89225" y="171705" z="-3568" heading="0" dbSave="true" dbName="Evil Magikus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Magikus -->
</spawn>
<spawn>
<npc id="26045" x="96205" y="223933" z="-3288" heading="0" dbSave="true" dbName="Kerfaus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Kerfaus -->
</spawn>
<spawn>
<npc id="26046" x="93720" y="208259" z="-3760" heading="0" dbSave="true" dbName="Milinaus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Milinaus -->
</spawn>
<spawn>
<npc id="26047" x="84091" y="198631" z="-3419" heading="0" dbSave="true" dbName="Sarkaus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Sarkaus -->
</spawn>
<spawn>
<npc id="26048" x="72080" y="211021" z="-3288" heading="0" dbSave="true" dbName="Shimeus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Shimeus -->
</spawn>
<spawn>
<npc id="26049" x="91142" y="185819" z="-3584" heading="0" dbSave="true" dbName="Evil Kinigos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Kinigos -->
</spawn>
<spawn>
<npc id="26044" x="89225" y="171705" z="-3568" dbSave="true" dbName="Evil Magikus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Magikus -->
<npc id="26055" x="205950" y="79733" z="474" heading="0" dbSave="true" dbName="Ekidnas Statue Tarstan" respawnTime="24hour" respawnRandom="12hour" /> <!-- Ekidna's Statue Tarstan -->
</spawn>
<spawn>
<npc id="26045" x="96205" y="223933" z="-3288" dbSave="true" dbName="Kerfaus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Kerfaus -->
<npc id="26056" x="205859" y="72285" z="834" heading="0" dbSave="true" dbName="Ekidnas Statue Abelsnif" respawnTime="24hour" respawnRandom="12hour" /> <!-- Ekidna's Statue Abelsnif -->
</spawn>
<spawn>
<npc id="26046" x="93720" y="208259" z="-3760" dbSave="true" dbName="Milinaus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Milinaus -->
<npc id="26057" x="210732" y="77108" z="850" heading="0" dbSave="true" dbName="Ekidnas Statue Kimesis" respawnTime="24hour" respawnRandom="12hour" /> <!-- Ekidna's Statue Kimesis -->
</spawn>
<spawn>
<npc id="26047" x="84091" y="198631" z="-3419" dbSave="true" dbName="Sarkaus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Sarkaus -->
<npc id="26058" x="219266" y="79060" z="1018" heading="0" dbSave="true" dbName="Ekidnas Statue Kathargon" respawnTime="24hour" respawnRandom="12hour" /> <!-- Ekidna's Statue Kathargon -->
</spawn>
<spawn>
<npc id="26048" x="72080" y="211021" z="-3288" dbSave="true" dbName="Shimeus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Shimeus -->
<npc id="26059" x="215061" y="73433" z="1018" heading="0" dbSave="true" dbName="Ekidnas Statue Pantasaus" respawnTime="24hour" respawnRandom="12hour" /> <!-- Ekidna's Statue Pantasaus -->
</spawn>
<spawn>
<npc id="26049" x="91142" y="185819" z="-3584" dbSave="true" dbName="Evil Kinigos" respawnTime="24hour" respawnRandom="12hour" /> <!-- Evil Kinigos -->
<npc id="26060" x="222295" y="73705" z="1290" heading="0" dbSave="true" dbName="Ekidnas Statue Ixignon" respawnTime="24hour" respawnRandom="12hour" /> <!-- Ekidna's Statue Ixignon -->
</spawn>
<spawn>
<npc id="26066" x="134179" y="-56109" z="-3096" dbSave="true" dbName="Enhanced Mahum Radium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Enhanced Mahum Radium -->
<npc id="26066" x="134179" y="-56109" z="-3096" heading="0" dbSave="true" dbName="Enhanced Mahum Radium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Enhanced Mahum Radium -->
</spawn>
<spawn>
<npc id="26067" x="145836" y="-66665" z="-3180" dbSave="true" dbName="Typheron" respawnTime="24hour" respawnRandom="12hour" /> <!-- Typheron -->
<npc id="26067" x="145836" y="-66665" z="-3180" heading="0" dbSave="true" dbName="Typheron" respawnTime="24hour" respawnRandom="12hour" /> <!-- Typheron -->
</spawn>
<spawn>
<npc id="26068" x="153062" y="-53829" z="-2928" dbSave="true" dbName="Timarga" respawnTime="24hour" respawnRandom="12hour" /> <!-- Timarga -->
<npc id="26068" x="153062" y="-53829" z="-2928" heading="0" dbSave="true" dbName="Timarga" respawnTime="24hour" respawnRandom="12hour" /> <!-- Timarga -->
</spawn>
<spawn>
<npc id="26069" x="159851" y="-44086" z="-3520" dbSave="true" dbName="Tycepton" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tycepton -->
<npc id="26069" x="159851" y="-44086" z="-3520" heading="0" dbSave="true" dbName="Tycepton" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tycepton -->
</spawn>
<spawn>
<npc id="26070" x="147983" y="-38919" z="-2280" dbSave="true" dbName="Tiverga" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tiverga -->
<npc id="26070" x="147983" y="-38919" z="-2280" heading="0" dbSave="true" dbName="Tiverga" respawnTime="24hour" respawnRandom="12hour" /> <!-- Tiverga -->
</spawn>
<spawn>
<npc id="26071" x="136002" y="-45711" z="-2656" dbSave="true" dbName="Enhanced Mahum Supercium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Enhanced Mahum Supercium -->
<npc id="26071" x="136002" y="-45711" z="-2656" heading="0" dbSave="true" dbName="Enhanced Mahum Supercium" respawnTime="24hour" respawnRandom="12hour" /> <!-- Enhanced Mahum Supercium -->
</spawn>
<spawn>
<npc id="26077" x="-29832" y="120192" z="-3560" dbSave="true" dbName="Monster Laum" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Laum -->
<npc id="26077" x="-29832" y="120192" z="-3560" heading="0" dbSave="true" dbName="Monster Laum" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Laum -->
</spawn>
<spawn>
<npc id="26078" x="-28297" y="111771" z="-3600" dbSave="true" dbName="Monster Minotaur" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Minotaur -->
<npc id="26078" x="-28297" y="111771" z="-3600" heading="0" dbSave="true" dbName="Monster Minotaur" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Minotaur -->
</spawn>
<spawn>
<npc id="26079" x="-26884" y="94254" z="-3608" dbSave="true" dbName="Monster Sarga" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Sarga -->
<npc id="26079" x="-26884" y="94254" z="-3608" heading="0" dbSave="true" dbName="Monster Sarga" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Sarga -->
</spawn>
<spawn>
<npc id="26080" x="-41229" y="94801" z="-3847" dbSave="true" dbName="Monster Hogliff" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Hogliff -->
<npc id="26080" x="-41229" y="94801" z="-3847" heading="0" dbSave="true" dbName="Monster Hogliff" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Hogliff -->
</spawn>
<spawn>
<npc id="26081" x="-43207" y="103868" z="-2704" dbSave="true" dbName="Monster Artarot" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Artarot -->
<npc id="26081" x="-43207" y="103868" z="-2704" heading="0" dbSave="true" dbName="Monster Artarot" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Artarot -->
</spawn>
<spawn>
<npc id="26082" x="-47255" y="96771" z="-3696" dbSave="true" dbName="Monster Centaur" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Centaur -->
<npc id="26082" x="-47255" y="96771" z="-3696" heading="0" dbSave="true" dbName="Monster Centaur" respawnTime="24hour" respawnRandom="12hour" /> <!-- Monster Centaur -->
</spawn>
<spawn>
<npc id="26131" x="-50592" y="83219" z="-5129" dbSave="true" dbName="Isabella" respawnTime="24hour" respawnRandom="12hour" /> <!-- Isabella -->
<npc id="26131" x="-50592" y="83219" z="-5129" heading="0" dbSave="true" dbName="Isabella" respawnTime="24hour" respawnRandom="12hour" /> <!-- Isabella -->
</spawn>
<spawn>
<npc id="25875" x="-17793" y="12536" z="-3296" heading="7324" dbSave="true" dbName="Queen of Darkness" respawnTime="24hour" respawnRandom="12hour" /> <!-- Queen of Darkness -->
@@ -1908,11 +1944,32 @@
<spawn>
<npc id="25698" x="-213006" y="175614" z="-11953" heading="16141" dbSave="true" dbName="Dopagen" respawnTime="24hour" respawnRandom="12hour" /> <!-- Dopagen -->
</spawn>
<spawn>
<npc id="25927" x="-18328" y="-114704" z="-4088" heading="8331" dbSave="true" dbName="Krogel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Krogel -->
</spawn>
<spawn>
<npc id="25928" x="16278" y="-119509" z="-880" heading="25269" dbSave="true" dbName="Tebot" respawnTime="24hour" respawnRandom="12hour" /> <!-- Krogel -->
</spawn>
<spawn>
<npc id="25929" x="16125" y="-119266" z="-872" heading="50450" dbSave="true" dbName="Tegaffe" respawnTime="24hour" respawnRandom="12hour" /> <!-- Krogel -->
</spawn>
<spawn>
<npc id="25930" x="16086" y="-119455" z="-880" heading="7324" dbSave="true" dbName="Thesakar" respawnTime="24hour" respawnRandom="12hour" /> <!-- Krogel -->
</spawn>
<spawn>
<npc id="25931" x="16037" y="-119436" z="-880" heading="38391" dbSave="true" dbName="Theor" respawnTime="24hour" respawnRandom="12hour" /> <!-- Theor -->
</spawn>
<spawn>
<npc id="25927" x="-18328" y="-114704" z="-4088" heading="8331" dbSave="true" dbName="Krogel" respawnTime="24hour" respawnRandom="12hour" /> <!-- Krogel -->
<npc id="25932" x="-13255" y="46299" z="-3648" heading="0" dbSave="true" dbName="Transformed: Dartanion" respawnTime="24hour" respawnRandom="12hour" /> <!-- Transformed: Dartanion -->
</spawn>
<spawn>
<npc id="25933" x="206842" y="108263" z="-2125" heading="0" dbSave="true" dbName="Garden Patrol Captain" respawnTime="24hour" respawnRandom="12hour" /> <!-- Garden Patrol Captain -->
</spawn>
<spawn>
<npc id="25937" x="-84084" y="59598" z="-2608" heading="0" dbSave="true" dbName="Spicula Negative" respawnTime="24Hour" respawnRandom="12hour" /> <!-- Spicula Negative -->
</spawn>
<spawn>
<npc id="26137" x="191869" y="56112" z="-7626" heading="34264" dbSave="true" dbName="Mimir" respawnTime="24Hour" respawnRandom="12hour" /> <!-- Mimir -->
</spawn>
<spawn>
<npc id="26162" x="140047" y="183193" z="-3680" heading="0" dbSave="true" dbName="Demon Worshipper Dorgon" respawnTime="24Hour" respawnRandom="12hour" /> <!-- Demon Worshipper Dorgon -->
@@ -1938,9 +1995,6 @@
<spawn>
<npc id="26173" x="157277" y="169834" z="-3504" heading="0" dbSave="true" dbName="Lebruum" respawnTime="24Hour" respawnRandom="12hour" /> <!-- Lebruum -->
</spawn>
<spawn>
<npc id="26186" x="-57560" y="66816" z="-3336" heading="0" dbSave="true" dbName="Wandering Croamis" respawnTime="24Hour" respawnRandom="12hour" /> <!-- Wandering Croamis -->
</spawn>
<spawn>
<npc id="26178" x="-34495" y="38072" z="-3328" heading="0" dbSave="true" dbName="Berserker Hard" respawnTime="24Hour" respawnRandom="12hour" /> <!-- Berserker Hard -->
</spawn>
@@ -1953,6 +2007,9 @@
<spawn>
<npc id="26181" x="-39351" y="60750" z="-3376" heading="0" dbSave="true" dbName="Dark Wizard Ruby" respawnTime="24Hour" respawnRandom="12hour" /> <!-- Dark Wizard Ruby -->
</spawn>
<spawn>
<npc id="26186" x="-57560" y="66816" z="-3336" heading="0" dbSave="true" dbName="Wandering Croamis" respawnTime="24Hour" respawnRandom="12hour" /> <!-- Wandering Croamis -->
</spawn>
<spawn>
<npc id="26187" x="-64939" y="81990" z="-3376" heading="0" dbSave="true" dbName="Wandering Harpe" respawnTime="24Hour" respawnRandom="12hour" /> <!-- Wandering Harpe -->
</spawn>
@@ -1962,7 +2019,4 @@
<spawn>
<npc id="26189" x="-57562" y="86979" z="-3600" heading="0" dbSave="true" dbName="Wandering Purka" respawnTime="24Hour" respawnRandom="12hour" /> <!-- Wandering Purka -->
</spawn>
<spawn>
<npc id="25937" x="-84084" y="59598" z="-2608" heading="0" dbSave="true" dbName="Spicula Negative" respawnTime="24Hour" respawnRandom="12hour" /> <!-- Spicula Negative -->
</spawn>
</list>

View File

@@ -1,7 +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="23700" level="100" type="L2Npc" name="Altar Guardian">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -10,15 +9,18 @@
<walk ground="60" />
<run ground="240" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="9" />
<height normal="23" />
</collision>
</npc>
<npc id="23701" level="100" type="L2Npc" name="Knight Guard" title="Dragonclaw Clan">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -27,15 +29,18 @@
<walk ground="60" />
<run ground="200" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="9" />
<height normal="18" />
</collision>
</npc>
<npc id="23702" level="101" type="L2Npc" name="Duran" title="Dragonclaw Royal Guard">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -44,15 +49,18 @@
<walk ground="60" />
<run ground="200" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="9" />
<height normal="23" />
</collision>
</npc>
<npc id="23703" level="101" type="L2Npc" name="Ice Knight" title="Winter Omen">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMANOID</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -61,8 +69,12 @@
<walk ground="20" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="5463" level="1" /> <!-- Water Attack -->
<skill id="4416" level="6" /> <!-- Humanoids -->
@@ -73,7 +85,6 @@
</collision>
</npc>
<npc id="23704" level="101" type="L2Npc" name="Ifrit" title="Master of Flames">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ELEMENTAL</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -82,8 +93,12 @@
<walk ground="38" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="5462" level="1" /> <!-- Fire Attack -->
<skill id="4416" level="7" /> <!-- Spirits -->
@@ -94,7 +109,6 @@
</collision>
</npc>
<npc id="23705" level="101" type="L2Npc" name="Arimanes" title="Master of Flames">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>DEMONIC</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -103,8 +117,12 @@
<walk ground="35" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="5462" level="1" /> <!-- Fire Attack -->
<skill id="4416" level="9" /> <!-- Demons -->
@@ -115,7 +133,6 @@
</collision>
</npc>
<npc id="23706" level="100" type="L2Npc" name="Kelbim's Follower">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -124,15 +141,18 @@
<walk ground="60" />
<run ground="200" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="7.5" />
<height normal="24" />
</collision>
</npc>
<npc id="23707" level="100" type="L2Npc" name="Kelbim's Follower">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -141,15 +161,18 @@
<walk ground="60" />
<run ground="200" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="7" />
<height normal="27" />
</collision>
</npc>
<npc id="23708" level="100" type="L2Npc" name="Kelbim's Follower">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -158,15 +181,18 @@
<walk ground="60" />
<run ground="200" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="9" />
<height normal="18" />
</collision>
</npc>
<npc id="23709" level="100" type="L2Npc" name="Flame Scarab">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>BUG</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -175,8 +201,12 @@
<walk ground="45" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="5462" level="1" /> <!-- Fire Attack -->
<skill id="4416" level="12" /> <!-- Bugs -->
@@ -187,7 +217,6 @@
</collision>
</npc>
<npc id="23710" level="100" type="L2Npc" name="Knight Guardian">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -196,15 +225,18 @@
<walk ground="60" />
<run ground="200" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="7.5" />
<height normal="24" />
</collision>
</npc>
<npc id="23711" level="100" type="L2Npc" name="Altar Guardian Soldier">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -213,15 +245,18 @@
<walk ground="60" />
<run ground="200" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="7" />
<height normal="27" />
</collision>
</npc>
<npc id="23712" level="100" type="L2Npc" name="Altar Guardian Archer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<equipment rhand="15302" />
@@ -231,15 +266,18 @@
<walk ground="60" />
<run ground="200" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="7.5" />
<height normal="24" />
</collision>
</npc>
<npc id="23713" level="100" type="L2Npc" name="Altar Guardian Wizard">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -248,8 +286,12 @@
<walk ground="60" />
<run ground="200" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="6.5" />
<height normal="22.5" />
@@ -290,7 +332,6 @@
</collision>
</npc>
<npc id="23716" level="100" type="L2Npc" name="Wild Hog Cannon">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -299,15 +340,18 @@
<walk ground="10" />
<run ground="200" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="46.5" />
<height normal="43.5" />
</collision>
</npc>
<npc id="23717" level="100" type="L2Npc" name="Siege Golem">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -316,8 +360,12 @@
<walk ground="70" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="50" />
<height normal="68" />
@@ -354,8 +402,12 @@
<walk ground="36" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="5463" level="1" /> <!-- Water Attack -->
<skill id="4416" level="6" /> <!-- Humanoids -->
@@ -401,7 +453,6 @@
</drop_lists>
</npc>
<npc id="23721" level="100" type="L2Npc" name="Maze Buffalo">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>BEAST</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -410,8 +461,12 @@
<walk ground="20" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="5463" level="1" /> <!-- Water Attack -->
<skill id="4416" level="3" /> <!-- Beast -->
@@ -469,7 +524,6 @@
</drop_lists>
</npc>
<npc id="23723" level="100" type="L2Npc" name="Frost Ursus">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ANIMAL</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -478,8 +532,12 @@
<walk ground="40" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="5463" level="1" /> <!-- Water Attack -->
<skill id="4416" level="4" /> <!-- Animals -->
@@ -569,7 +627,6 @@
</drop_lists>
</npc>
<npc id="23726" level="100" type="L2Npc" name="Frost Glacier Golem">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ELEMENTAL</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -578,8 +635,12 @@
<walk ground="60" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="5463" level="1" /> <!-- Water Attack -->
<skill id="4416" level="7" /> <!-- Spirits -->
@@ -848,6 +909,11 @@
<walk ground="55" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<skill_list>
<skill id="4416" level="11" /> <!-- Giants -->
@@ -2252,8 +2318,8 @@
<walk ground="55" />
<run ground="180" />
</speed>
<attack physical="5808036.47781" magical="2904018.0" critical="8" attackSpeed="398" range="40" />
<defence physical="16590" magical="22114" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="40" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<abnormalResist physical="10" magical="10" />
</stats>
<skill_list>
@@ -2312,8 +2378,8 @@
<walk ground="55" />
<run ground="190" />
</speed>
<attack physical="3608421.13759" magical="2904018.0" critical="8" attackSpeed="398" range="900" />
<defence physical="32114" magical="19990" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="900" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<abnormalResist physical="10" magical="10" />
</stats>
<skill_list>
@@ -2371,8 +2437,8 @@
<walk ground="55" />
<run ground="180" />
</speed>
<attack physical="5808036.47781" magical="2904018.0" critical="8" attackSpeed="398" range="40" />
<defence physical="16590" magical="22114" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="40" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<abnormalResist physical="10" magical="10" />
</stats>
<skill_list>
@@ -2431,8 +2497,8 @@
<walk ground="55" />
<run ground="180" />
</speed>
<attack physical="5996234.35514" magical="2997813.0" critical="8" attackSpeed="398" range="40" />
<defence physical="17778" magical="17778" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="40" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<abnormalResist physical="10" magical="10" />
</stats>
<skill_list>
@@ -2492,8 +2558,8 @@
<walk ground="55" />
<run ground="190" />
</speed>
<attack physical="5996234.35514" magical="2997813.0" critical="8" attackSpeed="398" range="900" />
<defence physical="17092" magical="22559" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="900" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<abnormalResist physical="10" magical="10" />
</stats>
<skill_list>
@@ -2550,8 +2616,8 @@
<walk ground="55" />
<run ground="180" />
</speed>
<attack physical="3812228.123127" magical="2153313.0" critical="8" attackSpeed="398" range="40" />
<defence physical="19092" magical="25559" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="40" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<abnormalResist physical="10" magical="10" />
</stats>
<skill_list>
@@ -2608,8 +2674,8 @@
<walk ground="40" />
<run ground="180" />
</speed>
<attack physical="5996234.35514" magical="2997813.0" critical="8" attackSpeed="398" range="40" />
<defence physical="17778" magical="17778" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="40" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<abnormalResist physical="10" magical="10" />
</stats>
<skill_list>
@@ -2671,8 +2737,8 @@
<walk ground="55" />
<run ground="190" />
</speed>
<attack physical="3812228.123127" magical="2153313.0" critical="8" attackSpeed="398" range="900" />
<defence physical="19092" magical="25559" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="900" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<abnormalResist physical="10" magical="10" />
</stats>
<skill_list>
@@ -2731,8 +2797,8 @@
<walk ground="55" />
<run ground="180" />
</speed>
<attack physical="3812228.123127" magical="2153313.0" critical="8" attackSpeed="398" range="40" />
<defence physical="19092" magical="25559" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="40" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<abnormalResist physical="10" magical="10" />
</stats>
<skill_list>
@@ -2791,8 +2857,8 @@
<walk ground="40" />
<run ground="180" />
</speed>
<attack physical="7219299.643177" magical="3956372.0" critical="8" attackSpeed="398" range="40" />
<defence physical="28555" magical="31279" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="40" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<abnormalResist physical="10" magical="10" />
</stats>
<skill_list>
@@ -2893,8 +2959,8 @@
<acquire exp="92292843" sp="92387" />
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
<vitals hp="245880" hpRegen="11.5" mp="24690" mpRegen="3.9" />
<attack physical="51282" magical="13384" random="50" critical="4" accuracy="91" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="7495" magical="1956" />
<attack physical="49047.619047619" magical="8655.46218487395" random="50" critical="4" accuracy="91" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<attribute>
<defence fire="150" water="200" wind="200" earth="200" holy="200" dark="200" />
<attack type="EARTH" value="280" />
@@ -2935,8 +3001,8 @@
<acquire exp="92292843" sp="92387" />
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
<vitals hp="245880" hpRegen="11.5" mp="24690" mpRegen="3.9" />
<attack physical="51282" magical="13384" random="50" critical="4" accuracy="91" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="7495" magical="1956" />
<attack physical="49047.619047619" magical="8655.46218487395" random="50" critical="4" accuracy="91" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<attribute>
<defence fire="150" water="200" wind="200" earth="200" holy="200" dark="200" />
<attack type="EARTH" value="280" />
@@ -2977,8 +3043,8 @@
<acquire exp="92292843" sp="92387" />
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
<vitals hp="245880" hpRegen="11.5" mp="24690" mpRegen="3.9" />
<attack physical="51282" magical="13384" random="50" critical="4" accuracy="91" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="7495" magical="1956" />
<attack physical="49047.619047619" magical="8655.46218487395" random="50" critical="4" accuracy="91" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<attribute>
<defence fire="150" water="200" wind="200" earth="200" holy="200" dark="200" />
<attack type="EARTH" value="280" />
@@ -3017,8 +3083,8 @@
<acquire exp="92292843" sp="92387" />
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
<vitals hp="245880" hpRegen="11.5" mp="24690" mpRegen="3.9" />
<attack physical="51282" magical="13384" random="50" critical="4" accuracy="91" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="7495" magical="1956" />
<attack physical="49047.619047619" magical="8655.46218487395" random="50" critical="4" accuracy="91" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<attribute>
<defence fire="150" water="200" wind="200" earth="200" holy="200" dark="200" />
<attack type="EARTH" value="280" />
@@ -3235,8 +3301,11 @@
<acquire exp="908048947" sp="908061" />
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
<vitals hp="283012" hpRegen="11.5" mp="24308" mpRegen="3.9" />
<attack physical="48571.42857142857" magical="8571.428571428571" critical="4" attackSpeed="253" range="40" />
<defence physical="3777.777777777778" magical="2193.548387096774" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="40" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
<speed>
<walk ground="55" />
<run ground="140" />
@@ -3284,8 +3353,11 @@
<equipment rhand="15304" />
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
<vitals hp="283012" hpRegen="11.5" mp="24308" mpRegen="3.9" />
<attack physical="48571.42857142857" magical="8571.428571428571" critical="4" attackSpeed="253" range="40" />
<defence physical="3777.777777777778" magical="2193.548387096774" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="900" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
<speed>
<walk ground="55" />
<run ground="140" />

View File

@@ -1,7 +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="23800" level="102" type="L2Monster" name="Delta Kshana" title="Superion Scout">
<!-- NEED TO CHECK IF ITS THE SAME STATS AS NPC ID: 23776 -->
<race>GIANT</race>
<acquire exp="908048947" sp="908061" />
<stats>
@@ -10,6 +9,11 @@
<walk ground="55" />
<run ground="140" />
</speed>
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="40" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<skill_list>
<skill id="4416" level="11" /> <!-- Giants -->
@@ -119,8 +123,7 @@
</drop_lists>
</npc>
<npc id="23803" level="101" type="L2Monster" name="Gigantic Healer">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<!-- Gigantic Healer ?? -->
<!-- Gigantic Healer -->
<race>DIVINE</race>
<acquire exp="13963332" sp="13975" />
<equipment rhand="5793" />
@@ -130,6 +133,11 @@
<walk ground="49" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<collision>
<radius normal="10" />

View File

@@ -146,12 +146,15 @@
</collision>
</npc>
<npc id="25902" level="96" type="L2RaidBoss" name="Gigantic Golem" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<parameters>
<skill name="Skill01_ID" id="15369" level="1" />
<skill name="Skill02_ID" id="15367" level="1" />
<param name="Skill01_Probablity" value="300" />
<param name="Skill02_Probablity" value="500" />
<minions name="Privates">
<npc id="25903" count="2" respawnTime="360" weightPoint="1" />
<npc id="25904" count="2" respawnTime="360" weightPoint="1" />
</minions>
</parameters>
<race>CONSTRUCT</race>
<sex>MALE</sex>
@@ -245,7 +248,6 @@
</collision>
</npc>
<npc id="25903" level="95" type="L2Monster" name="Gigantic Golem Subordinate">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<parameters>
<skill name="Skill01_ID" id="15370" level="1" />
</parameters>
@@ -280,7 +282,6 @@
</collision>
</npc>
<npc id="25904" level="95" type="L2Monster" name="Gigantic Golem Subordinate">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<parameters>
<skill name="Skill01_ID" id="15371" level="1" />
</parameters>
@@ -1762,7 +1763,13 @@
</collision>
</npc>
<npc id="25933" level="93" type="L2RaidBoss" name="Garden Patrol Captain" title="Raid Boss">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<parameters>
<minions name="Privates">
<npc id="25934" count="1" respawnTime="360" weightPoint="1" />
<npc id="25935" count="1" respawnTime="360" weightPoint="1" />
<npc id="25936" count="1" respawnTime="360" weightPoint="1" />
</minions>
</parameters>
<race>HUMANOID</race>
<sex>FEMALE</sex>
<acquire exp="3969891000" sp="952773" raidPoints="30" />
@@ -1778,7 +1785,6 @@
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="4416" level="6" /> <!-- Humanoids -->
<skill id="5465" level="1" /> <!-- Earth Attack -->
@@ -1868,7 +1874,6 @@
</collision>
</npc>
<npc id="25934" level="93" type="L2Monster" name="Garden Patrol Minion" title="Raid Fighter">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>BEAST</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -1883,7 +1888,6 @@
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="4416" level="3" /> <!-- Beast -->
@@ -1894,7 +1898,6 @@
</collision>
</npc>
<npc id="25935" level="93" type="L2Monster" name="Gardener Minion" title="Raid Fighter">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>ANIMAL</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -1909,7 +1912,6 @@
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="4416" level="4" /> <!-- Animals -->
@@ -1920,7 +1922,6 @@
</collision>
</npc>
<npc id="25936" level="93" type="L2Monster" name="Garden Manager Minion" title="Raid Fighter">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMANOID</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -1935,7 +1936,6 @@
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="4416" level="6" /> <!-- Humanoids -->

View File

@@ -2260,6 +2260,21 @@
</npc>
<npc id="26137" level="102" type="L2RaidBoss" name="Mimir" title="Great Sage">
<!-- Source: www.l2wiki.com -->
<parameters>
<skill name="Skill01_ID" id="16590" level="1" />
<skill name="Skill02_ID" id="16591" level="1" />
<skill name="Skill03_ID" id="16592" level="1" />
<skill name="Skill04_ID" id="16593" level="1" />
<param name="Skill01_Probablity" value="500" />
<param name="Skill02_Probablity" value="500" />
<param name="Skill03_Probablity" value="500" />
<param name="Skill04_Probablity" value="500" />
<minions name="Privates">
<npc id="26138" count="2" respawnTime="360" weightPoint="1" />
<npc id="26139" count="1" respawnTime="360" weightPoint="1" />
<npc id="26140" count="1" respawnTime="360" weightPoint="1" />
</minions>
</parameters>
<race>GIANT</race>
<acquire exp="38714665651" sp="77429377" raidPoints="30" />
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -2271,8 +2286,11 @@
<attack physical="48571.4285714286" magical="8571.42857142857" critical="4" attackSpeed="253" range="40" />
<defence physical="3777.77777777778" magical="2193.54838709677" />
</stats>
<status attackable="true" />
<skill_list>
<skill id="16590" level="1" /> <!-- Ancient Power Thunder -->
<skill id="16591" level="1" /> <!-- Ancient Plasma Wave -->
<skill id="16592" level="1" /> <!-- Ancient Earthquake -->
<skill id="16593" level="1" /> <!-- Prayer for the Emperor -->
<skill id="4416" level="11" /> <!-- Giants -->
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="4494" level="1" /> <!-- Raid Boss -->
@@ -2359,13 +2377,17 @@
<item id="39629" min="2" max="2" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_drop>
</drop_lists>
<ai clanHelpRange="400">
<clan_list>
<clan>MIMIR</clan>
</clan_list>
</ai>
<collision>
<radius normal="32" />
<height normal="50.5" />
</collision>
</npc>
<npc id="26138" level="101" type="L2Npc" name="Mimillion Bathus">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<npc id="26138" level="101" type="L2Monster" name="Mimillion Bathus">
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -2374,15 +2396,34 @@
<walk ground="55" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="4416" level="11" /> <!-- Giants -->
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="14823" level="1" /> <!-- Instant Kill Attack Resistance -->
<skill id="16547" level="10" /> <!-- Danger Zone Attack Resistance -->
<skill id="4379" level="5" /> <!-- Spear Resistance -->
<skill id="4435" level="5" /> <!-- High Stun Attack Resistance -->
<skill id="4461" level="1" /> <!-- Dagger/Rapier Vulnerability -->
<skill id="16608" level="1" /> <!-- Servitor Attack Weakness -->
<skill id="4071" level="1" /> <!-- Bow/Crossbow Resistance -->
</skill_list>
<ai clanHelpRange="400">
<clan_list>
<clan>MIMIR</clan>
</clan_list>
</ai>
<collision>
<radius normal="24" />
<height normal="46" />
</collision>
</npc>
<npc id="26139" level="101" type="L2Npc" name="Mimillion Carcass">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<npc id="26139" level="101" type="L2Monster" name="Mimillion Carcass">
<race>HUMAN</race>
<sex>FEMALE</sex>
<equipment rhand="15304" />
@@ -2392,15 +2433,33 @@
<walk ground="55" />
<run ground="190" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="BOW" range="900" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="4416" level="11" /> <!-- Giants -->
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="14823" level="1" /> <!-- Instant Kill Attack Resistance -->
<skill id="16547" level="10" /> <!-- Danger Zone Attack Resistance -->
<skill id="4379" level="5" /> <!-- Spear Resistance -->
<skill id="4461" level="1" /> <!-- Dagger/Rapier Vulnerability -->
<skill id="16608" level="1" /> <!-- Servitor Attack Weakness -->
<skill id="4071" level="1" /> <!-- Bow/Crossbow Resistance -->
</skill_list>
<ai clanHelpRange="400">
<clan_list>
<clan>MIMIR</clan>
</clan_list>
</ai>
<collision>
<radius normal="24" />
<height normal="42.5" />
</collision>
</npc>
<npc id="26140" level="101" type="L2Npc" name="Mimillion Kshana">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<npc id="26140" level="101" type="L2Monster" name="Mimillion Kshana">
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -2409,14 +2468,34 @@
<walk ground="55" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="BLUNT" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="4416" level="11" /> <!-- Giants -->
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="14823" level="1" /> <!-- Instant Kill Attack Resistance -->
<skill id="16547" level="10" /> <!-- Danger Zone Attack Resistance -->
<skill id="4379" level="5" /> <!-- Spear Resistance -->
<skill id="4438" level="5" /> <!-- Greater Sleep Resistance -->
<skill id="4461" level="1" /> <!-- Dagger/Rapier Vulnerability -->
<skill id="16608" level="1" /> <!-- Servitor Attack Weakness -->
<skill id="4071" level="1" /> <!-- Bow/Crossbow Resistance -->
</skill_list>
<ai clanHelpRange="400">
<clan_list>
<clan>MIMIR</clan>
</clan_list>
</ai>
<collision>
<radius normal="24" />
<height normal="47.5" />
</collision>
</npc>
<npc id="26141" level="104" type="L2Monster" name="Ramona" title="Queen">
<npc id="26141" level="104" type="L2RaidBoss" name="Ramona" title="Queen">
<race>GIANT</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -2448,7 +2527,7 @@
<height normal="87" />
</collision>
</npc>
<npc id="26142" level="104" type="L2Monster" name="Ramona" title="Queen">
<npc id="26142" level="104" type="L2RaidBoss" name="Ramona" title="Queen">
<!-- Source: www.l2wiki.com -->
<race>GIANT</race>
<sex>FEMALE</sex>
@@ -2733,6 +2812,23 @@
</npc>
<npc id="26148" level="103" type="L2RaidBoss" name="Enhanced Mimir" title="Helios' Calling">
<!-- Source: www.l2wiki.com -->
<parameters>
<skill name="Skill01_ID" id="16590" level="1" />
<skill name="Skill02_ID" id="16591" level="1" />
<skill name="Skill03_ID" id="16592" level="1" />
<skill name="Skill04_ID" id="16593" level="1" />
<skill name="Skill05_ID" id="16596" level="1" />
<param name="Skill01_Probablity" value="500" />
<param name="Skill02_Probablity" value="500" />
<param name="Skill03_Probablity" value="500" />
<param name="Skill04_Probablity" value="500" />
<param name="Skill05_Probablity" value="1000" />
<minions name="Privates">
<npc id="26149" count="2" respawnTime="360" weightPoint="1" />
<npc id="26150" count="1" respawnTime="360" weightPoint="1" />
<npc id="26151" count="1" respawnTime="360" weightPoint="1" />
</minions>
</parameters>
<race>GIANT</race>
<sex>MALE</sex>
<acquire exp="224175791505" sp="448351616" raidPoints="100" />
@@ -2742,7 +2838,7 @@
<walk ground="55" />
<run ground="180" />
</speed>
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="253" range="40" />
<attack physical="49047.619047619" magical="8655.46218487395" critical="4" attackSpeed="398" range="40" />
<defence physical="3814.81481481481" magical="2215.05376344086" />
</stats>
<skill_list>
@@ -2836,13 +2932,17 @@
<item id="39629" min="3" max="3" chance="100" /> <!-- Fortune Pocket - Stage 1 -->
</lucky_drop>
</drop_lists>
<ai clanHelpRange="400">
<clan_list>
<clan>ENHANCED_MIMIR</clan>
</clan_list>
</ai>
<collision>
<radius normal="32" />
<height normal="50.5" />
</collision>
</npc>
<npc id="26149" level="102" type="L2Monster" name="Enhanced Mimillion Bathus">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -2851,15 +2951,34 @@
<walk ground="55" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="4416" level="11" /> <!-- Giants -->
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="14823" level="1" /> <!-- Instant Kill Attack Resistance -->
<skill id="16547" level="10" /> <!-- Danger Zone Attack Resistance -->
<skill id="4379" level="5" /> <!-- Spear Resistance -->
<skill id="4435" level="5" /> <!-- High Stun Attack Resistance -->
<skill id="4461" level="1" /> <!-- Dagger/Rapier Vulnerability -->
<skill id="16608" level="1" /> <!-- Servitor Attack Weakness -->
<skill id="4071" level="1" /> <!-- Bow/Crossbow Resistance -->
</skill_list>
<ai clanHelpRange="400">
<clan_list>
<clan>ENHANCED_MIMIR</clan>
</clan_list>
</ai>
<collision>
<radius normal="24" />
<height normal="46" />
</collision>
</npc>
<npc id="26150" level="102" type="L2Monster" name="Enhanced Mimillion Carcass">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<equipment rhand="15304" />
@@ -2869,15 +2988,33 @@
<walk ground="55" />
<run ground="190" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="BOW" range="900" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="4416" level="11" /> <!-- Giants -->
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="14823" level="1" /> <!-- Instant Kill Attack Resistance -->
<skill id="16547" level="10" /> <!-- Danger Zone Attack Resistance -->
<skill id="4379" level="5" /> <!-- Spear Resistance -->
<skill id="4461" level="1" /> <!-- Dagger/Rapier Vulnerability -->
<skill id="16608" level="1" /> <!-- Servitor Attack Weakness -->
<skill id="4071" level="1" /> <!-- Bow/Crossbow Resistance -->
</skill_list>
<ai clanHelpRange="400">
<clan_list>
<clan>ENHANCED_MIMIR</clan>
</clan_list>
</ai>
<collision>
<radius normal="24" />
<height normal="42.5" />
</collision>
</npc>
<npc id="26151" level="102" type="L2Monster" name="Enhanced Mimillion Kshana">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -2886,8 +3023,28 @@
<walk ground="55" />
<run ground="180" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="BLUNT" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<skill_list>
<skill id="4416" level="11" /> <!-- Giants -->
<skill id="5465" level="1" /> <!-- Earth Attack -->
<skill id="14823" level="1" /> <!-- Instant Kill Attack Resistance -->
<skill id="16547" level="10" /> <!-- Danger Zone Attack Resistance -->
<skill id="4379" level="5" /> <!-- Spear Resistance -->
<skill id="4438" level="5" /> <!-- Greater Sleep Resistance -->
<skill id="4461" level="1" /> <!-- Dagger/Rapier Vulnerability -->
<skill id="16608" level="1" /> <!-- Servitor Attack Weakness -->
<skill id="4071" level="1" /> <!-- Bow/Crossbow Resistance -->
</skill_list>
<ai clanHelpRange="400">
<clan_list>
<clan>ENHANCED_MIMIR</clan>
</clan_list>
</ai>
<collision>
<radius normal="24" />
<height normal="47.5" />
@@ -4197,7 +4354,6 @@
</collision>
</npc>
<npc id="26174" level="101" type="L2Npc" name="Enslaved Chrysocolla" title="Raid Minion">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -4206,15 +4362,18 @@
<walk ground="54" />
<run ground="230" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="27.2" />
<height normal="37" />
</collision>
</npc>
<npc id="26175" level="101" type="L2Npc" name="Slave Foreman Archer" title="Raid Minion">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<npc id="26175" level="101" type="L2Npc" name="Slave Foreman Archer" title="Raid Minion"> <!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<equipment rhand="15302" />
@@ -4224,15 +4383,18 @@
<walk ground="45" />
<run ground="220" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="18" />
<height normal="27.5" />
</collision>
</npc>
<npc id="26176" level="101" type="L2Npc" name="Enslaved Pythia" title="Raid Minion">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<equipment rhand="9638" lhand="9638" />
@@ -4242,15 +4404,18 @@
<walk ground="60" />
<run ground="160" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="20" />
<height normal="27.5" />
</collision>
</npc>
<npc id="26177" level="101" type="L2Npc" name="Slaver Foreman Healer" title="Raid Minion">
<!-- AUTO GENERATED NPC TODO: FIX IT -->
<race>HUMAN</race>
<sex>FEMALE</sex>
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
@@ -4259,8 +4424,12 @@
<walk ground="45" />
<run ground="170" />
</speed>
<attack physical="23610.1029394933" magical="5767.28134561036" random="10" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
<defence physical="3839.95121517957" magical="2066.69244923556" />
<attribute>
<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
</attribute>
</stats>
<status attackable="false" />
<collision>
<radius normal="20" />
<height normal="32.5" />