Updated Plains of the Lizardmen area.
Contributed by Edoo.
This commit is contained in:
parent
2d5aa96a31
commit
e57c672035
@ -1,243 +0,0 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.PlainsOfLizardman;
|
||||
|
||||
import org.l2jmobius.gameserver.ai.CtrlIntention;
|
||||
import org.l2jmobius.gameserver.model.Location;
|
||||
import org.l2jmobius.gameserver.model.World;
|
||||
import org.l2jmobius.gameserver.model.actor.Attackable;
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.Playable;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
|
||||
import org.l2jmobius.gameserver.model.holders.SkillHolder;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Plains of Lizardmen AI.
|
||||
* @author Gnacik, malyelfik
|
||||
*/
|
||||
public class PlainsOfLizardman extends AbstractNpcAI
|
||||
{
|
||||
// NPCs
|
||||
private static final int INVISIBLE_NPC = 18919;
|
||||
private static final int TANTA_GUARD = 18862;
|
||||
private static final int FANTASY_MUSHROOM = 18864;
|
||||
private static final int STICKY_MUSHROOM = 18865;
|
||||
private static final int RAINBOW_FROG = 18866;
|
||||
private static final int ENERGY_PLANT = 18868;
|
||||
private static final int TANTA_SCOUT = 22768;
|
||||
private static final int TANTA_MAGICIAN = 22773;
|
||||
private static final int TANTA_SUMMONER = 22774;
|
||||
private static final int[] TANTA_LIZARDMEN =
|
||||
{
|
||||
22768, // Tanta Lizardman Scout
|
||||
22769, // Tanta Lizardman Warrior
|
||||
22770, // Tanta Lizardman Soldier
|
||||
22771, // Tanta Lizardman Berserker
|
||||
22772, // Tanta Lizardman Archer
|
||||
22773, // Tanta Lizardman Magician
|
||||
22774, // Tanta Lizardman Summoner
|
||||
};
|
||||
// Skills
|
||||
private static final SkillHolder STUN_EFFECT = new SkillHolder(6622, 1);
|
||||
private static final SkillHolder DEMOTIVATION_HEX = new SkillHolder(6425, 1);
|
||||
private static final SkillHolder FANTASY_MUSHROOM_SKILL = new SkillHolder(6427, 1);
|
||||
private static final SkillHolder RAINBOW_FROG_SKILL = new SkillHolder(6429, 1);
|
||||
private static final SkillHolder STICKY_MUSHROOM_SKILL = new SkillHolder(6428, 1);
|
||||
private static final SkillHolder ENERGY_PLANT_SKILL = new SkillHolder(6430, 1);
|
||||
// Buffs
|
||||
private static final SkillHolder[] BUFFS =
|
||||
{
|
||||
new SkillHolder(6625, 1), // Energy of Life
|
||||
new SkillHolder(6626, 1), // Energy of Life's Power
|
||||
new SkillHolder(6627, 1), // Energy of Life's Highest Power
|
||||
new SkillHolder(6628, 1), // Energy of Mana
|
||||
new SkillHolder(6629, 1), // Energy of Mana's Power
|
||||
new SkillHolder(6630, 1), // Energy of Mana's Highest Power
|
||||
new SkillHolder(6631, 1), // Energy of Power
|
||||
new SkillHolder(6633, 1), // Energy of Attack Speed
|
||||
new SkillHolder(6635, 1), // Energy of Crt Rate
|
||||
new SkillHolder(6636, 1), // Energy of Moving Speed
|
||||
new SkillHolder(6638, 1), // Aura of Mystery
|
||||
new SkillHolder(6639, 1), // Bane of Auras - Damage
|
||||
new SkillHolder(6640, 1), // Energizing Aura
|
||||
new SkillHolder(6674, 1), // Energy of Range Increment
|
||||
};
|
||||
// Misc
|
||||
// @formatter:off
|
||||
private static final int[] BUFF_LIST =
|
||||
{
|
||||
6, 7, 8, 11, 13
|
||||
};
|
||||
// @formatter:on
|
||||
|
||||
private PlainsOfLizardman()
|
||||
{
|
||||
addAttackId(FANTASY_MUSHROOM, RAINBOW_FROG, STICKY_MUSHROOM, ENERGY_PLANT, TANTA_SUMMONER);
|
||||
addKillId(TANTA_LIZARDMEN);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, Npc npc, PlayerInstance player)
|
||||
{
|
||||
if (event.equals("fantasy_mushroom") && (npc != null) && (player != null))
|
||||
{
|
||||
npc.doCast(FANTASY_MUSHROOM_SKILL.getSkill());
|
||||
World.getInstance().forEachVisibleObjectInRange(npc, Attackable.class, 200, monster ->
|
||||
{
|
||||
npc.setTarget(monster);
|
||||
npc.doCast(STUN_EFFECT.getSkill());
|
||||
addAttackPlayerDesire(monster, player);
|
||||
});
|
||||
npc.doDie(player);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAttack(Npc npc, PlayerInstance attacker, int damage, boolean isSummon)
|
||||
{
|
||||
switch (npc.getId())
|
||||
{
|
||||
case TANTA_SUMMONER:
|
||||
{
|
||||
if (!npc.isAffectedBySkill(DEMOTIVATION_HEX.getSkillId()))
|
||||
{
|
||||
npc.doCast(DEMOTIVATION_HEX.getSkill());
|
||||
}
|
||||
break;
|
||||
}
|
||||
case RAINBOW_FROG:
|
||||
{
|
||||
castSkill(npc, attacker, RAINBOW_FROG_SKILL);
|
||||
break;
|
||||
}
|
||||
case ENERGY_PLANT:
|
||||
{
|
||||
castSkill(npc, attacker, ENERGY_PLANT_SKILL);
|
||||
break;
|
||||
}
|
||||
case STICKY_MUSHROOM:
|
||||
{
|
||||
castSkill(npc, attacker, STICKY_MUSHROOM_SKILL);
|
||||
break;
|
||||
}
|
||||
case FANTASY_MUSHROOM:
|
||||
{
|
||||
if (npc.isScriptValue(0))
|
||||
{
|
||||
npc.setScriptValue(1);
|
||||
npc.setIsInvul(true);
|
||||
World.getInstance().forEachVisibleObjectInRange(npc, Attackable.class, 1000, monster ->
|
||||
{
|
||||
if ((monster.getId() == TANTA_MAGICIAN) || (monster.getId() == TANTA_SCOUT))
|
||||
{
|
||||
monster.setRunning();
|
||||
monster.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, new Location(npc.getX(), npc.getY(), npc.getZ(), 0));
|
||||
}
|
||||
});
|
||||
startQuestTimer("fantasy_mushroom", 4000, npc, attacker);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
return super.onAttack(npc, attacker, damage, isSummon);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onKill(Npc npc, PlayerInstance killer, boolean isSummon)
|
||||
{
|
||||
// Tanta Guard
|
||||
if (getRandom(1000) == 0)
|
||||
{
|
||||
addAttackPlayerDesire(addSpawn(TANTA_GUARD, npc), killer);
|
||||
}
|
||||
|
||||
// Invisible buff npc
|
||||
final int random = getRandom(100);
|
||||
final Npc buffer = addSpawn(INVISIBLE_NPC, npc.getLocation(), false, 6000);
|
||||
buffer.setTarget(killer);
|
||||
|
||||
if (random <= 42)
|
||||
{
|
||||
castRandomBuff(buffer, 7, 45, BUFFS[0], BUFFS[1], BUFFS[2]);
|
||||
}
|
||||
if (random <= 11)
|
||||
{
|
||||
castRandomBuff(buffer, 8, 60, BUFFS[3], BUFFS[4], BUFFS[5]);
|
||||
castRandomBuff(buffer, 3, 6, BUFFS[9], BUFFS[10], BUFFS[12]);
|
||||
}
|
||||
if (random <= 25)
|
||||
{
|
||||
buffer.doCast(BUFFS[getRandomEntry(BUFF_LIST)].getSkill());
|
||||
}
|
||||
if (random <= 10)
|
||||
{
|
||||
buffer.doCast(BUFFS[13].getSkill());
|
||||
}
|
||||
if (random <= 1)
|
||||
{
|
||||
final int i = getRandom(100);
|
||||
if (i <= 34)
|
||||
{
|
||||
buffer.doCast(BUFFS[6].getSkill());
|
||||
buffer.doCast(BUFFS[7].getSkill());
|
||||
buffer.doCast(BUFFS[8].getSkill());
|
||||
}
|
||||
else if (i < 67)
|
||||
{
|
||||
buffer.doCast(BUFFS[13].getSkill());
|
||||
}
|
||||
else
|
||||
{
|
||||
buffer.doCast(BUFFS[2].getSkill());
|
||||
buffer.doCast(BUFFS[5].getSkill());
|
||||
}
|
||||
}
|
||||
return super.onKill(npc, killer, isSummon);
|
||||
}
|
||||
|
||||
private void castRandomBuff(Npc npc, int chance1, int chance2, SkillHolder... buffs)
|
||||
{
|
||||
final int rand = getRandom(100);
|
||||
if (rand <= chance1)
|
||||
{
|
||||
npc.doCast(buffs[2].getSkill());
|
||||
}
|
||||
else if (rand <= chance2)
|
||||
{
|
||||
npc.doCast(buffs[1].getSkill());
|
||||
}
|
||||
else
|
||||
{
|
||||
npc.doCast(buffs[0].getSkill());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void castSkill(Npc npc, Playable target, SkillHolder skill)
|
||||
{
|
||||
npc.doDie(target);
|
||||
super.castSkill(addSpawn(INVISIBLE_NPC, npc, false, 6000), target, skill);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new PlainsOfLizardman();
|
||||
}
|
||||
}
|
243
L2J_Mobius_7.0_PreludeOfWar/dist/game/data/spawns/Oren/PlainsOfLizardman.xml
vendored
Normal file
243
L2J_Mobius_7.0_PreludeOfWar/dist/game/data/spawns/Oren/PlainsOfLizardman.xml
vendored
Normal file
@ -0,0 +1,243 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="PlainsOfLizardman">
|
||||
<group>
|
||||
<npc id="24334" x="87288" y="84040" z="-3060" heading="47806" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="87384" y="84024" z="-3064" heading="63186" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="87400" y="84168" z="-3069" heading="15771" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="87320" y="84200" z="-3070" heading="28192" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="87240" y="84184" z="-3066" heading="34448" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="87240" y="84184" z="-3066" heading="34448" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="87272" y="84328" z="-3069" heading="13569" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="88296" y="85224" z="-3076" heading="3796" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="88472" y="85304" z="-3102" heading="4836" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="88360" y="85320" z="-3109" heading="31701" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="88456" y="85224" z="-3073" heading="57238" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="88408" y="85112" z="-3073" heading="45351" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="88232" y="85192" z="-3079" heading="28405" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="88120" y="85304" z="-3104" heading="24575" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="87480" y="87080" z="-2784" heading="20477" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="87592" y="87192" z="-2757" heading="8241" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="87329" y="87315" z="-2761" heading="28391" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="87496" y="87192" z="-2761" heading="59150" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="87576" y="87080" z="-2779" heading="55348" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="87368" y="87160" z="-2779" heading="28671" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="87400" y="87032" z="-2808" heading="51324" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="89809" y="85425" z="-3408" heading="58525" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="90072" y="85464" z="-3436" heading="1792" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="89864" y="85496" z="-3418" heading="30987" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="89976" y="85192" z="-3453" heading="52962" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="90040" y="85336" z="-3444" heading="11547" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="89832" y="85320" z="-3423" heading="33208" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="89732" y="85461" z="-3407" heading="22609" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="91464" y="86120" z="-3593" heading="6642" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="91608" y="86040" z="-3606" heading="60153" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="91384" y="85992" z="-3597" heading="35018" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="91224" y="85976" z="-3568" heading="33782" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="91416" y="86264" z="-3570" heading="10125" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="91688" y="86264" z="-3590" heading="225" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="91592" y="86136" z="-3597" heading="42490" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="91320" y="88232" z="-3448" heading="17074" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="91408" y="88157" z="-3450" heading="58119" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="91478" y="88026" z="-3451" heading="38404" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="91160" y="88072" z="-3447" heading="29011" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="91112" y="88168" z="-3446" heading="20725" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="91240" y="88360" z="-3448" heading="10400" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="91523" y="88422" z="-3448" heading="2402" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="93496" y="88984" z="-3565" heading="3758" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="93553" y="89147" z="-3558" heading="44160" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="93432" y="89144" z="-3564" heading="24701" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="93304" y="89032" z="-3565" heading="40260" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="93360" y="88940" z="-3565" heading="63342" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="93464" y="88920" z="-3565" heading="63342" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="93628" y="88961" z="-3562" heading="15265" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="95016" y="88344" z="-3466" heading="60089" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="94776" y="88376" z="-3472" heading="31491" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="94888" y="88232" z="-3470" heading="55676" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="94856" y="88440" z="-3467" heading="17639" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="94648" y="88488" z="-3476" heading="30380" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="94584" y="88408" z="-3477" heading="41728" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="94632" y="88264" z="-3472" heading="52823" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="93224" y="86520" z="-3514" heading="46009" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="93448" y="86632" z="-3517" heading="4927" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="93384" y="86728" z="-3506" heading="22517" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="93272" y="86808" z="-3496" heading="42730" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="93112" y="86584" z="-3512" heading="42730" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="93112" y="86584" z="-3504" heading="51387" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="93112" y="86584" z="-3504" heading="59241" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="93192" y="84248" z="-3643" heading="48883" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="93384" y="84152" z="-3619" heading="60280" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="93288" y="84360" z="-3634" heading="21004" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="93096" y="84600" z="-3663" heading="23541" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="93036" y="84198" z="-3657" heading="47588" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="93122" y="84011" z="-3648" heading="61090" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="93351" y="83880" z="-3620" heading="59501" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="92760" y="81976" z="-3480" heading="46649" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="92689" y="82059" z="-3504" heading="29144" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="92728" y="82216" z="-3527" heading="13595" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="92872" y="82248" z="-3530" heading="2758" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="92920" y="81896" z="-3479" heading="50586" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="92824" y="81784" z="-3464" heading="41060" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="92600" y="81720" z="-3479" heading="35724" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="93464" y="79928" z="-3331" heading="60162" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="93352" y="79896" z="-3325" heading="35906" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="93304" y="80152" z="-3335" heading="18339" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="93384" y="80280" z="-3332" heading="55728" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="93512" y="80104" z="-3333" heading="51808" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="93592" y="79784" z="-3332" heading="51808" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="93448" y="79656" z="-3313" heading="40460" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="91491" y="78646" z="-3218" heading="37742" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="91688" y="78584" z="-3220" heading="63123" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="91704" y="78712" z="-3230" heading="17559" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="91638" y="78841" z="-3239" heading="38495" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="91332" y="78790" z="-3220" heading="22870" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="91442" y="78930" z="-3233" heading="8013" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="91701" y="79004" z="-3253" heading="64594" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="91800" y="76696" z="-3208" heading="48991" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="91992" y="76776" z="-3225" heading="3671" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="91864" y="76856" z="-3244" heading="32041" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="91720" y="77016" z="-3268" heading="12320" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="91720" y="76744" z="-3225" heading="49113" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="91576" y="76728" z="-3225" heading="33511" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="91576" y="76728" z="-3225" heading="33511" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="90040" y="75784" z="-3246" heading="39718" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="90184" y="75704" z="-3247" heading="60522" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="90376" y="75848" z="-3219" heading="6510" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="90232" y="76040" z="-3208" heading="22722" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="89839" y="75945" z="-3244" heading="35217" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="90061" y="75912" z="-3230" heading="64184" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="90452" y="76003" z="-3205" heading="3865" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="88232" y="74488" z="-3373" heading="39893" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="88264" y="74248" z="-3363" heading="50575" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="88456" y="74344" z="-3356" heading="5026" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="88504" y="74552" z="-3354" heading="14393" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="88424" y="74680" z="-3348" heading="32767" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="88248" y="74680" z="-3362" heading="32767" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="87976" y="74312" z="-3411" heading="42471" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="86040" y="73848" z="-3560" heading="36743" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="86040" y="73848" z="-3560" heading="36743" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="86129" y="73944" z="-3557" heading="453" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="86296" y="73832" z="-3546" heading="54698" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="86168" y="73704" z="-3552" heading="41000" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="85937" y="73723" z="-3564" heading="31720" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="85661" y="73858" z="-3582" heading="24575" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="83832" y="75240" z="-3649" heading="31163" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="83768" y="75432" z="-3662" heading="20175" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="84008" y="75384" z="-3661" heading="59248" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="84206" y="75212" z="-3646" heading="32372" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="84040" y="75051" z="-3635" heading="47840" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="83866" y="75066" z="-3635" heading="31652" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="83592" y="75096" z="-3633" heading="31652" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="82472" y="77144" z="-3686" heading="21429" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="82376" y="77000" z="-3672" heading="42662" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="82552" y="76872" z="-3688" heading="58699" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="82728" y="76824" z="-3704" heading="62739" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="82467" y="77183" z="-3683" heading="28750" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="82264" y="77272" z="-3658" heading="28750" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="82344" y="76856" z="-3666" heading="50934" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="80696" y="77224" z="-3460" heading="25184" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="80760" y="77288" z="-3467" heading="55302" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="80811" y="77108" z="-3482" heading="40610" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="80812" y="76970" z="-3484" heading="52654" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="80968" y="77128" z="-3498" heading="9999" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="80968" y="77000" z="-3502" heading="48985" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="81027" y="77163" z="-3499" heading="12625" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="81768" y="79208" z="-3532" heading="9921" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="82073" y="79266" z="-3568" heading="58655" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="81838" y="79138" z="-3536" heading="34628" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="81574" y="79020" z="-3506" heading="37451" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="81576" y="79224" z="-3507" heading="14272" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="81801" y="79402" z="-3536" heading="6959" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="81960" y="79528" z="-3561" heading="6959" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="81785" y="80620" z="-3467" heading="18275" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="81711" y="80808" z="-3440" heading="43198" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="81649" y="80612" z="-3449" heading="53346" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="81791" y="80359" z="-3496" heading="50792" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="81906" y="80687" z="-3490" heading="12730" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="81833" y="80920" z="-3449" heading="23801" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="81752" y="81016" z="-3421" heading="23801" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="81480" y="82856" z="-3155" heading="18532" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="81592" y="82808" z="-3156" heading="61719" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="81544" y="82520" z="-3173" heading="47656" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="81353" y="82415" z="-3195" heading="19050" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="81317" y="82714" z="-3172" heading="15298" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="81461" y="83066" z="-3144" heading="10520" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="81650" y="83063" z="-3141" heading="63662" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="83976" y="81336" z="-3615" heading="64302" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="83912" y="81224" z="-3629" heading="43943" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="83768" y="81384" z="-3633" heading="24331" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="83912" y="81512" z="-3616" heading="7588" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="84216" y="81320" z="-3621" heading="59583" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="84056" y="81096" z="-3640" heading="42572" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="84088" y="81304" z="-3618" heading="14653" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="84942" y="80160" z="-3712" heading="63456" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="84824" y="80344" z="-3725" heading="22385" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="84696" y="80222" z="-3712" heading="30834" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="84696" y="79976" z="-3715" heading="49195" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="85016" y="79944" z="-3705" heading="25694" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="84815" y="80067" z="-3712" heading="30769" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="84568" y="80120" z="-3719" heading="30769" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="86216" y="82328" z="-3549" heading="8444" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="86248" y="82152" z="-3586" heading="50836" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="86024" y="82040" z="-3623" heading="37528" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="85864" y="82120" z="-3611" heading="17513" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="85832" y="82392" z="-3547" heading="17513" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="86000" y="82311" z="-3559" heading="36030" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="85784" y="82248" z="-3593" heading="36030" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="86952" y="80216" z="-3535" heading="53853" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="87112" y="80120" z="-3504" heading="59956" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="87160" y="80456" z="-3518" heading="14780" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="87048" y="80600" z="-3543" heading="23284" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="86888" y="80392" z="-3560" heading="42456" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="86776" y="80040" z="-3555" heading="45787" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="86953" y="79929" z="-3514" heading="63749" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="86264" y="78440" z="-3525" heading="45985" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="86408" y="78264" z="-3512" heading="56147" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="86456" y="78488" z="-3514" heading="14487" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="86504" y="78792" z="-3516" heading="14467" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="86312" y="78648" z="-3524" heading="39583" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="86273" y="78419" z="-3524" heading="47556" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="86232" y="78168" z="-3522" heading="47556" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="86264" y="76792" z="-3661" heading="45301" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="86328" y="76696" z="-3661" heading="54951" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="86488" y="76824" z="-3632" heading="7451" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="86414" y="76947" z="-3632" heading="17525" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="86072" y="76856" z="-3669" heading="35623" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="86200" y="76632" z="-3675" heading="54317" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="86040" y="76520" z="-3687" heading="38841" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="89736" y="79864" z="-3351" heading="17797" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="89560" y="79816" z="-3346" heading="35678" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="89592" y="79576" z="-3312" heading="50614" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="89836" y="79576" z="-3304" heading="63055" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="89672" y="79416" z="-3288" heading="41056" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="89800" y="79720" z="-3330" heading="12302" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="89976" y="79784" z="-3346" heading="4062" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24334" x="90264" y="81832" z="-3564" heading="25325" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="90149" y="82032" z="-3577" heading="21732" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="90107" y="81710" z="-3555" heading="48213" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="90209" y="81385" z="-3520" heading="65041" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="90278" y="81497" z="-3527" heading="17817" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="90296" y="81752" z="-3557" heading="9601" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="90200" y="81752" z="-3560" heading="32994" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24342" x="92776" y="91304" z="-3440" heading="18321" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
<npc id="24342" x="90408" y="91992" z="-3286" heading="31442" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
<npc id="24334" x="88184" y="92440" z="-3156" heading="10565" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="24335" x="88408" y="92472" z="-3169" heading="1599" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="24336" x="88376" y="92296" z="-3172" heading="47518" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="24337" x="88168" y="92168" z="-3160" heading="38130" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="24338" x="87858" y="92430" z="-3146" heading="25489" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="24339" x="88056" y="92664" z="-3144" heading="8824" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="24340" x="88168" y="92568" z="-3154" heading="57784" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="24342" x="86056" y="93816" z="-3287" heading="30114" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
<npc id="24342" x="92696" y="88056" z="-3566" heading="53517" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
<npc id="24342" x="92056" y="84584" z="-3688" heading="46157" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
<npc id="24342" x="91336" y="80584" z="-3418" heading="47778" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
<npc id="24342" x="88552" y="77944" z="-3366" heading="31066" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
<npc id="24342" x="87400" y="75640" z="-3423" heading="4860" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
<npc id="24342" x="92872" y="75880" z="-3284" heading="14235" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
<npc id="24342" x="85464" y="81240" z="-3685" heading="56803" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
<npc id="24342" x="83288" y="80008" z="-3678" heading="38825" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
<npc id="24342" x="85112" y="75048" z="-3640" heading="50441" respawnTime="60sec" /> <!-- Priest Ugoros -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
@ -76,498 +76,7 @@
|
||||
<npc id="20584" x="73680" y="86354" z="-3256" heading="10845" respawnTime="40sec" /> <!-- Timak Orc Archer -->
|
||||
<npc id="20584" x="72419" y="82902" z="-3472" heading="42951" respawnTime="40sec" /> <!-- Timak Orc Archer -->
|
||||
<npc id="20584" x="75794" y="87895" z="-3312" heading="55513" respawnTime="40sec" /> <!-- Timak Orc Archer -->
|
||||
<npc id="18864" x="92135" y="83982" z="-3680" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="91045" y="87849" z="-3432" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="91469" y="88665" z="-3448" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="93017" y="84206" z="-3656" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="90434" y="91345" z="-3336" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="90850" y="90645" z="-3368" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="87684" y="92181" z="-3152" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="87376" y="93873" z="-3176" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="84984" y="94317" z="-3456" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="91143" y="81402" z="-3504" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="91143" y="78618" z="-3208" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="90862" y="76947" z="-3232" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="89480" y="75743" z="-3288" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="86664" y="73811" z="-3512" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="88057" y="77667" z="-3416" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="86472" y="81422" z="-3656" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="86150" y="81218" z="-3672" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="81281" y="80851" z="-3368" heading="44764" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="81906" y="80806" z="-3472" heading="4991" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="81624" y="78208" z="-3528" heading="17887" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="81974" y="78950" z="-3552" heading="11720" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="92835" y="77271" z="-3320" heading="19846" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="89662" y="91814" z="-3240" heading="23166" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18864" x="90054" y="79830" z="-3352" heading="56850" respawnTime="60sec" /> <!-- Fantasy Mushroom -->
|
||||
<npc id="18865" x="89361" y="81972" z="-3576" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="91337" y="87742" z="-3448" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="90536" y="88232" z="-3392" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="93473" y="89457" z="-3544" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="86918" y="93807" z="-3192" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="87784" y="93603" z="-3160" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="85186" y="93399" z="-3376" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="93366" y="83698" z="-3600" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="92554" y="83910" z="-3664" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="90975" y="80063" z="-3352" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="90975" y="78331" z="-3200" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="91769" y="78764" z="-3232" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="92166" y="75733" z="-3232" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="91372" y="75733" z="-3200" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="90975" y="75300" z="-3312" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="87123" y="72820" z="-3464" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="86781" y="73274" z="-3496" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="86781" y="75771" z="-3552" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="85091" y="76453" z="-3640" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="84843" y="77223" z="-3632" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="83548" y="76488" z="-3720" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="82484" y="77778" z="-3656" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="82484" y="78638" z="-3672" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="82484" y="79498" z="-3632" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="83282" y="80788" z="-3656" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="85144" y="81218" z="-3672" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="87786" y="78593" z="-3480" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="86862" y="79009" z="-3504" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="86608" y="78331" z="-3488" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="88990" y="79630" z="-3336" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="89784" y="77898" z="-3240" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="85938" y="79009" z="-3576" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="91540" y="83880" z="-3656" heading="36406" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="91249" y="82747" z="-3600" heading="30212" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="86717" y="80939" z="-3608" heading="64680" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="85396" y="79955" z="-3696" heading="26634" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="82930" y="80170" z="-3648" heading="6711" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="92068" y="82012" z="-3544" heading="50181" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="92020" y="90945" z="-3400" heading="7805" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="91323" y="89747" z="-3440" heading="49069" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="92155" y="90022" z="-3448" heading="7175" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="87727" y="91576" z="-3200" heading="45861" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="86194" y="92780" z="-3208" heading="43475" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="87244" y="93138" z="-3152" heading="65233" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="92265" y="87312" z="-3560" heading="33297" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="91676" y="86031" z="-3608" heading="51026" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="89894" y="80597" z="-3456" heading="7838" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18865" x="86331" y="76348" z="-3664" heading="26718" respawnTime="60sec" /> <!-- Sticky Mushroom -->
|
||||
<npc id="18866" x="91493" y="88070" z="-3448" heading="29608" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="93163" y="85818" z="-3616" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="92367" y="84541" z="-3664" heading="36776" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="92660" y="84432" z="-3672" heading="55112" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="93357" y="87809" z="-3552" heading="55677" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="89262" y="91528" z="-3256" heading="52968" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="87709" y="92836" z="-3144" heading="13749" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="86556" y="92269" z="-3144" heading="62981" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="85200" y="93987" z="-3416" heading="55992" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="85584" y="94394" z="-3392" heading="5837" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="94273" y="89676" z="-3472" heading="39190" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="93633" y="83177" z="-3552" heading="36125" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="91605" y="81318" z="-3464" heading="31978" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="91520" y="79838" z="-3328" heading="45011" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="91265" y="79559" z="-3296" heading="4246" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="90924" y="79429" z="-3272" heading="25480" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="92924" y="79690" z="-3304" heading="43328" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="92981" y="79233" z="-3280" heading="43819" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="93880" y="77817" z="-3272" heading="59577" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="88730" y="75966" z="-3312" heading="19142" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="87681" y="76171" z="-3416" heading="22457" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="84243" y="76527" z="-3664" heading="48635" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="82855" y="77580" z="-3688" heading="48297" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="83435" y="76994" z="-3720" heading="9714" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="82982" y="76614" z="-3720" heading="45994" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="82481" y="82014" z="-3320" heading="481" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="84106" y="79950" z="-3720" heading="23960" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="81863" y="77205" z="-3592" heading="30949" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="93360" y="90861" z="-3456" heading="33861" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="86523" y="93393" z="-3216" heading="26937" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18866" x="91436" y="87382" z="-3464" heading="30673" respawnTime="60sec" /> <!-- Rainbow Frog -->
|
||||
<npc id="18867" x="96828" y="86134" z="-3720" respawnTime="10sec" /> <!-- Abyss Weed -->
|
||||
<npc id="18867" x="96084" y="85690" z="-3728" respawnTime="10sec" /> <!-- Abyss Weed -->
|
||||
<npc id="18867" x="95991" y="84950" z="-3728" respawnTime="10sec" /> <!-- Abyss Weed -->
|
||||
<npc id="18868" x="90727" y="83274" z="-3576" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="91945" y="82638" z="-3592" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="91871" y="87007" z="-3560" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92138" y="86517" z="-3576" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92138" y="87742" z="-3544" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92757" y="86242" z="-3584" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92405" y="89702" z="-3480" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="93206" y="89702" z="-3536" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="86918" y="90951" z="-3208" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="87351" y="92175" z="-3152" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="86052" y="93399" z="-3264" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="87351" y="92583" z="-3144" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="86485" y="92175" z="-3144" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="87784" y="93195" z="-3144" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="87351" y="93399" z="-3160" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="85186" y="92991" z="-3352" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="84753" y="94215" z="-3456" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="93473" y="90192" z="-3472" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="94541" y="88967" z="-3512" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="96177" y="85986" z="-3720" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="95619" y="85542" z="-3736" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="96177" y="85098" z="-3728" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92757" y="82426" z="-3544" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="93163" y="83062" z="-3584" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92351" y="83062" z="-3672" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92351" y="82426" z="-3576" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="90975" y="80929" z="-3472" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="91372" y="79197" z="-3256" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92166" y="79197" z="-3296" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="91769" y="77032" z="-3264" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="93357" y="77032" z="-3360" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92166" y="76599" z="-3216" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92166" y="75300" z="-3296" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="88593" y="74001" z="-3352" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="88990" y="75300" z="-3320" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="88196" y="74434" z="-3368" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="88196" y="74867" z="-3352" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="88593" y="77032" z="-3328" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="88990" y="76166" z="-3288" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="87402" y="74867" z="-3432" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="87799" y="77032" z="-3456" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="87799" y="76166" z="-3400" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="83016" y="77778" z="-3688" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="81952" y="76058" z="-3648" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="82484" y="77348" z="-3680" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="80888" y="76918" z="-3496" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="81686" y="78638" z="-3504" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="81420" y="78638" z="-3488" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="82750" y="78638" z="-3704" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="80622" y="80788" z="-3408" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="81420" y="82078" z="-3232" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="81420" y="82508" z="-3168" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="84080" y="80358" z="-3696" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="89387" y="79197" z="-3280" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="89784" y="78764" z="-3240" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="84878" y="78638" z="-3648" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="90487" y="82661" z="-3568" heading="35915" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="85040" y="80710" z="-3704" heading="176" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="82272" y="79826" z="-3600" heading="13421" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="88374" y="75674" z="-3328" heading="15577" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="90848" y="76130" z="-3192" heading="8385" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92406" y="83412" z="-3672" heading="28824" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92549" y="85331" z="-3664" heading="30593" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="93198" y="88769" z="-3560" heading="49422" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="93461" y="88185" z="-3560" heading="54887" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92968" y="89904" z="-3504" heading="29944" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="92341" y="90726" z="-3440" heading="800" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="88268" y="91737" z="-3208" heading="52507" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="86018" y="94015" z="-3296" heading="22774" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="86434" y="93715" z="-3232" heading="61072" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="85588" y="93567" z="-3336" heading="38914" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="94089" y="89315" z="-3512" heading="7995" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="93129" y="86997" z="-3512" heading="58916" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="84340" y="76172" z="-3680" heading="25730" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="18868" x="83583" y="77640" z="-3720" heading="19791" respawnTime="60sec" /> <!-- Vitality Plant -->
|
||||
<npc id="22768" x="91309" y="84191" z="-3648" heading="34751" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="91496" y="86119" z="-3592" heading="15906" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="91732" y="86578" z="-3568" heading="46226" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="93860" y="88864" z="-3544" heading="28902" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="86326" y="91899" z="-3152" heading="25748" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="91578" y="90976" z="-3384" heading="11618" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="90678" y="90285" z="-3384" heading="57051" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="87765" y="92288" z="-3144" heading="56348" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="85091" y="92943" z="-3360" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="91171" y="78886" z="-3216" heading="43826" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="91180" y="75145" z="-3328" heading="27684" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="86655" y="73798" z="-3520" heading="59026" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="85543" y="73682" z="-3576" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="85959" y="77716" z="-3560" heading="48561" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="80819" y="80715" z="-3384" heading="62031" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="85966" y="80010" z="-3656" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="88050" y="79583" z="-3392" heading="64763" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="84388" y="78952" z="-3688" heading="60961" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="84995" y="79334" z="-3656" heading="34948" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="80977" y="80522" z="-3384" heading="6806" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="85082" y="75863" z="-3656" heading="34745" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="84823" y="75111" z="-3640" heading="17035" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="91191" y="75969" z="-3184" heading="542" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="94109" y="79751" z="-3328" heading="30566" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="93700" y="79354" z="-3312" heading="29727" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="92500" y="83631" z="-3672" heading="22003" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="86629" y="92670" z="-3176" heading="26434" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="84170" y="94125" z="-3464" heading="22774" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22768" x="94075" y="90197" z="-3464" heading="40525" respawnTime="60sec" /> <!-- Tanta Lizardman Scout -->
|
||||
<npc id="22769" x="92164" y="85266" z="-3656" heading="6981" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="91859" y="86108" z="-3592" heading="47723" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="91149" y="88335" z="-3440" heading="37312" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="90842" y="90022" z="-3424" heading="27971" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="87798" y="90149" z="-3264" heading="8869" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="88944" y="91557" z="-3256" heading="14661" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="91131" y="91384" z="-3360" heading="57726" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="90974" y="90557" z="-3376" heading="11065" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="86146" y="92202" z="-3160" heading="8191" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="83745" y="94248" z="-3424" heading="63231" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="90637" y="78908" z="-3216" heading="40614" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="90412" y="77148" z="-3224" heading="10824" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="92006" y="76608" z="-3200" heading="43577" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="90404" y="75503" z="-3272" heading="5398" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="87287" y="74098" z="-3480" heading="5297" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="86167" y="74460" z="-3544" heading="33214" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="85873" y="77107" z="-3640" heading="33903" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="83158" y="75164" z="-3632" heading="33081" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="82050" y="77453" z="-3616" heading="10662" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="83948" y="77671" z="-3720" heading="60621" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="83509" y="75721" z="-3672" heading="33759" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="83760" y="81523" z="-3616" heading="63873" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="85037" y="79741" z="-3688" heading="41329" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="85993" y="78008" z="-3544" heading="22748" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="85087" y="77838" z="-3536" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="84483" y="79572" z="-3720" heading="28226" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="81229" y="82095" z="-3248" heading="64253" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="81148" y="82648" z="-3192" heading="53319" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="80941" y="81354" z="-3336" heading="52738" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="89301" y="75171" z="-3336" heading="15054" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="90494" y="76025" z="-3200" heading="50602" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="93636" y="79793" z="-3328" heading="31654" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="93665" y="80452" z="-3328" heading="40463" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="93011" y="86476" z="-3528" heading="34531" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="93629" y="89182" z="-3552" heading="41447" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="84286" y="93552" z="-3432" heading="62531" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="84794" y="94814" z="-3448" heading="8919" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="90009" y="92847" z="-3272" heading="55332" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="93687" y="90022" z="-3480" heading="46911" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22769" x="92201" y="84532" z="-3672" heading="55157" respawnTime="60sec" /> <!-- Tanta Lizardman Warrior -->
|
||||
<npc id="22770" x="90512" y="88172" z="-3384" heading="21857" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="90674" y="88541" z="-3424" heading="14465" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="93859" y="84541" z="-3592" heading="22549" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="93788" y="83742" z="-3568" heading="13829" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="92077" y="87464" z="-3536" heading="40961" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="92144" y="88251" z="-3528" heading="52310" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="86993" y="91859" z="-3144" heading="60063" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="86238" y="91153" z="-3144" heading="44581" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="87218" y="91486" z="-3192" heading="21503" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="89025" y="91059" z="-3328" heading="45184" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="91487" y="90139" z="-3440" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="90573" y="92009" z="-3304" heading="59535" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="88264" y="92799" z="-3160" heading="31109" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="83482" y="93772" z="-3376" heading="48207" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="83994" y="94572" z="-3416" heading="22285" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="84505" y="94067" z="-3464" heading="34666" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="95142" y="91513" z="-3344" heading="50220" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="91530" y="80013" z="-3352" heading="1918" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="93221" y="80277" z="-3328" heading="9457" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="94116" y="78137" z="-3320" heading="37209" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="90593" y="77498" z="-3216" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="92279" y="74542" z="-3360" heading="50216" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="91789" y="74624" z="-3344" heading="8923" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="90853" y="75705" z="-3232" heading="33361" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="87878" y="72318" z="-3440" heading="35639" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="88396" y="73976" z="-3376" heading="44627" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="86871" y="73351" z="-3504" heading="28037" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="87677" y="74430" z="-3440" heading="39351" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="87902" y="76296" z="-3408" heading="4054" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="83908" y="75695" z="-3680" heading="28405" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="82611" y="76423" z="-3664" heading="16224" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="83357" y="78524" z="-3736" heading="24239" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="81606" y="82490" z="-3176" heading="60144" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="89498" y="80820" z="-3480" heading="31470" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="87286" y="78224" z="-3464" heading="42464" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="86731" y="79365" z="-3520" heading="64938" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="84947" y="78474" z="-3640" heading="63307" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="92189" y="83650" z="-3680" heading="15740" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="86732" y="81110" z="-3608" heading="32214" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="86835" y="81322" z="-3584" heading="29353" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="80905" y="82160" z="-3248" heading="54788" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="81250" y="80994" z="-3352" heading="60534" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="81581" y="79126" z="-3504" heading="4135" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="80731" y="77176" z="-3464" heading="726" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="92914" y="79396" z="-3288" heading="35637" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="91967" y="81327" z="-3464" heading="44405" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="91804" y="90989" z="-3384" heading="49394" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="91973" y="89776" z="-3456" heading="59969" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="84610" y="93696" z="-3440" heading="7707" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="91692" y="85313" z="-3648" heading="62731" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="91976" y="84922" z="-3680" heading="48747" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="90060" y="79509" z="-3288" heading="49346" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22770" x="83951" y="76430" z="-3696" heading="8655" respawnTime="60sec" /> <!-- Tanta Lizardman Soldier -->
|
||||
<npc id="22771" x="91904" y="81929" z="-3536" heading="41344" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="91235" y="88278" z="-3440" heading="16547" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="91096" y="88159" z="-3440" heading="13443" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="91102" y="89220" z="-3440" heading="14324" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="93387" y="85183" z="-3648" heading="50057" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="92281" y="87166" z="-3560" heading="10592" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="93277" y="89314" z="-3560" heading="16001" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="88266" y="89761" z="-3160" heading="62763" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="86913" y="91401" z="-3168" heading="31776" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="90927" y="92090" z="-3352" heading="50038" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="91368" y="92364" z="-3376" heading="10057" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="87360" y="92871" z="-3144" heading="39807" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="90727" y="92676" z="-3368" heading="50505" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="84581" y="93017" z="-3376" heading="2316" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="84889" y="95473" z="-3432" heading="40328" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="93533" y="82987" z="-3544" heading="32782" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="91640" y="79001" z="-3248" heading="3122" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="91283" y="79466" z="-3288" heading="28272" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="93497" y="78381" z="-3208" heading="12323" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="93222" y="76126" z="-3328" heading="33258" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="92713" y="74933" z="-3352" heading="55783" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="90761" y="75216" z="-3328" heading="26169" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="88328" y="72809" z="-3440" heading="6769" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="88759" y="76959" z="-3296" heading="31044" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="87787" y="73399" z="-3440" heading="16383" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="87597" y="77681" z="-3464" heading="52526" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="85618" y="73610" z="-3576" heading="25340" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="84053" y="75775" z="-3680" heading="62622" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="83034" y="75668" z="-3632" heading="20063" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="82982" y="76026" z="-3664" heading="8658" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="82981" y="78245" z="-3712" heading="11498" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="84032" y="80928" z="-3648" heading="44780" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="89706" y="80159" z="-3400" heading="5251" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="87310" y="79764" z="-3472" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="86602" y="79726" z="-3552" heading="60774" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="87698" y="79336" z="-3448" heading="12748" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="88151" y="81385" z="-3472" heading="13678" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="80747" y="81780" z="-3256" heading="49151" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="81071" y="82417" z="-3224" heading="53066" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="80793" y="81038" z="-3376" heading="49398" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="81409" y="78824" z="-3480" heading="3429" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="81300" y="76597" z="-3544" heading="59969" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="89236" y="75594" z="-3312" heading="12661" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="92556" y="79147" z="-3288" heading="21091" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="93455" y="79273" z="-3280" heading="28707" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="93418" y="84299" z="-3616" heading="26986" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="92359" y="85948" z="-3608" heading="48058" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="92125" y="91079" z="-3400" heading="43411" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="87301" y="91154" z="-3256" heading="49464" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="87733" y="91177" z="-3288" heading="59999" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="84849" y="93718" z="-3424" heading="2777" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="84383" y="93822" z="-3456" heading="34078" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22771" x="91271" y="83645" z="-3640" heading="42696" respawnTime="60sec" /> <!-- Tanta Lizardman Berserker -->
|
||||
<npc id="22772" x="91091" y="86073" z="-3536" heading="26261" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="91709" y="84406" z="-3688" heading="62952" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="90791" y="88185" z="-3416" heading="2323" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="90458" y="88078" z="-3368" heading="30011" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="91502" y="88459" z="-3448" heading="7855" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="92286" y="85033" z="-3664" heading="52683" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="93038" y="88427" z="-3304" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="89678" y="91472" z="-3264" heading="8191" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="90547" y="90870" z="-3360" heading="23792" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="90895" y="90982" z="-3368" heading="29136" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="87070" y="92502" z="-3152" heading="53245" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="88072" y="92193" z="-3152" heading="10582" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="85180" y="93919" z="-3408" heading="59930" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="84166" y="94474" z="-3448" heading="33832" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="94093" y="80173" z="-3328" heading="12400" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="93201" y="81845" z="-3456" heading="38028" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="94043" y="76396" z="-3328" heading="43020" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="93335" y="74790" z="-3384" heading="5835" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="87898" y="74991" z="-3360" heading="4976" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="87185" y="72704" z="-3448" heading="16861" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="86595" y="77439" z="-3544" heading="47623" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="86616" y="77150" z="-3584" heading="24352" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="85650" y="73425" z="-3568" heading="62377" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="84618" y="75445" z="-3656" heading="56595" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="85589" y="76716" z="-3680" heading="57008" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="82646" y="76024" z="-3632" heading="64493" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="82478" y="79670" z="-3632" heading="42725" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="88712" y="80052" z="-3392" heading="39431" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="89756" y="81904" z="-3584" heading="2478" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="86226" y="78986" z="-3544" heading="41294" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="87706" y="78447" z="-3448" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="91813" y="83795" z="-3664" heading="9059" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="91585" y="82716" z="-3600" heading="14961" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="90201" y="82796" z="-3544" heading="463" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="84875" y="80449" z="-3720" heading="5414" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="84243" y="80701" z="-3672" heading="8653" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="81836" y="82710" z="-3160" heading="45868" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="81755" y="82934" z="-3144" heading="42843" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="81182" y="80679" z="-3368" heading="58383" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="81618" y="80254" z="-3480" heading="11351" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="82134" y="76791" z="-3632" heading="907" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="82360" y="76147" z="-3640" heading="14207" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="82407" y="76854" z="-3672" heading="13788" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="81904" y="77698" z="-3592" heading="5083" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="88342" y="75261" z="-3312" heading="17993" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="89671" y="75221" z="-3328" heading="7210" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="91823" y="75730" z="-3184" heading="62792" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="92628" y="75624" z="-3296" heading="308" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="93114" y="76440" z="-3336" heading="14691" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="93921" y="79440" z="-3328" heading="25636" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="92723" y="81141" z="-3416" heading="46070" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="92251" y="81209" z="-3464" heading="43694" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="93090" y="83501" z="-3608" heading="28799" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="92188" y="90873" z="-3416" heading="44679" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="91978" y="90661" z="-3400" heading="49151" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="87130" y="91668" z="-3160" heading="3709" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="86938" y="92252" z="-3144" heading="58176" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="86998" y="92951" z="-3160" heading="6363" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="85172" y="93668" z="-3400" heading="30697" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="85717" y="94806" z="-3392" heading="41508" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="86067" y="94273" z="-3312" heading="53872" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="92975" y="91282" z="-3440" heading="56233" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="93491" y="88852" z="-3560" heading="46249" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="92875" y="87343" z="-3560" heading="26414" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22772" x="90238" y="79086" z="-3232" heading="55832" respawnTime="60sec" /> <!-- Tanta Lizardman Archer -->
|
||||
<npc id="22773" x="91863" y="88156" z="-3496" heading="35050" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="90972" y="88101" z="-3424" heading="26614" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="89320" y="91017" z="-3328" heading="58825" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="88053" y="90307" z="-3288" heading="10620" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="91462" y="90393" z="-3424" heading="3968" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="90431" y="92178" z="-3280" heading="13519" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="91048" y="90357" z="-3392" heading="47277" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="87915" y="92793" z="-3136" heading="22578" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="87481" y="92012" z="-3152" heading="25901" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="86979" y="93666" z="-3184" heading="21680" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="84492" y="94336" z="-3464" heading="55752" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="84917" y="94645" z="-3456" heading="8191" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="85223" y="94883" z="-3440" heading="20718" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="91593" y="81221" z="-3456" heading="30577" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="91294" y="81388" z="-3488" heading="53792" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="91482" y="81231" z="-3456" heading="57339" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="91326" y="78712" z="-3216" heading="38852" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="91255" y="79091" z="-3232" heading="60355" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="88647" y="75521" z="-3304" heading="14259" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="88362" y="77498" z="-3376" heading="46318" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="88385" y="77354" z="-3368" heading="59511" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="86554" y="73823" z="-3528" heading="27898" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="86593" y="73458" z="-3512" heading="18688" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="86587" y="74559" z="-3520" heading="36125" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="88134" y="77811" z="-3416" heading="12141" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="92238" y="90680" z="-3424" heading="59624" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="88562" y="91600" z="-3240" heading="47477" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="88059" y="91682" z="-3200" heading="54134" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="92929" y="87720" z="-3560" heading="32767" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22773" x="90536" y="79206" z="-3248" heading="8655" respawnTime="60sec" /> <!-- Tanta Lizardman Wizard -->
|
||||
<npc id="22774" x="90646" y="87158" z="-3408" heading="1312" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="89871" y="90204" z="-3320" heading="13428" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="91763" y="90127" z="-3440" heading="22013" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="92970" y="85893" z="-3624" heading="43864" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="92553" y="84533" z="-3680" heading="26828" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="92448" y="88204" z="-3560" heading="11377" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="86527" y="91547" z="-3144" heading="19961" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="90078" y="91446" z="-3296" heading="62194" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="90577" y="91317" z="-3352" heading="13035" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="91221" y="90655" z="-3392" heading="38984" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="87522" y="93271" z="-3144" heading="2370" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="84691" y="95506" z="-3416" heading="945" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="94985" y="88116" z="-3488" heading="6027" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="90411" y="80718" z="-3440" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="93557" y="78824" z="-3248" heading="22551" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="92341" y="77225" z="-3304" heading="8034" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="94164" y="76127" z="-3328" heading="17271" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="87973" y="72640" z="-3440" heading="53819" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="87986" y="75510" z="-3352" heading="23137" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="85342" y="75610" z="-3664" heading="15051" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="84061" y="75930" z="-3688" heading="168" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="82528" y="78392" z="-3672" heading="59141" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="79568" y="80105" z="-3376" heading="49827" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="87014" y="79918" z="-3504" heading="25833" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="87288" y="78343" z="-3464" heading="35762" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="86309" y="78753" z="-3520" heading="19465" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="87706" y="78447" z="-3448" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="87020" y="80005" z="-3504" heading="13690" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="91479" y="85063" z="-3664" heading="63317" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="84972" y="80980" z="-3680" heading="58536" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="81824" y="82341" z="-3200" heading="48097" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="81273" y="82794" z="-3160" heading="56021" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="81187" y="77223" z="-3504" heading="1207" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="82069" y="76558" z="-3640" heading="10237" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="93702" y="77535" z="-3272" heading="7775" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="93997" y="79567" z="-3328" heading="26490" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="92350" y="86311" z="-3600" heading="47344" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="92502" y="91209" z="-3440" heading="43202" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="85316" y="95163" z="-3432" heading="41232" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="84666" y="94971" z="-3432" heading="45124" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="22774" x="91775" y="79624" z="-3320" heading="5099" respawnTime="60sec" /> <!-- Tanta Lizardman Summoner -->
|
||||
<npc id="32740" x="94874" y="83585" z="-3416" heading="29836" respawnTime="60sec" /> <!-- Batracos -->
|
||||
<npc id="32741" x="86486" y="86105" z="-2880" heading="51036" respawnTime="60sec" /> <!-- Ankumi -->
|
||||
<npc id="32742" x="86351" y="85797" z="-2872" heading="64112" respawnTime="60sec" /> <!-- Laki -->
|
||||
@ -653,7 +162,6 @@
|
||||
<npc id="20587" x="67960" y="66376" z="-3640" respawnTime="40sec" /> <!-- Timak Orc Shaman -->
|
||||
<npc id="20587" x="69942" y="67389" z="-3608" heading="11731" respawnTime="40sec" /> <!-- Timak Orc Shaman -->
|
||||
<npc id="20587" x="68162" y="66020" z="-3648" respawnTime="40sec" /> <!-- Timak Orc Shaman -->
|
||||
<npc id="27497" x="91328" y="73165" z="-3680" heading="64442" respawnTime="60sec" /> <!-- Tanta Lizardman Chief Loygen -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
||||
</list>
|
||||
|
@ -1335,180 +1335,277 @@
|
||||
<height normal="55" />
|
||||
</collision>
|
||||
</npc>
|
||||
<npc id="24334" level="85" type="Npc" name="Tanta Lizardman Scout">
|
||||
<!-- AUTO GENERATED NPC TODO: FIX IT -->
|
||||
<race>ETC</race>
|
||||
<sex>FEMALE</sex>
|
||||
<equipment rhand="98" />
|
||||
<npc id="24334" level="103" type="Monster" name="Tanta Lizardman Scout">
|
||||
<race>HUMANOID</race>
|
||||
<sex>MALE</sex>
|
||||
<equipment rhand="98" />
|
||||
<acquire exp="1408114244" sp="1267196" />
|
||||
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
|
||||
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
|
||||
<speed>
|
||||
<walk ground="40" />
|
||||
<run ground="140" />
|
||||
</speed>
|
||||
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
|
||||
<defence physical="405.85106382979" magical="297.0297029703" />
|
||||
</stats>
|
||||
<status attackable="false" />
|
||||
<collision>
|
||||
<radius normal="13" />
|
||||
<height normal="35" />
|
||||
</collision>
|
||||
</npc>
|
||||
<npc id="24335" level="85" type="Npc" name="Tanta Lizardman Warrior">
|
||||
<!-- AUTO GENERATED NPC TODO: FIX IT -->
|
||||
<race>ETC</race>
|
||||
<sex>FEMALE</sex>
|
||||
<equipment rhand="8682" />
|
||||
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
|
||||
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
|
||||
<vitals hp="308400.715725" hpRegen="9.5" mp="3600.84" mpRegen="3.3" />
|
||||
<attack physical="82640" magical="74826" random="30" critical="4.75" accuracy="4.75" attackSpeed="250" type="SWORD" range="40" distance="80" width="120" />
|
||||
<defence physical="8049" magical="4676" />
|
||||
<speed>
|
||||
<walk ground="53" />
|
||||
<run ground="140" />
|
||||
</speed>
|
||||
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
|
||||
<defence physical="405.85106382979" magical="297.0297029703" />
|
||||
</stats>
|
||||
<status attackable="false" />
|
||||
<status attackable="true" />
|
||||
<collision>
|
||||
<radius normal="13" />
|
||||
<height normal="35" />
|
||||
</collision>
|
||||
<skillList>
|
||||
<skill id="4416" level="6" /> <!-- Humanoid -->
|
||||
<skill id="5465" level="1" /> <!-- Earth Attack -->
|
||||
</skillList>
|
||||
<dropLists>
|
||||
<drop>
|
||||
<item id="57" min="4007" max="9350" chance="70" /> <!-- Adena -->
|
||||
</drop>
|
||||
</dropLists>
|
||||
</npc>
|
||||
<npc id="24335" level="103" type="Monster" name="Tanta Lizardman Warrior">
|
||||
<race>HUMANOID</race>
|
||||
<sex>MALE</sex>
|
||||
<equipment rhand="8682" />
|
||||
<acquire exp="1408114244" sp="1267196" />
|
||||
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
|
||||
<vitals hp="308400.715725" hpRegen="9.5" mp="3600.84" mpRegen="3.3" />
|
||||
<attack physical="82640" magical="74826" random="30" critical="4.75" accuracy="4.75" attackSpeed="250" type="SWORD" range="40" distance="80" width="120" />
|
||||
<defence physical="8049" magical="4676" />
|
||||
<speed>
|
||||
<walk ground="53" />
|
||||
<run ground="140" />
|
||||
</speed>
|
||||
</stats>
|
||||
<status attackable="true" />
|
||||
<collision>
|
||||
<radius normal="20" />
|
||||
<height normal="40" />
|
||||
</collision>
|
||||
<skillList>
|
||||
<skill id="4416" level="6" /> <!-- Humanoid -->
|
||||
<skill id="5465" level="1" /> <!-- Earth Attack -->
|
||||
</skillList>
|
||||
<dropLists>
|
||||
<drop>
|
||||
<item id="57" min="4007" max="9350" chance="70" /> <!-- Adena -->
|
||||
</drop>
|
||||
</dropLists>
|
||||
</npc>
|
||||
<npc id="24336" level="85" type="Npc" name="Tanta Lizardman Soldier">
|
||||
<!-- AUTO GENERATED NPC TODO: FIX IT -->
|
||||
<race>ETC</race>
|
||||
<sex>FEMALE</sex>
|
||||
<npc id="24336" level="103" type="Monster" name="Tanta Lizardman Soldier">
|
||||
<race>HUMANOID</race>
|
||||
<sex>MALE</sex>
|
||||
<acquire exp="1408114244" sp="1267196" />
|
||||
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
|
||||
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
|
||||
<vitals hp="308400.715725" hpRegen="9.5" mp="3600.84" mpRegen="3.3" />
|
||||
<attack physical="82640" magical="74826" random="30" critical="4.75" accuracy="4.75" attackSpeed="250" type="SWORD" range="40" distance="80" width="120" />
|
||||
<defence physical="8049" magical="4676" />
|
||||
<speed>
|
||||
<walk ground="40" />
|
||||
<run ground="120" />
|
||||
<walk ground="53" />
|
||||
<run ground="140" />
|
||||
</speed>
|
||||
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
|
||||
<defence physical="405.85106382979" magical="297.0297029703" />
|
||||
</stats>
|
||||
<status attackable="false" />
|
||||
<status attackable="true" />
|
||||
<collision>
|
||||
<radius normal="20" />
|
||||
<height normal="40.25" />
|
||||
</collision>
|
||||
<skillList>
|
||||
<skill id="4416" level="6" /> <!-- Humanoid -->
|
||||
<skill id="5465" level="1" /> <!-- Earth Attack -->
|
||||
</skillList>
|
||||
<dropLists>
|
||||
<drop>
|
||||
<item id="57" min="4007" max="9350" chance="70" /> <!-- Adena -->
|
||||
</drop>
|
||||
</dropLists>
|
||||
</npc>
|
||||
<npc id="24337" level="85" type="Npc" name="Tanta Lizardman Berserker">
|
||||
<!-- AUTO GENERATED NPC TODO: FIX IT -->
|
||||
<race>ETC</race>
|
||||
<sex>FEMALE</sex>
|
||||
<npc id="24337" level="103" type="Monster" name="Tanta Lizardman Berserker">
|
||||
<race>HUMANOID</race>
|
||||
<sex>MALE</sex>
|
||||
<acquire exp="1408114244" sp="1267196" />
|
||||
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
|
||||
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
|
||||
<vitals hp="308400.715725" hpRegen="9.5" mp="3600.84" mpRegen="3.3" />
|
||||
<attack physical="82640" magical="74826" random="30" critical="4.75" accuracy="4.75" attackSpeed="250" type="SWORD" range="40" distance="80" width="120" />
|
||||
<defence physical="8049" magical="4676" />
|
||||
<speed>
|
||||
<walk ground="58" />
|
||||
<run ground="150" />
|
||||
<walk ground="53" />
|
||||
<run ground="140" />
|
||||
</speed>
|
||||
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
|
||||
<defence physical="405.85106382979" magical="297.0297029703" />
|
||||
</stats>
|
||||
<status attackable="false" />
|
||||
<status attackable="true" />
|
||||
<collision>
|
||||
<radius normal="28" />
|
||||
<height normal="37.5" />
|
||||
</collision>
|
||||
<skillList>
|
||||
<skill id="4416" level="6" /> <!-- Humanoid -->
|
||||
<skill id="5465" level="1" /> <!-- Earth Attack -->
|
||||
</skillList>
|
||||
<dropLists>
|
||||
<drop>
|
||||
<item id="57" min="4007" max="9350" chance="70" /> <!-- Adena -->
|
||||
</drop>
|
||||
</dropLists>
|
||||
</npc>
|
||||
<npc id="24338" level="85" type="Npc" name="Tanta Lizardman Archer">
|
||||
<!-- AUTO GENERATED NPC TODO: FIX IT -->
|
||||
<race>ETC</race>
|
||||
<sex>FEMALE</sex>
|
||||
<npc id="24338" level="103" type="Monster" name="Tanta Lizardman Archer">
|
||||
<race>HUMANOID</race>
|
||||
<sex>MALE</sex>
|
||||
<equipment rhand="15302" />
|
||||
<acquire exp="1408114244" sp="1267196" />
|
||||
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
|
||||
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
|
||||
<vitals hp="308400.715725" hpRegen="9.5" mp="3600.84" mpRegen="3.3" />
|
||||
<attack physical="82640" magical="74826" random="30" critical="4.75" accuracy="4.75" attackSpeed="250" type="SWORD" range="40" distance="80" width="120" />
|
||||
<defence physical="8049" magical="4676" />
|
||||
<speed>
|
||||
<walk ground="40" />
|
||||
<run ground="120" />
|
||||
</speed>
|
||||
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
|
||||
<defence physical="405.85106382979" magical="297.0297029703" />
|
||||
</stats>
|
||||
<status attackable="false" />
|
||||
<status attackable="true" />
|
||||
<collision>
|
||||
<radius normal="20" />
|
||||
<height normal="40.25" />
|
||||
</collision>
|
||||
<skillList>
|
||||
<skill id="4416" level="6" /> <!-- Humanoid -->
|
||||
<skill id="5465" level="1" /> <!-- Earth Attack -->
|
||||
</skillList>
|
||||
<dropLists>
|
||||
<drop>
|
||||
<item id="57" min="4007" max="9350" chance="70" /> <!-- Adena -->
|
||||
</drop>
|
||||
</dropLists>
|
||||
</npc>
|
||||
<npc id="24339" level="85" type="Npc" name="Tanta Lizardman Wizard">
|
||||
<!-- AUTO GENERATED NPC TODO: FIX IT -->
|
||||
<race>ETC</race>
|
||||
<sex>FEMALE</sex>
|
||||
<equipment rhand="7" />
|
||||
<npc id="24339" level="103" type="Monster" name="Tanta Lizardman Wizard">
|
||||
<race>HUMANOID</race>
|
||||
<sex>MALE</sex>
|
||||
<equipment rhand="7" />
|
||||
<acquire exp="1453199724" sp="1307788" />
|
||||
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
|
||||
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
|
||||
<vitals hp="333072.6468" hpRegen="9.5" mp="3651.933" mpRegen="3.3" />
|
||||
<attack physical="85997" magical="78431" random="30" critical="4.75" accuracy="4.75" attackSpeed="250" type="SWORD" range="40" distance="80" width="120" />
|
||||
<defence physical="8405" magical="4883" />
|
||||
<speed>
|
||||
<walk ground="43" />
|
||||
<run ground="120" />
|
||||
</speed>
|
||||
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
|
||||
<defence physical="405.85106382979" magical="297.0297029703" />
|
||||
</stats>
|
||||
<status attackable="false" />
|
||||
<status attackable="true" />
|
||||
<collision>
|
||||
<radius normal="13" />
|
||||
<height normal="35" />
|
||||
</collision>
|
||||
<skillList>
|
||||
<skill id="4416" level="6" /> <!-- Humanoid -->
|
||||
<skill id="5465" level="1" /> <!-- Earth Attack -->
|
||||
</skillList>
|
||||
<dropLists>
|
||||
<drop>
|
||||
<item id="57" min="4150" max="9680" chance="70" /> <!-- Adena -->
|
||||
</drop>
|
||||
</dropLists>
|
||||
</npc>
|
||||
<npc id="24340" level="85" type="Npc" name="Tanta Lizardman Summoner">
|
||||
<!-- AUTO GENERATED NPC TODO: FIX IT -->
|
||||
<race>ETC</race>
|
||||
<sex>FEMALE</sex>
|
||||
<npc id="24340" level="103" type="Monster" name="Tanta Lizardman Summoner">
|
||||
<race>HUMANOID</race>
|
||||
<sex>MALE</sex>
|
||||
<acquire exp="1453199724" sp="1307788" />
|
||||
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
|
||||
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
|
||||
<vitals hp="333072.6468" hpRegen="9.5" mp="3651.933" mpRegen="3.3" />
|
||||
<attack physical="85997" magical="78431" random="30" critical="4.75" accuracy="4.75" attackSpeed="250" type="SWORD" range="40" distance="80" width="120" />
|
||||
<defence physical="8405" magical="4883" />
|
||||
<speed>
|
||||
<walk ground="75" />
|
||||
<run ground="150" />
|
||||
<walk ground="43" />
|
||||
<run ground="120" />
|
||||
</speed>
|
||||
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
|
||||
<defence physical="405.85106382979" magical="297.0297029703" />
|
||||
</stats>
|
||||
<status attackable="false" />
|
||||
<status attackable="true" />
|
||||
<collision>
|
||||
<radius normal="29" />
|
||||
<height normal="44" />
|
||||
</collision>
|
||||
<skillList>
|
||||
<skill id="4416" level="6" /> <!-- Humanoid -->
|
||||
<skill id="5465" level="1" /> <!-- Earth Attack -->
|
||||
</skillList>
|
||||
<dropLists>
|
||||
<drop>
|
||||
<item id="57" min="4150" max="9680" chance="70" /> <!-- Adena -->
|
||||
</drop>
|
||||
</dropLists>
|
||||
</npc>
|
||||
<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>
|
||||
<equipment rhand="98" />
|
||||
<npc id="24341" level="103" type="Monster" name="Tanta Lizardman Guard" title="Ugoros' Escort">
|
||||
<race>HUMANOID</race>
|
||||
<sex>MALE</sex>
|
||||
<equipment rhand="98" />
|
||||
<acquire exp="1408114244" sp="1267196" />
|
||||
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
|
||||
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
|
||||
<vitals hp="308400.715725" hpRegen="9.5" mp="3600.84" mpRegen="3.3" />
|
||||
<attack physical="82640" magical="74826" random="30" critical="4.75" accuracy="4.75" attackSpeed="250" type="SWORD" range="40" distance="80" width="120" />
|
||||
<defence physical="8049" magical="4676" />
|
||||
<speed>
|
||||
<walk ground="40" />
|
||||
<walk ground="53" />
|
||||
<run ground="140" />
|
||||
</speed>
|
||||
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
|
||||
<defence physical="405.85106382979" magical="297.0297029703" />
|
||||
</stats>
|
||||
<status attackable="false" />
|
||||
<status attackable="true" />
|
||||
<collision>
|
||||
<radius normal="13" />
|
||||
<height normal="35" />
|
||||
</collision>
|
||||
<skillList>
|
||||
<skill id="4416" level="6" /> <!-- Humanoid -->
|
||||
<skill id="5465" level="1" /> <!-- Earth Attack -->
|
||||
</skillList>
|
||||
<dropLists>
|
||||
<drop>
|
||||
<item id="57" min="4007" max="9350" chance="70" /> <!-- Adena -->
|
||||
</drop>
|
||||
</dropLists>
|
||||
</npc>
|
||||
<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>
|
||||
<npc id="24342" level="104" type="Monster" name="Priest Ugoros" title="Tanta Lizardmen">
|
||||
<parameters>
|
||||
<param name="MoveAroundSocial" value="80" />
|
||||
<param name="MoveAroundSocial1" value="80" />
|
||||
<param name="MoveAroundSocial2" value="80" />
|
||||
<minions name="Privates">
|
||||
<npc id="24341" count="5" respawnTime="0" weightPoint="1" />
|
||||
</minions>
|
||||
<param name="SoulShot" value="100" />
|
||||
<param name="SoulShotRate" value="10" />
|
||||
<param name="SpiritShot" value="100" />
|
||||
<param name="SpiritShotRate" value="5" />
|
||||
<param name="LongRangeGuardRate" value="5" />
|
||||
<skill name="PhysicalSpecial" id="4073" level="6" />
|
||||
</parameters>
|
||||
<race>HUMANOID</race>
|
||||
<sex>MALE</sex>
|
||||
<acquire exp="10172398068" sp="9155033" />
|
||||
<stats str="88" int="79" dex="55" wit="78" con="82" men="78">
|
||||
<vitals hp="8446" hpRegen="10.5" mp="2355" mpRegen="3.6" />
|
||||
<vitals hp="1665362.603085" hpRegen="9.5" mp="3651.933" mpRegen="3.3" />
|
||||
<attack physical="85997" magical="78431" random="30" critical="4.75" accuracy="4.75" attackSpeed="250" type="SWORD" range="40" distance="80" width="120" />
|
||||
<defence physical="8405" magical="4883" />
|
||||
<speed>
|
||||
<walk ground="90" />
|
||||
<run ground="150" />
|
||||
</speed>
|
||||
<attack physical="1950.2231755595" magical="1331.5869440987" critical="4" attackSpeed="253" range="40" />
|
||||
<defence physical="405.85106382979" magical="297.0297029703" />
|
||||
</stats>
|
||||
<status attackable="false" />
|
||||
<status attackable="true" />
|
||||
<collision>
|
||||
<radius normal="60" />
|
||||
<height normal="81.75" />
|
||||
</collision>
|
||||
<skillList>
|
||||
<skill id="4416" level="6" /> <!-- Humanoid -->
|
||||
<skill id="5465" level="1" /> <!-- Earth Attack -->
|
||||
<skill id="32675" level="1" /> <!-- Status Effect Resistance -->
|
||||
</skillList>
|
||||
<dropLists>
|
||||
<drop>
|
||||
<item id="57" min="4150" max="9680" chance="70" /> <!-- Adena -->
|
||||
</drop>
|
||||
</dropLists>
|
||||
</npc>
|
||||
<npc id="24343" level="85" type="Npc" name="Sel Mahum Drill Sergeant">
|
||||
<!-- AUTO GENERATED NPC TODO: FIX IT -->
|
||||
|
@ -1,327 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
|
||||
<!-- Plains of the Lizardmen Zones -->
|
||||
<zone name="oren21_2220_a01_1" type="EffectZone" shape="NPoly" minZ="-3764" maxZ="-3464">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-3;" /> <!-- s_area_poison_bow3 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="83885" Y="80497" />
|
||||
<node X="83325" Y="80678" />
|
||||
<node X="82690" Y="80480" />
|
||||
<node X="82628" Y="79804" />
|
||||
<node X="82713" Y="79397" />
|
||||
<node X="82713" Y="79397" />
|
||||
<node X="82025" Y="78227" />
|
||||
<node X="81718" Y="77815" />
|
||||
<node X="81959" Y="77379" />
|
||||
<node X="82656" Y="77511" />
|
||||
<node X="82656" Y="77511" />
|
||||
<node X="83152" Y="77939" />
|
||||
<node X="83913" Y="78957" />
|
||||
<node X="84190" Y="79474" />
|
||||
<node X="84276" Y="80099" />
|
||||
</zone>
|
||||
<zone name="oren21_2220_a01_2" type="EffectZone" shape="NPoly" minZ="-3740" maxZ="-3240">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-2;" /> <!-- s_area_poison_bow2 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="82755" Y="81625" />
|
||||
<node X="82309" Y="81855" />
|
||||
<node X="81625" Y="81248" />
|
||||
<node X="81626" Y="80626" />
|
||||
<node X="82228" Y="79566" />
|
||||
<node X="82228" Y="79566" />
|
||||
<node X="81220" Y="78236" />
|
||||
<node X="81030" Y="77077" />
|
||||
<node X="82472" Y="76149" />
|
||||
<node X="83270" Y="76354" />
|
||||
<node X="83589" Y="77629" />
|
||||
<node X="84703" Y="78917" />
|
||||
<node X="84777" Y="79993" />
|
||||
<node X="84676" Y="80864" />
|
||||
<node X="84018" Y="81088" />
|
||||
<node X="83337" Y="81240" />
|
||||
<!-- stat name="bannedZoneRange" val="oren21_2220_a01_1" / -->
|
||||
</zone>
|
||||
<zone name="oren21_2220_a01_3" type="EffectZone" shape="NPoly" minZ="-3744" maxZ="-3044">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-1;" /> <!-- s_area_poison_bow1 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="80948" Y="81704" />
|
||||
<node X="80002" Y="80533" />
|
||||
<node X="80106" Y="79870" />
|
||||
<node X="81333" Y="80359" />
|
||||
<node X="81434" Y="79192" />
|
||||
<node X="79905" Y="78427" />
|
||||
<node X="80363" Y="76612" />
|
||||
<node X="80879" Y="75452" />
|
||||
<node X="83080" Y="74980" />
|
||||
<node X="85000" Y="73955" />
|
||||
<node X="85759" Y="75136" />
|
||||
<node X="84154" Y="77015" />
|
||||
<node X="84228" Y="77737" />
|
||||
<node X="85242" Y="78306" />
|
||||
<node X="85692" Y="81525" />
|
||||
<node X="84399" Y="82252" />
|
||||
<node X="83365" Y="81953" />
|
||||
<node X="81610" Y="83388" />
|
||||
<node X="80473" Y="82612" />
|
||||
<!-- stat name="bannedZoneRange" val="oren21_2220_a01_2" / -->
|
||||
</zone>
|
||||
<zone name="oren21_2220_a02_1" type="EffectZone" shape="NPoly" minZ="-3344" maxZ="-3044">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-3;" /> <!-- s_area_poison_bow3 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="91337" Y="77665" />
|
||||
<node X="92093" Y="78507" />
|
||||
<node X="92023" Y="79105" />
|
||||
<node X="90291" Y="79743" />
|
||||
<node X="89466" Y="79279" />
|
||||
<node X="89466" Y="79279" />
|
||||
<node X="89600" Y="77834" />
|
||||
<node X="88778" Y="76650" />
|
||||
<node X="89692" Y="76002" />
|
||||
<node X="90764" Y="77561" />
|
||||
</zone>
|
||||
<zone name="oren21_2220_a02_2" type="EffectZone" shape="NPoly" minZ="-3432" maxZ="-3032">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-2;" /> <!-- s_area_poison_bow2 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="90731" Y="76824" />
|
||||
<node X="91716" Y="77112" />
|
||||
<node X="93656" Y="79500" />
|
||||
<node X="91801" Y="80446" />
|
||||
<node X="88992" Y="80261" />
|
||||
<node X="88992" Y="80261" />
|
||||
<node X="88408" Y="79497" />
|
||||
<node X="89140" Y="78440" />
|
||||
<node X="87884" Y="75539" />
|
||||
<node X="89076" Y="74755" />
|
||||
<node X="90815" Y="76046" />
|
||||
<!-- stat name="bannedZoneRange" val="oren21_2220_a02_1" / -->
|
||||
</zone>
|
||||
<zone name="oren21_2220_a02_3" type="EffectZone" shape="NPoly" minZ="-3600" maxZ="-3200">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-1;" /> <!-- s_area_poison_bow1 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="88436" Y="81303" />
|
||||
<node X="87307" Y="79562" />
|
||||
<node X="88166" Y="78344" />
|
||||
<node X="86441" Y="78316" />
|
||||
<node X="86179" Y="77546" />
|
||||
<node X="87330" Y="75984" />
|
||||
<node X="86509" Y="74262" />
|
||||
<node X="88049" Y="72874" />
|
||||
<node X="89061" Y="74238" />
|
||||
<node X="91577" Y="75214" />
|
||||
<node X="92445" Y="74710" />
|
||||
<node X="92777" Y="75434" />
|
||||
<node X="92125" Y="76318" />
|
||||
<node X="92587" Y="76918" />
|
||||
<node X="94066" Y="76677" />
|
||||
<node X="94437" Y="79460" />
|
||||
<node X="93369" Y="81194" />
|
||||
<node X="91425" Y="81782" />
|
||||
<node X="90501" Y="81054" />
|
||||
<!-- stat name="bannedZoneRange" val="oren21_2220_a02_2" / -->
|
||||
</zone>
|
||||
<zone name="oren21_2220_a03_1" type="EffectZone" shape="NPoly" minZ="-3744" maxZ="-3444">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-3;" /> <!-- s_area_poison_bow3 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="92254" Y="83601" />
|
||||
<node X="92513" Y="84114" />
|
||||
<node X="92406" Y="84883" />
|
||||
<node X="92553" Y="85384" />
|
||||
<node X="91805" Y="85573" />
|
||||
<node X="91805" Y="85573" />
|
||||
<node X="91193" Y="84531" />
|
||||
<node X="91293" Y="83868" />
|
||||
</zone>
|
||||
<zone name="oren21_2220_a03_2" type="EffectZone" shape="NPoly" minZ="-3728" maxZ="-3428">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-2;" /> <!-- s_area_poison_bow2 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="92437" Y="83030" />
|
||||
<node X="93139" Y="83525" />
|
||||
<node X="92934" Y="85775" />
|
||||
<node X="92261" Y="86141" />
|
||||
<node X="90864" Y="85353" />
|
||||
<node X="90864" Y="85353" />
|
||||
<node X="90622" Y="83941" />
|
||||
<node X="91126" Y="83342" />
|
||||
<node X="91818" Y="83153" />
|
||||
<!-- stat name="bannedZoneRange" val="oren21_2220_a03_1" / -->
|
||||
</zone>
|
||||
<zone name="oren21_2220_a03_3" type="EffectZone" shape="NPoly" minZ="-3700" maxZ="-3400">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-1;" /> <!-- s_area_poison_bow1 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="94254" Y="83444" />
|
||||
<node X="93570" Y="83984" />
|
||||
<node X="93445" Y="86178" />
|
||||
<node X="91313" Y="86422" />
|
||||
<node X="90275" Y="86358" />
|
||||
<node X="89791" Y="85414" />
|
||||
<node X="90219" Y="83874" />
|
||||
<node X="89607" Y="83262" />
|
||||
<node X="90015" Y="82634" />
|
||||
<node X="92143" Y="82182" />
|
||||
<node X="94099" Y="82550" />
|
||||
<!-- stat name="bannedZoneRange" val="oren21_2220_a03_2" / -->
|
||||
</zone>
|
||||
<zone name="oren21_2220_a04_1" type="EffectZone" shape="NPoly" minZ="-3584" maxZ="-3184">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-3;" /> <!-- s_area_poison_bow3 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="93513" Y="87903" />
|
||||
<node X="93911" Y="88740" />
|
||||
<node X="93830" Y="89533" />
|
||||
<node X="93276" Y="89513" />
|
||||
<node X="92059" Y="88226" />
|
||||
<node X="92059" Y="88226" />
|
||||
<node X="91971" Y="87777" />
|
||||
<node X="92480" Y="87548" />
|
||||
<node X="92795" Y="87327" />
|
||||
<node X="93262" Y="87501" />
|
||||
</zone>
|
||||
<zone name="oren21_2220_a04_2" type="EffectZone" shape="NPoly" minZ="-3620" maxZ="-3220">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-2;" /> <!-- s_area_poison_bow2 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="92727" Y="86380" />
|
||||
<node X="94103" Y="87753" />
|
||||
<node X="94451" Y="89784" />
|
||||
<node X="93104" Y="90072" />
|
||||
<node X="91228" Y="88097" />
|
||||
<node X="91228" Y="88097" />
|
||||
<node X="91568" Y="87205" />
|
||||
<node X="92330" Y="86409" />
|
||||
<!-- stat name="bannedZoneRange" val="oren21_2220_a04_1" / -->
|
||||
</zone>
|
||||
<zone name="oren21_2220_a04_3" type="EffectZone" shape="NPoly" minZ="-3640" maxZ="-3140">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-1;" /> <!-- s_area_poison_bow1 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="94664" Y="90851" />
|
||||
<node X="93241" Y="91517" />
|
||||
<node X="92850" Y="90548" />
|
||||
<node X="91950" Y="90369" />
|
||||
<node X="91525" Y="89361" />
|
||||
<node X="90345" Y="88918" />
|
||||
<node X="91377" Y="86446" />
|
||||
<node X="93171" Y="86240" />
|
||||
<node X="94273" Y="87094" />
|
||||
<node X="94625" Y="87946" />
|
||||
<node X="95849" Y="89386" />
|
||||
<node X="95401" Y="90138" />
|
||||
<node X="94917" Y="90406" />
|
||||
<!-- stat name="bannedZoneRange" val="oren21_2220_a04_2" / -->
|
||||
</zone>
|
||||
<zone name="oren21_2220_a05_1" type="EffectZone" shape="NPoly" minZ="-3288" maxZ="-2788">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-3;" /> <!-- s_area_poison_bow3 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="88568" Y="92008" />
|
||||
<node X="90012" Y="92048" />
|
||||
<node X="90093" Y="92642" />
|
||||
<node X="88464" Y="92784" />
|
||||
<node X="87451" Y="93745" />
|
||||
<node X="87451" Y="93745" />
|
||||
<node X="86372" Y="92881" />
|
||||
<node X="87136" Y="92149" />
|
||||
</zone>
|
||||
<zone name="oren21_2220_a05_2" type="EffectZone" shape="NPoly" minZ="-3476" maxZ="-2976">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-2;" /> <!-- s_area_poison_bow2 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="87196" Y="94553" />
|
||||
<node X="86308" Y="93675" />
|
||||
<node X="85314" Y="94270" />
|
||||
<node X="84520" Y="93898" />
|
||||
<node X="85968" Y="92702" />
|
||||
<node X="85968" Y="92702" />
|
||||
<node X="86478" Y="91730" />
|
||||
<node X="88406" Y="91514" />
|
||||
<node X="90392" Y="91279" />
|
||||
<node X="90923" Y="92101" />
|
||||
<node X="90953" Y="92766" />
|
||||
<node X="89935" Y="93237" />
|
||||
<node X="88741" Y="93082" />
|
||||
<node X="88416" Y="93943" />
|
||||
<!-- stat name="bannedZoneRange" val="oren21_2220_a05_1" / -->
|
||||
</zone>
|
||||
<zone name="oren21_2220_a05_3" type="EffectZone" shape="NPoly" minZ="-3600" maxZ="-3000">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6435-1;" /> <!-- s_area_poison_bow1 -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="90965" Y="93248" />
|
||||
<node X="86669" Y="95030" />
|
||||
<node X="86060" Y="94247" />
|
||||
<node X="85132" Y="95244" />
|
||||
<node X="83537" Y="94333" />
|
||||
<node X="84037" Y="93518" />
|
||||
<node X="85621" Y="92454" />
|
||||
<node X="86735" Y="90612" />
|
||||
<node X="90830" Y="90531" />
|
||||
<node X="91352" Y="91601" />
|
||||
<node X="92529" Y="92534" />
|
||||
<node X="92241" Y="93634" />
|
||||
<!-- stat name="bannedZoneRange" val="oren21_2220_a05_2" / -->
|
||||
</zone>
|
||||
<zone id="70307" name="oren21_mb2220_ugoz01" type="EffectZone" shape="NPoly" minZ="-3792" maxZ="-3292">
|
||||
<stat name="chance" val="100" />
|
||||
<!-- stat name="unitTick" val="5" / -->
|
||||
<stat name="skillIdLvl" val="6436-1;" /> <!-- s_area_poison_ugoros -->
|
||||
<stat name="default_enabled" val="true" />
|
||||
<stat name="reuse" val="5000" /> <!-- Guess -->
|
||||
<node X="96971" Y="84648" />
|
||||
<node X="97842" Y="86047" />
|
||||
<node X="97803" Y="86717" />
|
||||
<node X="95982" Y="86676" />
|
||||
<node X="95046" Y="85676" />
|
||||
<node X="95166" Y="84573" />
|
||||
<node X="96095" Y="84213" />
|
||||
</zone>
|
||||
<zone name="oren21_mb2220_ugoz01" type="NoRestartZone" shape="NPoly" minZ="-3758" maxZ="-2758">
|
||||
<stat name="restartTime" val="1800" />
|
||||
<stat name="restartAllowedTime" val="1" />
|
||||
<node X="97040" Y="84524" />
|
||||
<node X="98383" Y="85869" />
|
||||
<node X="98344" Y="87269" />
|
||||
<node X="95708" Y="87235" />
|
||||
<node X="94661" Y="85673" />
|
||||
<node X="95107" Y="84457" />
|
||||
<node X="96094" Y="84094" />
|
||||
</zone>
|
||||
</list>
|
Loading…
Reference in New Issue
Block a user