Wastelands improvements.
Contributed by Stayway.
This commit is contained in:
parent
8b912f1a82
commit
1302da33fc
4
trunk/dist/game/data/html/guard/33516.htm
vendored
Normal file
4
trunk/dist/game/data/html/guard/33516.htm
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<html><body>Guard Lef:<br>
|
||||||
|
I don't mean to brag, but I think that the soldiers who were sent after Sakum are the most skilled Elite Soldiers in all Gludio.<br>
|
||||||
|
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
|
||||||
|
</body></html>
|
4
trunk/dist/game/data/html/guard/33517.htm
vendored
Normal file
4
trunk/dist/game/data/html/guard/33517.htm
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<html><body>Guard Shuazen:<br>
|
||||||
|
Your face shows suffering. Always watch your back.<br>
|
||||||
|
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
|
||||||
|
</body></html>
|
1
trunk/dist/game/data/scripts.cfg
vendored
1
trunk/dist/game/data/scripts.cfg
vendored
@ -141,6 +141,7 @@ ai/group_template/StakatoNest.java
|
|||||||
ai/group_template/SummonPc.java
|
ai/group_template/SummonPc.java
|
||||||
ai/group_template/TurekOrcs.java
|
ai/group_template/TurekOrcs.java
|
||||||
ai/group_template/WarriorFishingBlock.java
|
ai/group_template/WarriorFishingBlock.java
|
||||||
|
ai/group_template/Wasteland.java
|
||||||
ai/group_template/YeSagira.java
|
ai/group_template/YeSagira.java
|
||||||
|
|
||||||
# Individual
|
# Individual
|
||||||
|
78
trunk/dist/game/data/scripts/ai/group_template/Wasteland.java
vendored
Normal file
78
trunk/dist/game/data/scripts/ai/group_template/Wasteland.java
vendored
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2004-2015 L2J DataPack
|
||||||
|
*
|
||||||
|
* This file is part of L2J DataPack.
|
||||||
|
*
|
||||||
|
* L2J DataPack is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* L2J DataPack is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
package ai.group_template;
|
||||||
|
|
||||||
|
import ai.npc.AbstractNpcAI;
|
||||||
|
|
||||||
|
import com.l2jserver.gameserver.model.actor.L2Character;
|
||||||
|
import com.l2jserver.gameserver.model.actor.L2Npc;
|
||||||
|
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
|
||||||
|
import com.l2jserver.gameserver.model.actor.instance.L2QuestGuardInstance;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wasteland AI.
|
||||||
|
* @author Stayway, Mobius
|
||||||
|
*/
|
||||||
|
public class Wasteland extends AbstractNpcAI
|
||||||
|
{
|
||||||
|
// NPCs
|
||||||
|
private static final int JOEL = 33516;
|
||||||
|
private static final int SHUAZEN = 33517;
|
||||||
|
private static final int GUARD = 19126;
|
||||||
|
|
||||||
|
public Wasteland()
|
||||||
|
{
|
||||||
|
super(Wasteland.class.getSimpleName(), "ai/group_template");
|
||||||
|
addSpawnId(JOEL, SHUAZEN, GUARD);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
|
||||||
|
{
|
||||||
|
if (event.equals("GUARD_AGGRO") && (npc != null) && !npc.isDead())
|
||||||
|
{
|
||||||
|
for (L2Character nearby : npc.getKnownList().getKnownCharactersInRadius(npc.getAggroRange()))
|
||||||
|
{
|
||||||
|
if (npc.isInCombat())
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (nearby.isMonster())
|
||||||
|
{
|
||||||
|
((L2QuestGuardInstance) npc).addDamage(nearby, 1, null);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
startQuestTimer("GUARD_AGGRO", 10000, npc, null);
|
||||||
|
}
|
||||||
|
return super.onAdvEvent(event, npc, player);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String onSpawn(L2Npc npc)
|
||||||
|
{
|
||||||
|
startQuestTimer("GUARD_AGGRO", 5000, npc, null);
|
||||||
|
return super.onSpawn(npc);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args)
|
||||||
|
{
|
||||||
|
new Wasteland();
|
||||||
|
}
|
||||||
|
}
|
315
trunk/dist/game/data/stats/npcs/19100-19199.xml
vendored
315
trunk/dist/game/data/stats/npcs/19100-19199.xml
vendored
@ -3,7 +3,8 @@
|
|||||||
<npc id="19100" level="97" type="L2Npc" name="Antharas Transparent 5">
|
<npc id="19100" level="97" type="L2Npc" name="Antharas Transparent 5">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -25,7 +26,8 @@
|
|||||||
<npc id="19101" level="97" type="L2Npc" name="Antharas Transparent 6">
|
<npc id="19101" level="97" type="L2Npc" name="Antharas Transparent 6">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -47,7 +49,8 @@
|
|||||||
<npc id="19102" level="97" type="L2Npc" name="Antharas Transparent 7">
|
<npc id="19102" level="97" type="L2Npc" name="Antharas Transparent 7">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -69,7 +72,8 @@
|
|||||||
<npc id="19103" level="97" type="L2Npc" name="Antharas Transparent 8">
|
<npc id="19103" level="97" type="L2Npc" name="Antharas Transparent 8">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -91,7 +95,8 @@
|
|||||||
<npc id="19104" level="97" type="L2Npc" name="Antharas Transparent 9">
|
<npc id="19104" level="97" type="L2Npc" name="Antharas Transparent 9">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -113,7 +118,8 @@
|
|||||||
<npc id="19105" level="97" type="L2Npc" name="Antharas Transparent 10">
|
<npc id="19105" level="97" type="L2Npc" name="Antharas Transparent 10">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -135,7 +141,8 @@
|
|||||||
<npc id="19106" level="97" type="L2Npc" name="Antharas Transparent 11">
|
<npc id="19106" level="97" type="L2Npc" name="Antharas Transparent 11">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -157,7 +164,8 @@
|
|||||||
<npc id="19107" level="97" type="L2Npc" name="Antharas Transparent 12">
|
<npc id="19107" level="97" type="L2Npc" name="Antharas Transparent 12">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -179,7 +187,8 @@
|
|||||||
<npc id="19108" level="97" type="L2Npc" name="Antharas Transparent 13">
|
<npc id="19108" level="97" type="L2Npc" name="Antharas Transparent 13">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -201,7 +210,8 @@
|
|||||||
<npc id="19109" level="97" type="L2Npc" name="Antharas Transparent 14">
|
<npc id="19109" level="97" type="L2Npc" name="Antharas Transparent 14">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -223,7 +233,8 @@
|
|||||||
<npc id="19110" level="99" type="L2Npc" name="Antharas" title="Check Drops">
|
<npc id="19110" level="99" type="L2Npc" name="Antharas" title="Check Drops">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -245,7 +256,8 @@
|
|||||||
<npc id="19111" level="99" type="L2Npc" name="Valakas" title="Check Drops">
|
<npc id="19111" level="99" type="L2Npc" name="Valakas" title="Check Drops">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -267,7 +279,8 @@
|
|||||||
<npc id="19112" level="99" type="L2Npc" name="Lindvior" title="Check Drops">
|
<npc id="19112" level="99" type="L2Npc" name="Lindvior" title="Check Drops">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -289,7 +302,8 @@
|
|||||||
<npc id="19113" level="97" type="L2Npc" name="Inactive Player Supplies">
|
<npc id="19113" level="97" type="L2Npc" name="Inactive Player Supplies">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -311,7 +325,8 @@
|
|||||||
<npc id="19114" level="98" type="L2Npc" name="Jewel Transparent 3">
|
<npc id="19114" level="98" type="L2Npc" name="Jewel Transparent 3">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13881" hpRegen="7.5" mp="13881" mpRegen="2.7" />
|
<vitals hp="13881" hpRegen="7.5" mp="13881" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -336,7 +351,8 @@
|
|||||||
<npc id="19115" level="98" type="L2Npc" name="Corrupted Poison Cloud">
|
<npc id="19115" level="98" type="L2Npc" name="Corrupted Poison Cloud">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13881" hpRegen="7.5" mp="13881" mpRegen="2.7" />
|
<vitals hp="13881" hpRegen="7.5" mp="13881" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -363,7 +379,8 @@
|
|||||||
<npc id="19116" level="95" type="L2Npc" name="Jewel">
|
<npc id="19116" level="95" type="L2Npc" name="Jewel">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -385,7 +402,8 @@
|
|||||||
<npc id="19117" level="90" type="L2Npc" name="Rotting Corpse">
|
<npc id="19117" level="90" type="L2Npc" name="Rotting Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMANOID</race>
|
<race>HUMANOID</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="9311" hpRegen="7.5" mp="9311" mpRegen="2.7" />
|
<vitals hp="9311" hpRegen="7.5" mp="9311" mpRegen="2.7" />
|
||||||
<attack physical="30625" magical="21875" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="30625" magical="21875" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1300" magical="1250" />
|
<defence physical="1300" magical="1250" />
|
||||||
@ -413,7 +431,8 @@
|
|||||||
<npc id="19118" level="90" type="L2Npc" name="Rotting Corpse">
|
<npc id="19118" level="90" type="L2Npc" name="Rotting Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMANOID</race>
|
<race>HUMANOID</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="9311" hpRegen="7.5" mp="9311" mpRegen="2.7" />
|
<vitals hp="9311" hpRegen="7.5" mp="9311" mpRegen="2.7" />
|
||||||
<attack physical="30625" magical="21875" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="30625" magical="21875" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1300" magical="1250" />
|
<defence physical="1300" magical="1250" />
|
||||||
@ -441,7 +460,8 @@
|
|||||||
<npc id="19119" level="94" type="L2Npc" name="Harnak Transparent 1">
|
<npc id="19119" level="94" type="L2Npc" name="Harnak Transparent 1">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11340" hpRegen="7.5" mp="11340" mpRegen="2.7" />
|
<vitals hp="11340" hpRegen="7.5" mp="11340" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -463,7 +483,8 @@
|
|||||||
<npc id="19120" level="94" type="L2Npc" name="Harnak Transparent 2">
|
<npc id="19120" level="94" type="L2Npc" name="Harnak Transparent 2">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ETC</race>
|
<race>ETC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11340" hpRegen="7.5" mp="11340" mpRegen="2.7" />
|
<vitals hp="11340" hpRegen="7.5" mp="11340" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -485,7 +506,8 @@
|
|||||||
<npc id="19121" level="95" type="L2Npc" name="Altar of Sacrifice">
|
<npc id="19121" level="95" type="L2Npc" name="Altar of Sacrifice">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -511,7 +533,8 @@
|
|||||||
<npc id="19122" level="95" type="L2Npc" name="Altar of Sacrifice">
|
<npc id="19122" level="95" type="L2Npc" name="Altar of Sacrifice">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="1000000" hpRegen="7.5" mp="1000000" mpRegen="2.7" />
|
<vitals hp="1000000" hpRegen="7.5" mp="1000000" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -537,7 +560,8 @@
|
|||||||
<npc id="19123" level="95" type="L2Npc" name="Altar of Shilen">
|
<npc id="19123" level="95" type="L2Npc" name="Altar of Shilen">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -564,7 +588,8 @@
|
|||||||
<npc id="19124" level="98" type="L2Npc" name="Explosive Energy">
|
<npc id="19124" level="98" type="L2Npc" name="Explosive Energy">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13881" hpRegen="7.5" mp="13881" mpRegen="2.7" />
|
<vitals hp="13881" hpRegen="7.5" mp="13881" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -591,7 +616,8 @@
|
|||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<acquire exp="708857856" sp="1676769" />
|
<acquire exp="708857856" sp="1676769" />
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13881" hpRegen="7.5" mp="13881" mpRegen="2.7" />
|
<vitals hp="13881" hpRegen="7.5" mp="13881" mpRegen="2.7" />
|
||||||
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="43000" magical="32250" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1720" magical="1740" />
|
<defence physical="1720" magical="1740" />
|
||||||
@ -614,13 +640,15 @@
|
|||||||
<height normal="0.1" />
|
<height normal="0.1" />
|
||||||
</collision>
|
</collision>
|
||||||
</npc>
|
</npc>
|
||||||
<npc id="19126" level="30" type="L2Npc" name="Commando">
|
<npc id="19126" level="30" type="L2QuestGuard" name="Commando">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<equipment rhand="129"/>
|
||||||
<vitals hp="957" hpRegen="7.5" mp="957" mpRegen="2.7" />
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
|
<vitals hp="444957" hpRegen="7.5" mp="957" mpRegen="2.7" />
|
||||||
<attack physical="10" magical="10" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="10" magical="10" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="341" magical="250" />
|
<defence physical="1341" magical="1250" />
|
||||||
<attribute>
|
<attribute>
|
||||||
<defence fire="20" water="20" wind="20" earth="20" holy="20" dark="20" />
|
<defence fire="20" water="20" wind="20" earth="20" holy="20" dark="20" />
|
||||||
</attribute>
|
</attribute>
|
||||||
@ -630,10 +658,16 @@
|
|||||||
</speed>
|
</speed>
|
||||||
<hit_time>333</hit_time>
|
<hit_time>333</hit_time>
|
||||||
</stats>
|
</stats>
|
||||||
<status attackable="false" />
|
<status attackable="false" talkable="false" targetable="false" showName="true"/>
|
||||||
<skill_list>
|
<skill_list>
|
||||||
<skill id="4416" level="14" />
|
<skill id="4416" level="14" />
|
||||||
</skill_list>
|
</skill_list>
|
||||||
|
<ex_crt_effect>false</ex_crt_effect>
|
||||||
|
<ai aggroRange="500" clanHelpRange="300" isAggressive="false">
|
||||||
|
<clan_list>
|
||||||
|
<clan>GUARD</clan>
|
||||||
|
</clan_list>
|
||||||
|
</ai>
|
||||||
<collision>
|
<collision>
|
||||||
<radius normal="8" />
|
<radius normal="8" />
|
||||||
<height normal="24" />
|
<height normal="24" />
|
||||||
@ -642,7 +676,8 @@
|
|||||||
<npc id="19127" level="30" type="L2Npc" name="Commando Captain">
|
<npc id="19127" level="30" type="L2Npc" name="Commando Captain">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="1914" hpRegen="7.5" mp="1914" mpRegen="2.7" />
|
<vitals hp="1914" hpRegen="7.5" mp="1914" mpRegen="2.7" />
|
||||||
<attack physical="10" magical="10" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="10" magical="10" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="341" magical="250" />
|
<defence physical="341" magical="250" />
|
||||||
@ -667,7 +702,8 @@
|
|||||||
<npc id="19128" level="97" type="L2Npc" name="Fellow" title="Balthus Knight">
|
<npc id="19128" level="97" type="L2Npc" name="Fellow" title="Balthus Knight">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1680" magical="1710" />
|
<defence physical="1680" magical="1710" />
|
||||||
@ -692,7 +728,8 @@
|
|||||||
<npc id="19129" level="97" type="L2Npc" name="Ateld" title="Balthus Knight">
|
<npc id="19129" level="97" type="L2Npc" name="Ateld" title="Balthus Knight">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1680" magical="1710" />
|
<defence physical="1680" magical="1710" />
|
||||||
@ -717,7 +754,8 @@
|
|||||||
<npc id="19130" level="97" type="L2Npc" name="Paulia" title="Balthus Knight">
|
<npc id="19130" level="97" type="L2Npc" name="Paulia" title="Balthus Knight">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ELF</race>
|
<race>ELF</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="42000" magical="31500" random="30" critical="8" accuracy="4.75" attackSpeed="253" type="SWORD" range="1100" distance="80" width="120" />
|
<attack physical="42000" magical="31500" random="30" critical="8" accuracy="4.75" attackSpeed="253" type="SWORD" range="1100" distance="80" width="120" />
|
||||||
<defence physical="1680" magical="1710" />
|
<defence physical="1680" magical="1710" />
|
||||||
@ -742,7 +780,8 @@
|
|||||||
<npc id="19131" level="97" type="L2Npc" name="Rash" title="Support Troop Lieutenant">
|
<npc id="19131" level="97" type="L2Npc" name="Rash" title="Support Troop Lieutenant">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1680" magical="1710" />
|
<defence physical="1680" magical="1710" />
|
||||||
@ -767,7 +806,8 @@
|
|||||||
<npc id="19132" level="97" type="L2Npc" name="Kale" title="Balthus Envoy">
|
<npc id="19132" level="97" type="L2Npc" name="Kale" title="Balthus Envoy">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1680" magical="1710" />
|
<defence physical="1680" magical="1710" />
|
||||||
@ -792,7 +832,8 @@
|
|||||||
<npc id="19133" level="97" type="L2Npc" name="Expedition Member">
|
<npc id="19133" level="97" type="L2Npc" name="Expedition Member">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="80" distance="80" width="120" />
|
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="80" distance="80" width="120" />
|
||||||
<defence physical="1680" magical="1710" />
|
<defence physical="1680" magical="1710" />
|
||||||
@ -817,7 +858,8 @@
|
|||||||
<npc id="19134" level="97" type="L2Npc" name="Antharas Decoration 1">
|
<npc id="19134" level="97" type="L2Npc" name="Antharas Decoration 1">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1680" magical="1710" />
|
<defence physical="1680" magical="1710" />
|
||||||
@ -842,7 +884,8 @@
|
|||||||
<npc id="19135" level="97" type="L2Npc" name="Antharas Decoration 2">
|
<npc id="19135" level="97" type="L2Npc" name="Antharas Decoration 2">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
<vitals hp="13190" hpRegen="7.5" mp="13190" mpRegen="2.7" />
|
||||||
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="42000" magical="31500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1680" magical="1710" />
|
<defence physical="1680" magical="1710" />
|
||||||
@ -867,7 +910,8 @@
|
|||||||
<npc id="19136" level="85" type="L2Npc" name="Expedition Member">
|
<npc id="19136" level="85" type="L2Npc" name="Expedition Member">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DARK_ELF</race>
|
<race>DARK_ELF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="8" accuracy="4.75" attackSpeed="253" type="SWORD" range="1100" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="8" accuracy="4.75" attackSpeed="253" type="SWORD" range="1100" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -892,7 +936,8 @@
|
|||||||
<npc id="19137" level="85" type="L2Npc" name="Expedition Member">
|
<npc id="19137" level="85" type="L2Npc" name="Expedition Member">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -917,7 +962,8 @@
|
|||||||
<npc id="19138" level="85" type="L2Npc" name="Antharas Decoration 3">
|
<npc id="19138" level="85" type="L2Npc" name="Antharas Decoration 3">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -942,7 +988,8 @@
|
|||||||
<npc id="19139" level="85" type="L2Npc" name="Antharas Decoration 4">
|
<npc id="19139" level="85" type="L2Npc" name="Antharas Decoration 4">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ELF</race>
|
<race>ELF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -967,7 +1014,8 @@
|
|||||||
<npc id="19140" level="85" type="L2Npc" name="Antharas Decoration 5">
|
<npc id="19140" level="85" type="L2Npc" name="Antharas Decoration 5">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -992,7 +1040,8 @@
|
|||||||
<npc id="19141" level="1" type="L2Npc" name="Combat Officer">
|
<npc id="19141" level="1" type="L2Npc" name="Combat Officer">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
<vitals hp="6710" hpRegen="7.5" mp="6710" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -1017,7 +1066,8 @@
|
|||||||
<npc id="19142" level="95" type="L2Npc" name="Sacrificial Offering">
|
<npc id="19142" level="95" type="L2Npc" name="Sacrificial Offering">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -1042,7 +1092,8 @@
|
|||||||
<npc id="19143" level="95" type="L2Npc" name="Sacrificial Offering">
|
<npc id="19143" level="95" type="L2Npc" name="Sacrificial Offering">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -1067,7 +1118,8 @@
|
|||||||
<npc id="19144" level="95" type="L2Npc" name="Sacrificial Offering">
|
<npc id="19144" level="95" type="L2Npc" name="Sacrificial Offering">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -1092,7 +1144,8 @@
|
|||||||
<npc id="19145" level="95" type="L2Npc" name="Sacrificial Offering">
|
<npc id="19145" level="95" type="L2Npc" name="Sacrificial Offering">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -1117,7 +1170,8 @@
|
|||||||
<npc id="19146" level="95" type="L2Npc" name="Sacrificial Offering">
|
<npc id="19146" level="95" type="L2Npc" name="Sacrificial Offering">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -1142,7 +1196,8 @@
|
|||||||
<npc id="19147" level="95" type="L2Npc" name="Sacrificial Offering">
|
<npc id="19147" level="95" type="L2Npc" name="Sacrificial Offering">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -1167,7 +1222,8 @@
|
|||||||
<npc id="19148" level="95" type="L2Npc" name="Sacrificial Offering">
|
<npc id="19148" level="95" type="L2Npc" name="Sacrificial Offering">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -1192,7 +1248,8 @@
|
|||||||
<npc id="19149" level="95" type="L2Npc" name="Sacrificial Offering">
|
<npc id="19149" level="95" type="L2Npc" name="Sacrificial Offering">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -1217,7 +1274,8 @@
|
|||||||
<npc id="19150" level="95" type="L2Npc" name="Sacrificial Offering">
|
<npc id="19150" level="95" type="L2Npc" name="Sacrificial Offering">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -1242,7 +1300,8 @@
|
|||||||
<npc id="19151" level="95" type="L2Npc" name="Sacrificial Offering">
|
<npc id="19151" level="95" type="L2Npc" name="Sacrificial Offering">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
<vitals hp="11922" hpRegen="7.5" mp="11922" mpRegen="2.7" />
|
||||||
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40000" magical="30000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1600" magical="1650" />
|
<defence physical="1600" magical="1650" />
|
||||||
@ -1267,7 +1326,8 @@
|
|||||||
<npc id="19152" level="10" type="L2QuestGuard" name="Combat Soldier">
|
<npc id="19152" level="10" type="L2QuestGuard" name="Combat Soldier">
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<equipment lhand="102" rhand="129" />
|
<equipment lhand="102" rhand="129" />
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="258" hpRegen="7.5" mp="258" mpRegen="2.7" />
|
<vitals hp="258" hpRegen="7.5" mp="258" mpRegen="2.7" />
|
||||||
<attack physical="40" magical="663" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40" magical="663" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="341" magical="250" />
|
<defence physical="341" magical="250" />
|
||||||
@ -1296,7 +1356,8 @@
|
|||||||
</npc>
|
</npc>
|
||||||
<npc id="19153" level="10" type="L2QuestGuard" name="Combat Soldier">
|
<npc id="19153" level="10" type="L2QuestGuard" name="Combat Soldier">
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="258" hpRegen="7.5" mp="258" mpRegen="2.7" />
|
<vitals hp="258" hpRegen="7.5" mp="258" mpRegen="2.7" />
|
||||||
<attack physical="40" magical="663" random="30" critical="2" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="40" magical="663" random="30" critical="2" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="341" magical="250" />
|
<defence physical="341" magical="250" />
|
||||||
@ -1326,7 +1387,8 @@
|
|||||||
<npc id="19154" level="17" type="L2Npc" name="Combat Officer" title="Combat Assistant">
|
<npc id="19154" level="17" type="L2Npc" name="Combat Officer" title="Combat Assistant">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ANIMAL</race>
|
<race>ANIMAL</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="447" hpRegen="7.5" mp="447" mpRegen="2.7" />
|
<vitals hp="447" hpRegen="7.5" mp="447" mpRegen="2.7" />
|
||||||
<attack physical="26" magical="663" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="26" magical="663" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="341" magical="250" />
|
<defence physical="341" magical="250" />
|
||||||
@ -1351,7 +1413,8 @@
|
|||||||
<npc id="19155" level="17" type="L2QuestGuard" name="Infiltration Officer" title="Combat Assistant">
|
<npc id="19155" level="17" type="L2QuestGuard" name="Infiltration Officer" title="Combat Assistant">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="1585" hpRegen="7.5" mp="1585" mpRegen="2.7" />
|
<vitals hp="1585" hpRegen="7.5" mp="1585" mpRegen="2.7" />
|
||||||
<attack physical="62" magical="3" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="62" magical="3" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="120" magical="80" />
|
<defence physical="120" magical="80" />
|
||||||
@ -1376,7 +1439,8 @@
|
|||||||
<npc id="19156" level="86" type="L2Npc" name="Servitor">
|
<npc id="19156" level="86" type="L2Npc" name="Servitor">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ELEMENTAL</race>
|
<race>ELEMENTAL</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="11467" hpRegen="7.5" mp="11467" mpRegen="2.7" />
|
<vitals hp="11467" hpRegen="7.5" mp="11467" mpRegen="2.7" />
|
||||||
<attack physical="23250" magical="15500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="23250" magical="15500" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="744" magical="920" />
|
<defence physical="744" magical="920" />
|
||||||
@ -1405,7 +1469,8 @@
|
|||||||
<npc id="19157" level="10" type="L2Npc" name="Resurrected Vengeful Spirit">
|
<npc id="19157" level="10" type="L2Npc" name="Resurrected Vengeful Spirit">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMANOID</race>
|
<race>HUMANOID</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="258" hpRegen="7.5" mp="258" mpRegen="2.7" />
|
<vitals hp="258" hpRegen="7.5" mp="258" mpRegen="2.7" />
|
||||||
<attack physical="971" magical="663" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="971" magical="663" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="341" magical="250" />
|
<defence physical="341" magical="250" />
|
||||||
@ -1431,7 +1496,8 @@
|
|||||||
<npc id="19158" level="8" type="L2Npc" name="Resurrected Vengeful Spirit">
|
<npc id="19158" level="8" type="L2Npc" name="Resurrected Vengeful Spirit">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="198" hpRegen="7.5" mp="198" mpRegen="2.7" />
|
<vitals hp="198" hpRegen="7.5" mp="198" mpRegen="2.7" />
|
||||||
<attack physical="971" magical="663" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="971" magical="663" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="341" magical="250" />
|
<defence physical="341" magical="250" />
|
||||||
@ -1457,7 +1523,8 @@
|
|||||||
<npc id="19159" level="99" type="L2Npc" name="Earth Wyrm Trasken" title="Hell's Gate">
|
<npc id="19159" level="99" type="L2Npc" name="Earth Wyrm Trasken" title="Hell's Gate">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>BUG</race>
|
<race>BUG</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="172999998" hpRegen="7.5" mp="172999998" mpRegen="2.7" />
|
<vitals hp="172999998" hpRegen="7.5" mp="172999998" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1485,7 +1552,8 @@
|
|||||||
<npc id="19160" level="99" type="L2Npc" name="Teredor">
|
<npc id="19160" level="99" type="L2Npc" name="Teredor">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>BUG</race>
|
<race>BUG</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="9744427" hpRegen="7.5" mp="9744427" mpRegen="2.7" />
|
<vitals hp="9744427" hpRegen="7.5" mp="9744427" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1511,7 +1579,8 @@
|
|||||||
<npc id="19161" level="99" type="L2Npc" name="Fire Region">
|
<npc id="19161" level="99" type="L2Npc" name="Fire Region">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1539,7 +1608,8 @@
|
|||||||
<npc id="19162" level="99" type="L2Npc" name="Magical Power Ballista">
|
<npc id="19162" level="99" type="L2Npc" name="Magical Power Ballista">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1565,7 +1635,8 @@
|
|||||||
<npc id="19163" level="1" type="L2Npc" name="Wastelands Decoration 1">
|
<npc id="19163" level="1" type="L2Npc" name="Wastelands Decoration 1">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>HUMAN</race>
|
<race>HUMAN</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1590,7 +1661,8 @@
|
|||||||
<npc id="19164" level="99" type="L2Npc" name="Tentacle">
|
<npc id="19164" level="99" type="L2Npc" name="Tentacle">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>BUG</race>
|
<race>BUG</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1616,7 +1688,8 @@
|
|||||||
<npc id="19165" level="99" type="L2Npc" name="Tentacle">
|
<npc id="19165" level="99" type="L2Npc" name="Tentacle">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>BUG</race>
|
<race>BUG</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1642,7 +1715,8 @@
|
|||||||
<npc id="19166" level="99" type="L2Npc" name="Clan Orc">
|
<npc id="19166" level="99" type="L2Npc" name="Clan Orc">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ORC</race>
|
<race>ORC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1668,7 +1742,8 @@
|
|||||||
<npc id="19167" level="99" type="L2Npc" name="Clan Orc">
|
<npc id="19167" level="99" type="L2Npc" name="Clan Orc">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ORC</race>
|
<race>ORC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1694,7 +1769,8 @@
|
|||||||
<npc id="19168" level="99" type="L2Npc" name="Clan Orc Subordinate">
|
<npc id="19168" level="99" type="L2Npc" name="Clan Orc Subordinate">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ORC</race>
|
<race>ORC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1720,7 +1796,8 @@
|
|||||||
<npc id="19169" level="99" type="L2Npc" name="Clan Orc Subordinate">
|
<npc id="19169" level="99" type="L2Npc" name="Clan Orc Subordinate">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ORC</race>
|
<race>ORC</race>
|
||||||
<stats> <!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
<stats>
|
||||||
|
<!-- str="88" int="79" dex="55" wit="78" con="82" men="78" -->
|
||||||
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
<vitals hp="14612" hpRegen="7.5" mp="14612" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1746,7 +1823,8 @@
|
|||||||
<npc id="19170" level="1" type="L2Npc" name="Queen of Darkness">
|
<npc id="19170" level="1" type="L2Npc" name="Queen of Darkness">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="309" hpRegen="7.5" mp="309" mpRegen="2.7" />
|
<vitals hp="309" hpRegen="7.5" mp="309" mpRegen="2.7" />
|
||||||
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="44000" magical="33000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="1760" magical="1770" />
|
<defence physical="1760" magical="1770" />
|
||||||
@ -1771,7 +1849,8 @@
|
|||||||
<npc id="19171" level="85" type="L2Npc" name="Tentacle">
|
<npc id="19171" level="85" type="L2Npc" name="Tentacle">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>BUG</race>
|
<race>BUG</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -1797,7 +1876,8 @@
|
|||||||
<npc id="19172" level="85" type="L2Npc" name="Teredor">
|
<npc id="19172" level="85" type="L2Npc" name="Teredor">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>BUG</race>
|
<race>BUG</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -1823,7 +1903,8 @@
|
|||||||
<npc id="19173" level="85" type="L2Npc" name="Corpse">
|
<npc id="19173" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -1848,7 +1929,8 @@
|
|||||||
<npc id="19174" level="85" type="L2Npc" name="Corpse">
|
<npc id="19174" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -1873,7 +1955,8 @@
|
|||||||
<npc id="19175" level="85" type="L2Npc" name="Corpse">
|
<npc id="19175" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -1898,7 +1981,8 @@
|
|||||||
<npc id="19176" level="85" type="L2Npc" name="Corpse">
|
<npc id="19176" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -1923,7 +2007,8 @@
|
|||||||
<npc id="19177" level="85" type="L2Npc" name="Corpse">
|
<npc id="19177" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -1948,7 +2033,8 @@
|
|||||||
<npc id="19178" level="85" type="L2Npc" name="Corpse">
|
<npc id="19178" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -1973,7 +2059,8 @@
|
|||||||
<npc id="19179" level="85" type="L2Npc" name="Corpse">
|
<npc id="19179" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -1998,7 +2085,8 @@
|
|||||||
<npc id="19180" level="85" type="L2Npc" name="Corpse">
|
<npc id="19180" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2023,7 +2111,8 @@
|
|||||||
<npc id="19181" level="85" type="L2Npc" name="Corpse">
|
<npc id="19181" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2048,7 +2137,8 @@
|
|||||||
<npc id="19182" level="85" type="L2Npc" name="Corpse">
|
<npc id="19182" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2074,7 +2164,8 @@
|
|||||||
<npc id="19183" level="85" type="L2Npc" name="Corpse">
|
<npc id="19183" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>SIEGE_WEAPON</race>
|
<race>SIEGE_WEAPON</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2100,7 +2191,8 @@
|
|||||||
<npc id="19184" level="85" type="L2Npc" name="Corpse">
|
<npc id="19184" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2125,7 +2217,8 @@
|
|||||||
<npc id="19185" level="85" type="L2Npc" name="Corpse">
|
<npc id="19185" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2150,7 +2243,8 @@
|
|||||||
<npc id="19186" level="85" type="L2Npc" name="Corpse">
|
<npc id="19186" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2175,7 +2269,8 @@
|
|||||||
<npc id="19187" level="85" type="L2Npc" name="Corpse">
|
<npc id="19187" level="85" type="L2Npc" name="Corpse">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2200,7 +2295,8 @@
|
|||||||
<npc id="19188" level="85" type="L2Npc" name="Toma" title="Master">
|
<npc id="19188" level="85" type="L2Npc" name="Toma" title="Master">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2225,7 +2321,8 @@
|
|||||||
<npc id="19189" level="85" type="L2Npc" name="Siege Golem">
|
<npc id="19189" level="85" type="L2Npc" name="Siege Golem">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>CONSTRUCT</race>
|
<race>CONSTRUCT</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2251,7 +2348,8 @@
|
|||||||
<npc id="19190" level="85" type="L2Npc" name="Swoop Cannon">
|
<npc id="19190" level="85" type="L2Npc" name="Swoop Cannon">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>SIEGE_WEAPON</race>
|
<race>SIEGE_WEAPON</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2276,7 +2374,8 @@
|
|||||||
<npc id="19191" level="85" type="L2Npc" name="Croto" title="Captain">
|
<npc id="19191" level="85" type="L2Npc" name="Croto" title="Captain">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>ORC</race>
|
<race>ORC</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2302,7 +2401,8 @@
|
|||||||
<npc id="19192" level="85" type="L2Npc" name="Bronk" title="Head Blacksmith">
|
<npc id="19192" level="85" type="L2Npc" name="Bronk" title="Head Blacksmith">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2327,7 +2427,8 @@
|
|||||||
<npc id="19193" level="85" type="L2Npc" name="Rogin" title="Deliveryman">
|
<npc id="19193" level="85" type="L2Npc" name="Rogin" title="Deliveryman">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2353,7 +2454,8 @@
|
|||||||
<npc id="19194" level="85" type="L2Npc" name="Silvera" title="Blacksmith">
|
<npc id="19194" level="85" type="L2Npc" name="Silvera" title="Blacksmith">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2378,7 +2480,8 @@
|
|||||||
<npc id="19195" level="85" type="L2Npc" name="Wirphy" title="Gatekeeper">
|
<npc id="19195" level="85" type="L2Npc" name="Wirphy" title="Gatekeeper">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2403,7 +2506,8 @@
|
|||||||
<npc id="19196" level="85" type="L2Npc" name="Soldier">
|
<npc id="19196" level="85" type="L2Npc" name="Soldier">
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<equipment rhand="17291" />
|
<equipment rhand="17291" />
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2429,7 +2533,8 @@
|
|||||||
<npc id="19197" level="85" type="L2Npc" name="Soldier">
|
<npc id="19197" level="85" type="L2Npc" name="Soldier">
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<equipment rhand="22791" />
|
<equipment rhand="22791" />
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2455,7 +2560,8 @@
|
|||||||
<npc id="19198" level="85" type="L2Npc" name="Torocco" title="Carrier">
|
<npc id="19198" level="85" type="L2Npc" name="Torocco" title="Carrier">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
@ -2481,7 +2587,8 @@
|
|||||||
<npc id="19199" level="85" type="L2Npc" name="Murdoc" title="Warehouse Keeper">
|
<npc id="19199" level="85" type="L2Npc" name="Murdoc" title="Warehouse Keeper">
|
||||||
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
<!-- Source http://l2i-god.gaikotsu.ru/ (Lindvior) -->
|
||||||
<race>DWARF</race>
|
<race>DWARF</race>
|
||||||
<stats> <!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
<stats>
|
||||||
|
<!-- str="79" int="34" dex="42" wit="66" con="75" men="12" -->
|
||||||
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
<vitals hp="20903" hpRegen="7.5" mp="20903" mpRegen="2.7" />
|
||||||
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
<attack physical="22500" magical="15000" random="30" critical="4" accuracy="4.75" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
|
||||||
<defence physical="900" magical="900" />
|
<defence physical="900" magical="900" />
|
||||||
|
13
trunk/dist/game/data/stats/npcs/20000-20099.xml
vendored
13
trunk/dist/game/data/stats/npcs/20000-20099.xml
vendored
@ -4196,7 +4196,8 @@
|
|||||||
<drop_lists>
|
<drop_lists>
|
||||||
<death>
|
<death>
|
||||||
<item id="57" min="4" max="9" chance="70" /> <!-- Adena -->
|
<item id="57" min="4" max="9" chance="70" /> <!-- Adena -->
|
||||||
<item id="36526" min="1" max="1" chance="3.200" /> <!--Fiber -->
|
<item id="36526" min="1" max="1" chance="3.200" />
|
||||||
|
<!--Fiber -->
|
||||||
<item id="734" min="1" max="1" chance="0.3" /> <!-- Wind Walk Potion) -->
|
<item id="734" min="1" max="1" chance="0.3" /> <!-- Wind Walk Potion) -->
|
||||||
<item id="36546" min="1" max="1" chance="0.3" /> <!-- Weapon Fragment (Low-grade) -->
|
<item id="36546" min="1" max="1" chance="0.3" /> <!-- Weapon Fragment (Low-grade) -->
|
||||||
<item id="5273" min="1" max="1" chance="0.03" /> <!-- Recipe: Greater Spiritshot Compressed Package (D-grade) -->
|
<item id="5273" min="1" max="1" chance="0.03" /> <!-- Recipe: Greater Spiritshot Compressed Package (D-grade) -->
|
||||||
@ -6353,7 +6354,11 @@
|
|||||||
</skill_list>
|
</skill_list>
|
||||||
<shots shotChance="30" spiritChance="30" />
|
<shots shotChance="30" spiritChance="30" />
|
||||||
<ex_crt_effect>false</ex_crt_effect>
|
<ex_crt_effect>false</ex_crt_effect>
|
||||||
<ai aggroRange="500" clanHelpRange="300" />
|
<ai aggroRange="500" clanHelpRange="300" isAggressive="true">
|
||||||
|
<clan_list>
|
||||||
|
<clan>LESSER</clan>
|
||||||
|
</clan_list>
|
||||||
|
</ai>
|
||||||
<drop_lists>
|
<drop_lists>
|
||||||
<death>
|
<death>
|
||||||
<group chance="70">
|
<group chance="70">
|
||||||
@ -7885,7 +7890,7 @@
|
|||||||
<shots shotChance="30" spiritChance="30" />
|
<shots shotChance="30" spiritChance="30" />
|
||||||
<ex_crt_effect>false</ex_crt_effect>
|
<ex_crt_effect>false</ex_crt_effect>
|
||||||
<s_npc_prop_hp_rate>2</s_npc_prop_hp_rate>
|
<s_npc_prop_hp_rate>2</s_npc_prop_hp_rate>
|
||||||
<ai aggroRange="500" clanHelpRange="300">
|
<ai aggroRange="500" clanHelpRange="300" isAggressive="true">
|
||||||
<clan_list>
|
<clan_list>
|
||||||
<clan>ANT</clan>
|
<clan>ANT</clan>
|
||||||
</clan_list>
|
</clan_list>
|
||||||
@ -8001,7 +8006,7 @@
|
|||||||
<shots shotChance="30" spiritChance="30" />
|
<shots shotChance="30" spiritChance="30" />
|
||||||
<ex_crt_effect>false</ex_crt_effect>
|
<ex_crt_effect>false</ex_crt_effect>
|
||||||
<s_npc_prop_hp_rate>2</s_npc_prop_hp_rate>
|
<s_npc_prop_hp_rate>2</s_npc_prop_hp_rate>
|
||||||
<ai aggroRange="500" clanHelpRange="300">
|
<ai aggroRange="500" clanHelpRange="300" isAggressive="true">
|
||||||
<clan_list>
|
<clan_list>
|
||||||
<clan>ANT</clan>
|
<clan>ANT</clan>
|
||||||
</clan_list>
|
</clan_list>
|
||||||
|
10538
trunk/dist/game/data/stats/npcs/22700-22799.xml
vendored
10538
trunk/dist/game/data/stats/npcs/22700-22799.xml
vendored
File diff suppressed because it is too large
Load Diff
608
trunk/dist/game/data/stats/npcs/23000-23099.xml
vendored
608
trunk/dist/game/data/stats/npcs/23000-23099.xml
vendored
File diff suppressed because it is too large
Load Diff
134
trunk/dist/game/data/stats/npcs/25400-25499.xml
vendored
134
trunk/dist/game/data/stats/npcs/25400-25499.xml
vendored
@ -421,10 +421,7 @@
|
|||||||
<item id="4115" min="12" max="36" chance="90.1686" /> <!-- Lance Blade -->
|
<item id="4115" min="12" max="36" chance="90.1686" /> <!-- Lance Blade -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="71.82620239257812">
|
<group chance="71.82620239257812">
|
||||||
<item id="4613" min="1" max="3" chance="36.4078" /> <!-- Greater Dye of STR <Str+4 Con-4> -->
|
<item id="4613" min="1" max="3" chance="36.4078" /> <!-- Greater Dye of STR <Str+4 Con-4> --><item id="4614" min="2" max="4" chance="24.2718" /> <!-- Greater Dye of STR <Str+4 Dex-4> --><item id="4615" min="2" max="6" chance="18.2039" /> <!-- Greater Dye of CON <Con+4 Str-4> --><item id="947" min="1" max="1" chance="21.1165" /> <!-- Scroll: Enchant Weapon (B-Grade) -->
|
||||||
<item id="4614" min="2" max="4" chance="24.2718" /> <!-- Greater Dye of STR <Str+4 Dex-4> -->
|
|
||||||
<item id="4615" min="2" max="6" chance="18.2039" /> <!-- Greater Dye of CON <Con+4 Str-4> -->
|
|
||||||
<item id="947" min="1" max="1" chance="21.1165" /> <!-- Scroll: Enchant Weapon (B-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -687,10 +684,7 @@
|
|||||||
<item id="2122" min="2" max="6" chance="55.7831" /> <!-- Orcish Poleaxe Blade -->
|
<item id="2122" min="2" max="6" chance="55.7831" /> <!-- Orcish Poleaxe Blade -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="70.54329681396484">
|
<group chance="70.54329681396484">
|
||||||
<item id="4607" min="1" max="3" chance="44.9102" /> <!-- Greater Dye of INT <Int+3 Men-3> -->
|
<item id="4607" min="1" max="3" chance="44.9102" /> <!-- Greater Dye of INT <Int+3 Men-3> --><item id="4608" min="2" max="4" chance="29.9401" /> <!-- Greater Dye of INT <Int+3 Wit-3> --><item id="4609" min="2" max="6" chance="22.4551" /> <!-- Greater Dye of MEN <Men+3 Int-3> --><item id="6573" min="1" max="1" chance="2.6946" /> <!-- Blessed Scroll: Enchant Weapon (C-Grade) -->
|
||||||
<item id="4608" min="2" max="4" chance="29.9401" /> <!-- Greater Dye of INT <Int+3 Wit-3> -->
|
|
||||||
<item id="4609" min="2" max="6" chance="22.4551" /> <!-- Greater Dye of MEN <Men+3 Int-3> -->
|
|
||||||
<item id="6573" min="1" max="1" chance="2.6946" /> <!-- Blessed Scroll: Enchant Weapon (C-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -1020,10 +1014,7 @@
|
|||||||
<item id="2105" min="5" max="13" chance="7.3312" /> <!-- Mace of Underworld Head -->
|
<item id="2105" min="5" max="13" chance="7.3312" /> <!-- Mace of Underworld Head -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="62.51100158691406">
|
<group chance="62.51100158691406">
|
||||||
<item id="4607" min="1" max="3" chance="44.9102" /> <!-- Greater Dye of INT <Int+3 Men-3> -->
|
<item id="4607" min="1" max="3" chance="44.9102" /> <!-- Greater Dye of INT <Int+3 Men-3> --><item id="4608" min="2" max="4" chance="29.9401" /> <!-- Greater Dye of INT <Int+3 Wit-3> --><item id="4609" min="2" max="6" chance="22.4551" /> <!-- Greater Dye of MEN <Men+3 Int-3> --><item id="6573" min="1" max="1" chance="2.6946" /> <!-- Blessed Scroll: Enchant Weapon (C-Grade) -->
|
||||||
<item id="4608" min="2" max="4" chance="29.9401" /> <!-- Greater Dye of INT <Int+3 Wit-3> -->
|
|
||||||
<item id="4609" min="2" max="6" chance="22.4551" /> <!-- Greater Dye of MEN <Men+3 Int-3> -->
|
|
||||||
<item id="6573" min="1" max="1" chance="2.6946" /> <!-- Blessed Scroll: Enchant Weapon (C-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -1134,10 +1125,7 @@
|
|||||||
<item id="2120" min="3" max="9" chance="94.9668" /> <!-- Great Pata Blade -->
|
<item id="2120" min="3" max="9" chance="94.9668" /> <!-- Great Pata Blade -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="49.9281005859375">
|
<group chance="49.9281005859375">
|
||||||
<item id="4604" min="2" max="6" chance="32.9154" /> <!-- Greater Dye of CON <Con+3 Dex-3> -->
|
<item id="4604" min="2" max="6" chance="32.9154" /> <!-- Greater Dye of CON <Con+3 Dex-3> --><item id="4605" min="1" max="1" chance="26.3323" /> <!-- Greater Dye of DEX <Dex+3 Str-3> --><item id="4606" min="1" max="1" chance="21.9436" /> <!-- Greater Dye of DEX <Dex+3 Con-3> --><item id="952" min="3" max="9" chance="18.8087" /> <!-- Scroll: Enchant Armor (C-Grade) -->
|
||||||
<item id="4605" min="1" max="1" chance="26.3323" /> <!-- Greater Dye of DEX <Dex+3 Str-3> -->
|
|
||||||
<item id="4606" min="1" max="1" chance="21.9436" /> <!-- Greater Dye of DEX <Dex+3 Con-3> -->
|
|
||||||
<item id="952" min="3" max="9" chance="18.8087" /> <!-- Scroll: Enchant Armor (C-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -1279,7 +1267,8 @@
|
|||||||
<ai type="BALANCED" clanHelpRange="300" isAggressive="false">
|
<ai type="BALANCED" clanHelpRange="300" isAggressive="false">
|
||||||
<clan_list>
|
<clan_list>
|
||||||
<clan>TIMINIEL</clan>
|
<clan>TIMINIEL</clan>
|
||||||
<ignore_npc_id>21797</ignore_npc_id> <!-- Spirit of Timiniel -->
|
<ignore_npc_id>21797</ignore_npc_id>
|
||||||
|
<!-- Spirit of Timiniel -->
|
||||||
</clan_list>
|
</clan_list>
|
||||||
</ai>
|
</ai>
|
||||||
<drop_lists>
|
<drop_lists>
|
||||||
@ -1301,10 +1290,7 @@
|
|||||||
<item id="4119" min="3" max="9" chance="97.3552" /> <!-- Demon's Dagger Edge -->
|
<item id="4119" min="3" max="9" chance="97.3552" /> <!-- Demon's Dagger Edge -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="84.70040130615234">
|
<group chance="84.70040130615234">
|
||||||
<item id="4622" min="1" max="3" chance="24.6711" /> <!-- Greater Dye of MEN <Men+4 Wit-4> -->
|
<item id="4622" min="1" max="3" chance="24.6711" /> <!-- Greater Dye of MEN <Men+4 Wit-4> --><item id="4623" min="2" max="4" chance="16.4474" /> <!-- Greater Dye of WIT <Wit+4 Int-4> --><item id="4624" min="1" max="1" chance="49.3421" /> <!-- Greater Dye of WIT <Wit+4 Men-4> --><item id="6572" min="1" max="1" chance="9.5394" /> <!-- Blessed Scroll: Enchant Armor (B-Grade) -->
|
||||||
<item id="4623" min="2" max="4" chance="16.4474" /> <!-- Greater Dye of WIT <Wit+4 Int-4> -->
|
|
||||||
<item id="4624" min="1" max="1" chance="49.3421" /> <!-- Greater Dye of WIT <Wit+4 Men-4> -->
|
|
||||||
<item id="6572" min="1" max="1" chance="9.5394" /> <!-- Blessed Scroll: Enchant Armor (B-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -1346,7 +1332,8 @@
|
|||||||
<ai clanHelpRange="300" isAggressive="false">
|
<ai clanHelpRange="300" isAggressive="false">
|
||||||
<clan_list>
|
<clan_list>
|
||||||
<clan>TIMINIEL</clan>
|
<clan>TIMINIEL</clan>
|
||||||
<ignore_npc_id>21797</ignore_npc_id> <!-- Spirit of Timiniel -->
|
<ignore_npc_id>21797</ignore_npc_id>
|
||||||
|
<!-- Spirit of Timiniel -->
|
||||||
</clan_list>
|
</clan_list>
|
||||||
</ai>
|
</ai>
|
||||||
<collision>
|
<collision>
|
||||||
@ -1391,7 +1378,8 @@
|
|||||||
<ai clanHelpRange="300" isAggressive="false">
|
<ai clanHelpRange="300" isAggressive="false">
|
||||||
<clan_list>
|
<clan_list>
|
||||||
<clan>TIMINIEL</clan>
|
<clan>TIMINIEL</clan>
|
||||||
<ignore_npc_id>21797</ignore_npc_id> <!-- Spirit of Timiniel -->
|
<ignore_npc_id>21797</ignore_npc_id>
|
||||||
|
<!-- Spirit of Timiniel -->
|
||||||
</clan_list>
|
</clan_list>
|
||||||
</ai>
|
</ai>
|
||||||
<collision>
|
<collision>
|
||||||
@ -1554,7 +1542,7 @@
|
|||||||
<sex>MALE</sex>
|
<sex>MALE</sex>
|
||||||
<acquire exp="2615583" sp="627" raidPoints="320" />
|
<acquire exp="2615583" sp="627" raidPoints="320" />
|
||||||
<stats str="60" int="76" dex="73" wit="70" con="57" men="80">
|
<stats str="60" int="76" dex="73" wit="70" con="57" men="80">
|
||||||
<vitals hp="43316.3085364372" hpRegen="18.4385313667577" mp="259.2" mpRegen="1.5" />
|
<vitals hp="68070" hpRegen="18.4385313667577" mp="259.2" mpRegen="1.5" />
|
||||||
<attack physical="74.2223188804512" magical="4.67967242276365" random="10" critical="4" accuracy="4.75" attackSpeed="253" type="FIST" range="40" distance="80" width="120" />
|
<attack physical="74.2223188804512" magical="4.67967242276365" random="10" critical="4" accuracy="4.75" attackSpeed="253" type="FIST" range="40" distance="80" width="120" />
|
||||||
<defence physical="305.50599" magical="149.04" evasion="-18" />
|
<defence physical="305.50599" magical="149.04" evasion="-18" />
|
||||||
<attribute>
|
<attribute>
|
||||||
@ -1587,32 +1575,23 @@
|
|||||||
</skill_list>
|
</skill_list>
|
||||||
<ex_crt_effect>true</ex_crt_effect>
|
<ex_crt_effect>true</ex_crt_effect>
|
||||||
<ai type="BALANCED" clanHelpRange="300" isAggressive="false" />
|
<ai type="BALANCED" clanHelpRange="300" isAggressive="false" />
|
||||||
<drop_lists>
|
|
||||||
<death>
|
|
||||||
<group chance="73.14409637451172">
|
|
||||||
<item id="393" min="1" max="1" chance="17.1639" /> <!-- Mithril Banded Mail -->
|
|
||||||
<item id="394" min="1" max="1" chance="17.1639" /> <!-- Reinforced Leather Shirt -->
|
|
||||||
<item id="415" min="1" max="1" chance="27.4341" /> <!-- Mithril Banded Gaiters -->
|
|
||||||
<item id="416" min="1" max="1" chance="27.4341" /> <!-- Reinforced Leather Gaiters -->
|
|
||||||
<item id="223" min="1" max="1" chance="2.701" /> <!-- Kukuri -->
|
|
||||||
<item id="238" min="1" max="1" chance="2.701" /> <!-- Dagger of Mana -->
|
|
||||||
<item id="239" min="1" max="1" chance="2.701" /> <!-- Mystic Knife -->
|
|
||||||
<item id="241" min="1" max="1" chance="2.701" /> <!-- Shilen Knife -->
|
|
||||||
</group>
|
|
||||||
<group chance="68.99929809570312">
|
|
||||||
<item id="1938" min="60" max="180" chance="23.8522" /> <!-- Mithril Banded Mail Material -->
|
|
||||||
<item id="1939" min="28" max="84" chance="66.7799" /> <!-- Mithril Banded Gaiters Material -->
|
|
||||||
<item id="2028" min="27" max="81" chance="9.3679" /> <!-- Shilen Knife Edge -->
|
|
||||||
</group>
|
|
||||||
<group chance="12.693900108337402">
|
|
||||||
<item id="6575" min="1" max="1" chance="100" /> <!-- Blessed Scroll: Enchant Weapon (D-Grade) -->
|
|
||||||
</group>
|
|
||||||
</death>
|
|
||||||
</drop_lists>
|
|
||||||
<collision>
|
<collision>
|
||||||
<radius normal="13" />
|
<radius normal="13" />
|
||||||
<height normal="37.5" />
|
<height normal="37.5" />
|
||||||
</collision>
|
</collision>
|
||||||
|
<drop_lists>
|
||||||
|
<death>
|
||||||
|
<item id="393" min="1" max="1" chance="1.120" /> <!-- Mithril Banded Mail -->
|
||||||
|
<item id="394" min="1" max="1" chance="0.75" /> <!-- Reinforced Leather Shirt -->
|
||||||
|
<item id="415" min="1" max="1" chance="4.700" /> <!-- Mithril Banded Gaiters -->
|
||||||
|
<item id="416" min="1" max="1" chance="2.700" /> <!-- Reinforced Leather Gaiters -->
|
||||||
|
<item id="223" min="1" max="1" chance="5.650" /> <!-- Kukuri -->
|
||||||
|
<item id="238" min="1" max="1" chance="5.650" /> <!-- Dagger of Mana -->
|
||||||
|
<item id="239" min="1" max="1" chance="5.650" /> <!-- Mystic Knife -->
|
||||||
|
<item id="241" min="1" max="1" chance="5.650" /> <!-- Shilen Knife -->
|
||||||
|
<item id="6575" min="1" max="1" chance="2.500" /> <!-- Blessed Scroll: Enchant Weapon (D-Grade) -->
|
||||||
|
</death>
|
||||||
|
</drop_lists>
|
||||||
</npc>
|
</npc>
|
||||||
<npc id="25430" level="22" type="L2Monster" name="Talos' Pawn" title="Raid Fighter">
|
<npc id="25430" level="22" type="L2Monster" name="Talos' Pawn" title="Raid Fighter">
|
||||||
<parameters>
|
<parameters>
|
||||||
@ -1716,10 +1695,7 @@
|
|||||||
<item id="2108" min="12" max="36" chance="31.1578" /> <!-- Fisted Blade Piece -->
|
<item id="2108" min="12" max="36" chance="31.1578" /> <!-- Fisted Blade Piece -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="75.2645034790039">
|
<group chance="75.2645034790039">
|
||||||
<item id="4610" min="1" max="3" chance="37.3002" /> <!-- Greater Dye of MEN <Men+3 Wit-3> -->
|
<item id="4610" min="1" max="3" chance="37.3002" /> <!-- Greater Dye of MEN <Men+3 Wit-3> --><item id="4611" min="2" max="4" chance="24.8668" /> <!-- Greater Dye of WIT <Wit+3 Int-3> --><item id="4612" min="2" max="6" chance="18.6501" /> <!-- Greater Dye of WIT <Wit+3 Men-3> --><item id="6574" min="1" max="1" chance="19.1829" /> <!-- Blessed Scroll: Enchant Armor (C-Grade) -->
|
||||||
<item id="4611" min="2" max="4" chance="24.8668" /> <!-- Greater Dye of WIT <Wit+3 Int-3> -->
|
|
||||||
<item id="4612" min="2" max="6" chance="18.6501" /> <!-- Greater Dye of WIT <Wit+3 Men-3> -->
|
|
||||||
<item id="6574" min="1" max="1" chance="19.1829" /> <!-- Blessed Scroll: Enchant Armor (C-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -2035,10 +2011,7 @@
|
|||||||
<item id="2108" min="96" max="288" chance="93.6503" /> <!-- Fisted Blade Piece -->
|
<item id="2108" min="96" max="288" chance="93.6503" /> <!-- Fisted Blade Piece -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="65.03050231933594">
|
<group chance="65.03050231933594">
|
||||||
<item id="4607" min="1" max="1" chance="44.9102" /> <!-- Greater Dye of INT <Int+3 Men-3> -->
|
<item id="4607" min="1" max="1" chance="44.9102" /> <!-- Greater Dye of INT <Int+3 Men-3> --><item id="4608" min="1" max="1" chance="29.9401" /> <!-- Greater Dye of INT <Int+3 Wit-3> --><item id="4609" min="1" max="1" chance="22.4551" /> <!-- Greater Dye of MEN <Men+3 Int-3> --><item id="6573" min="1" max="1" chance="2.6946" /> <!-- Blessed Scroll: Enchant Weapon (C-Grade) -->
|
||||||
<item id="4608" min="1" max="1" chance="29.9401" /> <!-- Greater Dye of INT <Int+3 Wit-3> -->
|
|
||||||
<item id="4609" min="1" max="1" chance="22.4551" /> <!-- Greater Dye of MEN <Men+3 Int-3> -->
|
|
||||||
<item id="6573" min="1" max="1" chance="2.6946" /> <!-- Blessed Scroll: Enchant Weapon (C-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -2105,10 +2078,7 @@
|
|||||||
<item id="2109" min="3" max="9" chance="93.917" /> <!-- Akat Longbow Shaft -->
|
<item id="2109" min="3" max="9" chance="93.917" /> <!-- Akat Longbow Shaft -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="70.01439666748047">
|
<group chance="70.01439666748047">
|
||||||
<item id="4601" min="1" max="3" chance="40.0972" /> <!-- Greater Dye of STR <Str+3 Con-3> -->
|
<item id="4601" min="1" max="3" chance="40.0972" /> <!-- Greater Dye of STR <Str+3 Con-3> --><item id="4602" min="2" max="4" chance="26.7315" /> <!-- Greater Dye of STR <Str+3 Dex-3> --><item id="4603" min="2" max="6" chance="20.0486" /> <!-- Greater Dye of CON <Con+3 Str-3> --><item id="951" min="3" max="7" chance="13.1227" /> <!-- Scroll: Enchant Weapon (C-Grade) -->
|
||||||
<item id="4602" min="2" max="4" chance="26.7315" /> <!-- Greater Dye of STR <Str+3 Dex-3> -->
|
|
||||||
<item id="4603" min="2" max="6" chance="20.0486" /> <!-- Greater Dye of CON <Con+3 Str-3> -->
|
|
||||||
<item id="951" min="3" max="7" chance="13.1227" /> <!-- Scroll: Enchant Weapon (C-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -2267,10 +2237,7 @@
|
|||||||
<item id="2109" min="12" max="36" chance="79.423" /> <!-- Akat Longbow Shaft -->
|
<item id="2109" min="12" max="36" chance="79.423" /> <!-- Akat Longbow Shaft -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="78.29810333251953">
|
<group chance="78.29810333251953">
|
||||||
<item id="4610" min="1" max="3" chance="37.3002" /> <!-- Greater Dye of MEN <Men+3 Wit-3> -->
|
<item id="4610" min="1" max="3" chance="37.3002" /> <!-- Greater Dye of MEN <Men+3 Wit-3> --><item id="4611" min="2" max="4" chance="24.8668" /> <!-- Greater Dye of WIT <Wit+3 Int-3> --><item id="4612" min="2" max="6" chance="18.6501" /> <!-- Greater Dye of WIT <Wit+3 Men-3> --><item id="6574" min="1" max="1" chance="19.1829" /> <!-- Blessed Scroll: Enchant Armor (C-Grade) -->
|
||||||
<item id="4611" min="2" max="4" chance="24.8668" /> <!-- Greater Dye of WIT <Wit+3 Int-3> -->
|
|
||||||
<item id="4612" min="2" max="6" chance="18.6501" /> <!-- Greater Dye of WIT <Wit+3 Men-3> -->
|
|
||||||
<item id="6574" min="1" max="1" chance="19.1829" /> <!-- Blessed Scroll: Enchant Armor (C-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -3051,10 +3018,7 @@
|
|||||||
<item id="2120" min="3" max="9" chance="94.9668" /> <!-- Great Pata Blade -->
|
<item id="2120" min="3" max="9" chance="94.9668" /> <!-- Great Pata Blade -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="85.0416030883789">
|
<group chance="85.0416030883789">
|
||||||
<item id="4601" min="1" max="3" chance="40.0972" /> <!-- Greater Dye of STR <Str+3 Con-3> -->
|
<item id="4601" min="1" max="3" chance="40.0972" /> <!-- Greater Dye of STR <Str+3 Con-3> --><item id="4602" min="2" max="4" chance="26.7315" /> <!-- Greater Dye of STR <Str+3 Dex-3> --><item id="4603" min="2" max="6" chance="20.0486" /> <!-- Greater Dye of CON <Con+3 Str-3> --><item id="951" min="3" max="7" chance="13.1227" /> <!-- Scroll: Enchant Weapon (C-Grade) -->
|
||||||
<item id="4602" min="2" max="4" chance="26.7315" /> <!-- Greater Dye of STR <Str+3 Dex-3> -->
|
|
||||||
<item id="4603" min="2" max="6" chance="20.0486" /> <!-- Greater Dye of CON <Con+3 Str-3> -->
|
|
||||||
<item id="951" min="3" max="7" chance="13.1227" /> <!-- Scroll: Enchant Weapon (C-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -3246,10 +3210,7 @@
|
|||||||
<item id="2376" min="1" max="1" chance="1.800" /> <!-- Avadon Breastplate -->
|
<item id="2376" min="1" max="1" chance="1.800" /> <!-- Avadon Breastplate -->
|
||||||
<item id="2379" min="1" max="1" chance="4.650" /> <!-- Avadon Gaiters -->
|
<item id="2379" min="1" max="1" chance="4.650" /> <!-- Avadon Gaiters -->
|
||||||
<item id="300" min="1" max="1" chance="5.50" /> <!-- Great Axe -->
|
<item id="300" min="1" max="1" chance="5.50" /> <!-- Great Axe -->
|
||||||
<item id="4601" min="1" max="3" chance="6.600" /> <!-- Greater Dye of STR <Str+3 Con-3> -->
|
<item id="4601" min="1" max="3" chance="6.600" /> <!-- Greater Dye of STR <Str+3 Con-3> --><item id="4602" min="1" max="1" chance="13.75" /> <!-- Greater Dye of STR <Str+3 Dex-3> --><item id="4603" min="1" max="1" chance="13.50" /> <!-- Greater Dye of CON <Con+3 Str-3> --><item id="951" min="1" max="1" chance="11.25" /> <!-- Scroll: Enchant Weapon (C-Grade) -->
|
||||||
<item id="4602" min="1" max="1" chance="13.75" /> <!-- Greater Dye of STR <Str+3 Dex-3> -->
|
|
||||||
<item id="4603" min="1" max="1" chance="13.50" /> <!-- Greater Dye of CON <Con+3 Str-3> -->
|
|
||||||
<item id="951" min="1" max="1" chance="11.25" /> <!-- Scroll: Enchant Weapon (C-Grade) -->
|
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
</npc>
|
</npc>
|
||||||
@ -3917,10 +3878,7 @@
|
|||||||
<item id="4106" min="8" max="22" chance="32.6175" /> <!-- Sprite's Staff Head -->
|
<item id="4106" min="8" max="22" chance="32.6175" /> <!-- Sprite's Staff Head -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="73.76399993896484">
|
<group chance="73.76399993896484">
|
||||||
<item id="4607" min="1" max="3" chance="44.9102" /> <!-- Greater Dye of INT <Int+3 Men-3> -->
|
<item id="4607" min="1" max="3" chance="44.9102" /> <!-- Greater Dye of INT <Int+3 Men-3> --><item id="4608" min="2" max="4" chance="29.9401" /> <!-- Greater Dye of INT <Int+3 Wit-3> --><item id="4609" min="2" max="6" chance="22.4551" /> <!-- Greater Dye of MEN <Men+3 Int-3> --><item id="6573" min="1" max="1" chance="2.6946" /> <!-- Blessed Scroll: Enchant Weapon (C-Grade) -->
|
||||||
<item id="4608" min="2" max="4" chance="29.9401" /> <!-- Greater Dye of INT <Int+3 Wit-3> -->
|
|
||||||
<item id="4609" min="2" max="6" chance="22.4551" /> <!-- Greater Dye of MEN <Men+3 Int-3> -->
|
|
||||||
<item id="6573" min="1" max="1" chance="2.6946" /> <!-- Blessed Scroll: Enchant Weapon (C-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -4042,8 +4000,7 @@
|
|||||||
<group chance="92.36740112304688">
|
<group chance="92.36740112304688">
|
||||||
<item id="947" min="1" max="1" chance="18.9594" /> <!-- Scroll: Enchant Weapon (B-Grade) -->
|
<item id="947" min="1" max="1" chance="18.9594" /> <!-- Scroll: Enchant Weapon (B-Grade) -->
|
||||||
<item id="948" min="1" max="3" chance="59.2482" /> <!-- Scroll: Enchant Armor (B-Grade) -->
|
<item id="948" min="1" max="3" chance="59.2482" /> <!-- Scroll: Enchant Armor (B-Grade) -->
|
||||||
<item id="4617" min="2" max="4" chance="21.7924" /> <!-- Greater Dye of DEX <Dex+4 Str-4> -->
|
<item id="4617" min="2" max="4" chance="21.7924" /> <!-- Greater Dye of DEX <Dex+4 Str-4> --></group>
|
||||||
</group>
|
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
<collision>
|
<collision>
|
||||||
@ -4355,10 +4312,7 @@
|
|||||||
<item id="4110" min="8" max="22" chance="32.9553" /> <!-- Hell Knife Edge -->
|
<item id="4110" min="8" max="22" chance="32.9553" /> <!-- Hell Knife Edge -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="71.777099609375">
|
<group chance="71.777099609375">
|
||||||
<item id="4616" min="2" max="4" chance="19.7287" /> <!-- Greater Dye of CON <Con+4 Dex-4> -->
|
<item id="4616" min="2" max="4" chance="19.7287" /> <!-- Greater Dye of CON <Con+4 Dex-4> --><item id="4617" min="2" max="6" chance="14.7965" /> <!-- Greater Dye of DEX <Dex+4 Str-4> --><item id="4618" min="3" max="7" chance="11.8372" /> <!-- Greater Dye of DEX <Dex+4 Con-4> --><item id="948" min="1" max="3" chance="53.6376" /> <!-- Scroll: Enchant Armor (B-Grade) -->
|
||||||
<item id="4617" min="2" max="6" chance="14.7965" /> <!-- Greater Dye of DEX <Dex+4 Str-4> -->
|
|
||||||
<item id="4618" min="3" max="7" chance="11.8372" /> <!-- Greater Dye of DEX <Dex+4 Con-4> -->
|
|
||||||
<item id="948" min="1" max="3" chance="53.6376" /> <!-- Scroll: Enchant Armor (B-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -4519,10 +4473,7 @@
|
|||||||
<item id="4110" min="8" max="22" chance="32.9553" /> <!-- Hell Knife Edge -->
|
<item id="4110" min="8" max="22" chance="32.9553" /> <!-- Hell Knife Edge -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="73.9906997680664">
|
<group chance="73.9906997680664">
|
||||||
<item id="4607" min="1" max="3" chance="44.9102" /> <!-- Greater Dye of INT <Int+3 Men-3> -->
|
<item id="4607" min="1" max="3" chance="44.9102" /> <!-- Greater Dye of INT <Int+3 Men-3> --><item id="4608" min="2" max="4" chance="29.9401" /> <!-- Greater Dye of INT <Int+3 Wit-3> --><item id="4609" min="2" max="6" chance="22.4551" /> <!-- Greater Dye of MEN <Men+3 Int-3> --><item id="6573" min="1" max="1" chance="2.6946" /> <!-- Blessed Scroll: Enchant Weapon (C-Grade) -->
|
||||||
<item id="4608" min="2" max="4" chance="29.9401" /> <!-- Greater Dye of INT <Int+3 Wit-3> -->
|
|
||||||
<item id="4609" min="2" max="6" chance="22.4551" /> <!-- Greater Dye of MEN <Men+3 Int-3> -->
|
|
||||||
<item id="6573" min="1" max="1" chance="2.6946" /> <!-- Blessed Scroll: Enchant Weapon (C-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -5004,10 +4955,7 @@
|
|||||||
<item id="4106" min="8" max="22" chance="32.6175" /> <!-- Sprite's Staff Head -->
|
<item id="4106" min="8" max="22" chance="32.6175" /> <!-- Sprite's Staff Head -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="96.16670227050781">
|
<group chance="96.16670227050781">
|
||||||
<item id="4613" min="1" max="3" chance="23.5479" /> <!-- Greater Dye of STR <Str+4 Con-4> -->
|
<item id="4613" min="1" max="3" chance="23.5479" /> <!-- Greater Dye of STR <Str+4 Con-4> --><item id="4614" min="2" max="4" chance="15.6986" /> <!-- Greater Dye of STR <Str+4 Dex-4> --><item id="4615" min="1" max="1" chance="47.0958" /> <!-- Greater Dye of CON <Con+4 Str-4> --><item id="947" min="1" max="1" chance="13.6577" /> <!-- Scroll: Enchant Weapon (B-Grade) -->
|
||||||
<item id="4614" min="2" max="4" chance="15.6986" /> <!-- Greater Dye of STR <Str+4 Dex-4> -->
|
|
||||||
<item id="4615" min="1" max="1" chance="47.0958" /> <!-- Greater Dye of CON <Con+4 Str-4> -->
|
|
||||||
<item id="947" min="1" max="1" chance="13.6577" /> <!-- Scroll: Enchant Weapon (B-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -5155,10 +5103,7 @@
|
|||||||
<item id="4111" min="12" max="36" chance="88.8447" /> <!-- Arthro Nail Blade -->
|
<item id="4111" min="12" max="36" chance="88.8447" /> <!-- Arthro Nail Blade -->
|
||||||
</group>
|
</group>
|
||||||
<group chance="88.81330108642578">
|
<group chance="88.81330108642578">
|
||||||
<item id="4610" min="1" max="3" chance="37.3002" /> <!-- Greater Dye of MEN <Men+3 Wit-3> -->
|
<item id="4610" min="1" max="3" chance="37.3002" /> <!-- Greater Dye of MEN <Men+3 Wit-3> --><item id="4611" min="2" max="4" chance="24.8668" /> <!-- Greater Dye of WIT <Wit+3 Int-3> --><item id="4612" min="2" max="6" chance="18.6501" /> <!-- Greater Dye of WIT <Wit+3 Men-3> --><item id="6574" min="1" max="1" chance="19.1829" /> <!-- Blessed Scroll: Enchant Armor (C-Grade) -->
|
||||||
<item id="4611" min="2" max="4" chance="24.8668" /> <!-- Greater Dye of WIT <Wit+3 Int-3> -->
|
|
||||||
<item id="4612" min="2" max="6" chance="18.6501" /> <!-- Greater Dye of WIT <Wit+3 Men-3> -->
|
|
||||||
<item id="6574" min="1" max="1" chance="19.1829" /> <!-- Blessed Scroll: Enchant Armor (C-Grade) -->
|
|
||||||
</group>
|
</group>
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
@ -5269,10 +5214,7 @@
|
|||||||
<item id="917" min="1" max="1" chance="1.500" /> <!-- Necklace of Mermaid -->
|
<item id="917" min="1" max="1" chance="1.500" /> <!-- Necklace of Mermaid -->
|
||||||
<item id="231" min="1" max="1" chance="3.750" /> <!-- Grace Dagger -->
|
<item id="231" min="1" max="1" chance="3.750" /> <!-- Grace Dagger -->
|
||||||
<item id="233" min="1" max="1" chance="3.750" /> <!-- Dark Screamer -->
|
<item id="233" min="1" max="1" chance="3.750" /> <!-- Dark Screamer -->
|
||||||
<item id="4601" min="1" max="3" chance="11.50" /> <!-- Greater Dye of STR <Str+3 Con-3> -->
|
<item id="4601" min="1" max="3" chance="11.50" /> <!-- Greater Dye of STR <Str+3 Con-3> --><item id="4602" min="2" max="4" chance="11.50" /> <!-- Greater Dye of STR <Str+3 Dex-3> --><item id="4603" min="2" max="6" chance="11.50" /> <!-- Greater Dye of CON <Con+3 Str-3> --><item id="951" min="3" max="7" chance="9.500" /> <!-- Scroll: Enchant Weapon (C-Grade) -->
|
||||||
<item id="4602" min="2" max="4" chance="11.50" /> <!-- Greater Dye of STR <Str+3 Dex-3> -->
|
|
||||||
<item id="4603" min="2" max="6" chance="11.50" /> <!-- Greater Dye of CON <Con+3 Str-3> -->
|
|
||||||
<item id="951" min="3" max="7" chance="9.500" /> <!-- Scroll: Enchant Weapon (C-Grade) -->
|
|
||||||
</death>
|
</death>
|
||||||
</drop_lists>
|
</drop_lists>
|
||||||
</npc>
|
</npc>
|
||||||
|
5689
trunk/dist/game/data/stats/npcs/25500-25599.xml
vendored
5689
trunk/dist/game/data/stats/npcs/25500-25599.xml
vendored
File diff suppressed because it is too large
Load Diff
488
trunk/dist/game/data/stats/npcs/27400-27499.xml
vendored
488
trunk/dist/game/data/stats/npcs/27400-27499.xml
vendored
File diff suppressed because it is too large
Load Diff
416
trunk/dist/game/data/stats/npcs/33500-33599.xml
vendored
416
trunk/dist/game/data/stats/npcs/33500-33599.xml
vendored
File diff suppressed because it is too large
Load Diff
14
trunk/dist/tools/sql/game/spawnlist.sql
vendored
14
trunk/dist/tools/sql/game/spawnlist.sql
vendored
@ -55630,3 +55630,17 @@ INSERT INTO `spawnlist` VALUES
|
|||||||
('Ruins of Despair', 1, 33426, -18939, 136819, -3761, 0, 0, 17976, 60, 0, 0, 0),
|
('Ruins of Despair', 1, 33426, -18939, 136819, -3761, 0, 0, 17976, 60, 0, 0, 0),
|
||||||
('Ruins of Despair', 1, 33426, -18871, 137022, -3760, 0, 0, 25521, 60, 0, 0, 0),
|
('Ruins of Despair', 1, 33426, -18871, 137022, -3760, 0, 0, 25521, 60, 0, 0, 0),
|
||||||
('Ruins of Despair', 1, 33426, -18853, 136973, -3763, 0, 0, 11934, 60, 0, 0, 0);
|
('Ruins of Despair', 1, 33426, -18853, 136973, -3763, 0, 0, 11934, 60, 0, 0, 0);
|
||||||
|
|
||||||
|
-- Guards Commando
|
||||||
|
INSERT INTO `spawnlist` VALUES
|
||||||
|
('Wasteland', 1, 19126, -35912, 191799, -3642, 0, 0, 22841, 60, 0, 0, 0),
|
||||||
|
('Wasteland', 1, 19126, -35841, 191776, -3643, 0, 0, 23977, 60, 0, 0, 0);
|
||||||
|
-- Regenerated Kanilov
|
||||||
|
INSERT INTO `spawnlist` VALUES
|
||||||
|
('Wasteland', 1, 27459, -25887, 183433, -3601, 0, 0, 23482, 60, 0, 0, 0);
|
||||||
|
-- Guard Joel
|
||||||
|
INSERT INTO `spawnlist` VALUES
|
||||||
|
('Wasteland', 1, 33516, -25852, 183481, -3602, 0, 0, 2555, 60, 0, 0, 0);
|
||||||
|
-- Guard Shuazen
|
||||||
|
INSERT INTO `spawnlist` VALUES
|
||||||
|
('Wasteland', 1, 33517, -29952, 186838, -3942, 0, 0, 56957, 60, 0, 0, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user