Skip to content
Snippets Groups Projects
Commit bb4e8233 authored by Adry_85's avatar Adry_85
Browse files

BETA: Retail-like Primeval Isle AI.

	Patch by: St3eT
	Reviewed by: Adry_85, FBIagent, Konstantinos, Nos, Zoey76
	Tested by: St3eT
	Thanks to: FBIagent, Nos, Zoey76
	
parent a3669d8f
No related branches found
No related tags found
No related merge requests found
...@@ -105,6 +105,7 @@ ai/group_template/PlainsOfDion.java ...@@ -105,6 +105,7 @@ ai/group_template/PlainsOfDion.java
ai/group_template/PlainsOfLizardman.java ai/group_template/PlainsOfLizardman.java
ai/group_template/PolymorphingAngel.java ai/group_template/PolymorphingAngel.java
ai/group_template/PolymorphingOnAttack.java ai/group_template/PolymorphingOnAttack.java
ai/group_template/PrimevalIsle.java
ai/group_template/PrisonGuards.java ai/group_template/PrisonGuards.java
ai/group_template/RandomSpawn.java ai/group_template/RandomSpawn.java
ai/group_template/RangeGuard.java ai/group_template/RangeGuard.java
...@@ -152,7 +153,6 @@ ai/individual/QueenAnt.java ...@@ -152,7 +153,6 @@ ai/individual/QueenAnt.java
ai/individual/QueenShyeed.java ai/individual/QueenShyeed.java
ai/individual/Ranku.java ai/individual/Ranku.java
ai/individual/SinWardens.java ai/individual/SinWardens.java
ai/individual/Sprigant.java
ai/individual/Typhoon.java ai/individual/Typhoon.java
ai/individual/Valakas.java ai/individual/Valakas.java
ai/individual/Zaken.java ai/individual/Zaken.java
......
/*
* Copyright (C) 2004-2013 L2J DataPack
*
* This file is part of L2J DataPack.
*
* L2J DataPack is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* L2J DataPack is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.group_template;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.GeoData;
import com.l2jserver.gameserver.ai.CtrlIntention;
import com.l2jserver.gameserver.datatables.SpawnTable;
import com.l2jserver.gameserver.handler.IItemHandler;
import com.l2jserver.gameserver.handler.ItemHandler;
import com.l2jserver.gameserver.model.L2Spawn;
import com.l2jserver.gameserver.model.Location;
import com.l2jserver.gameserver.model.actor.L2Attackable;
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.L2Playable;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.holders.SkillHolder;
import com.l2jserver.gameserver.model.items.instance.L2ItemInstance;
import com.l2jserver.gameserver.model.skills.L2Skill;
import com.l2jserver.gameserver.network.NpcStringId;
import com.l2jserver.gameserver.network.clientpackets.Say2;
import com.l2jserver.gameserver.util.Util;
/**
* Primeval Isle AI.
* @author St3eT
*/
public final class PrimevalIsle extends AbstractNpcAI
{
// NPC
private static final int EGG = 18344; // Ancient Egg
private static final int SAILREN = 29065; // Sailren
private static final int ORNIT = 22742; // Ornithomimus
private static final int DEINO = 22743; // Deinonychus
private static final int[] SPRIGNANT =
{
18345, // Sprigant (Anesthesia)
18346, // Sprigant (Deadly Poison)
};
private static final int[] MONSTERS =
{
22196, // Velociraptor
22198, // Velociraptor
22200, // Ornithomimus
22202, // Ornithomimus
22203, // Deinonychus
22205, // Deinonychus
22208, // Pachycephalosaurus
22210, // Pachycephalosaurus
22211, // Wild Strider
22213, // Wild Strider
22223, // Velociraptor
22224, // Ornithomimus
22225, // Deinonychus
22226, // Pachycephalosaurus
22227, // Wild Strider
22742, // Ornithomimus
22743, // Deinonychus
};
private static final int[] TREX =
{
22215, // Tyrannosaurus
22216, // Tyrannosaurus
22217, // Tyrannosaurus
};
private static final int[] VEGETABLE =
{
22200, // Ornithomimus
22201, // Ornithomimus
22202, // Ornithomimus
22203, // Deinonychus
22204, // Deinonychus
22205, // Deinonychus
22224, // Ornithomimus
22225, // Deinonychus
};
// Item
private static final int DEINONYCHUS = 14828; // Deinonychus Mesozoic Stone
// Skill
private static final SkillHolder ANESTHESIA = new SkillHolder(5085, 1); // Anesthesia
private static final SkillHolder DEADLY_POISON = new SkillHolder(5086, 1); // Deadly Poison
private static final SkillHolder SELFBUFF1 = new SkillHolder(5087, 1); // Berserk
private static final SkillHolder SELFBUFF2 = new SkillHolder(5087, 2); // Berserk
private static final SkillHolder LONGRANGEDMAGIC1 = new SkillHolder(5120, 1); // Stun
private static final SkillHolder PHYSICALSPECIAL1 = new SkillHolder(5083, 4); // Stun
private static final SkillHolder PHYSICALSPECIAL2 = new SkillHolder(5081, 4); // Silence
private static final SkillHolder PHYSICALSPECIAL3 = new SkillHolder(5082, 4); // NPC Spinning, Slashing Trick
private static final SkillHolder CREW_SKILL = new SkillHolder(6172, 1); // Presentation - Tyranno
private static final SkillHolder INVIN_BUFF_ON = new SkillHolder(5225, 1); // Invincible
private PrimevalIsle()
{
super(PrimevalIsle.class.getSimpleName(), "ai/group_template");
addSpawnId(TREX);
addSpawnId(SPRIGNANT);
addSpawnId(MONSTERS);
addAggroRangeEnterId(TREX);
addSpellFinishedId(TREX);
addAttackId(EGG);
addAttackId(TREX);
addAttackId(MONSTERS);
addKillId(EGG, SAILREN, DEINO, ORNIT);
addSeeCreatureId(TREX);
addSeeCreatureId(MONSTERS);
for (int npcId : SPRIGNANT)
{
for (L2Spawn spawn : SpawnTable.getInstance().getSpawns(npcId))
{
onSpawn(spawn.getLastSpawn());
}
}
for (int npcId : TREX)
{
for (L2Spawn spawn : SpawnTable.getInstance().getSpawns(npcId))
{
onSpawn(spawn.getLastSpawn());
}
}
}
@Override
public String onSpellFinished(L2Npc npc, L2PcInstance player, L2Skill skill)
{
if (skill.getId() == CREW_SKILL.getSkillId())
{
startQuestTimer("START_INVUL", 4000, npc, null);
final L2Npc target = (L2Npc) npc.getTarget();
if (target != null)
{
target.doDie(npc);
}
}
if (npc.isInCombat())
{
final L2Attackable mob = (L2Attackable) npc;
final L2PcInstance target = (L2PcInstance) mob.getMostHated();
if (((npc.getCurrentHp() / npc.getMaxHp()) * 100) < 60)
{
if (skill.getId() == SELFBUFF1.getSkillId())
{
npc.setScriptValue(3);
if ((target != null) && target.isPlayer())
{
npc.setTarget(target);
attackPlayer(mob, target);
}
}
}
else if (((npc.getCurrentHp() / npc.getMaxHp()) * 100) < 30)
{
if (skill.getId() == SELFBUFF1.getSkillId())
{
npc.setScriptValue(1);
if ((target != null) && target.isPlayer())
{
npc.setTarget(target);
attackPlayer(mob, target);
}
}
else if (skill.getId() == SELFBUFF2.getSkillId())
{
npc.setScriptValue(5);
if ((target != null) && target.isPlayer())
{
npc.setTarget(target);
attackPlayer(mob, target);
}
}
}
}
return super.onSpellFinished(npc, player, skill);
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
switch (event)
{
case "USE_SKILL":
{
if ((npc != null) && !npc.isDead())
{
npc.doCast((npc.getId() == SPRIGNANT[0] ? ANESTHESIA.getSkill() : DEADLY_POISON.getSkill()));
startQuestTimer("USE_SKILL", 15000, npc, null);
}
break;
}
case "GHOST_DESPAWN":
{
if ((npc != null) && !npc.isDead())
{
if (!npc.isInCombat())
{
npc.deleteMe();
}
else
{
startQuestTimer("GHOST_DESPAWN", 1800000, npc, null);
}
}
break;
}
case "TREX_ATTACK":
{
if ((npc != null) && (player != null))
{
npc.setScriptValue(0);
if (player.isInsideRadius(npc, 800, true, false))
{
npc.setTarget(player);
npc.doCast(LONGRANGEDMAGIC1.getSkill());
attackPlayer((L2Attackable) npc, player);
}
}
break;
}
case "START_INVUL":
{
if ((npc != null) && !npc.isDead())
{
npc.doCast(INVIN_BUFF_ON.getSkill());
startQuestTimer("START_INVUL_2", 30000, npc, null);
}
break;
}
case "START_INVUL_2":
{
if ((npc != null) && !npc.isDead())
{
INVIN_BUFF_ON.getSkill().applyEffects(npc, npc);
}
break;
}
}
return super.onAdvEvent(event, npc, player);
}
@Override
public String onSeeCreature(L2Npc npc, L2Character creature, boolean isSummon)
{
if (Util.contains(MONSTERS, npc.getId()))
{
if (creature.isPlayer())
{
final L2Attackable mob = (L2Attackable) npc;
final int ag_type = npc.getTemplate().getParameters().getInt("ag_type", 0);
final int probPhysicalSpecial1 = npc.getTemplate().getParameters().getInt("ProbPhysicalSpecial1", 0);
final int probPhysicalSpecial2 = npc.getTemplate().getParameters().getInt("ProbPhysicalSpecial2", 0);
final SkillHolder physicalSpecial1 = npc.getTemplate().getParameters().getObject("PhysicalSpecial1", SkillHolder.class);
final SkillHolder physicalSpecial2 = npc.getTemplate().getParameters().getObject("PhysicalSpecial2", SkillHolder.class);
if (((getRandom(100) < 30) && (npc.getId() == DEINO)) || ((npc.getId() == ORNIT) && npc.isScriptValue(0)))
{
mob.clearAggroList();
npc.setScriptValue(1);
npc.setRunning();
final int distance = 3000;
final int heading = Util.calculateHeadingFrom(creature, npc);
final double angle = Util.convertHeadingToDegree(heading);
final double radian = Math.toRadians(angle);
final double sin = Math.sin(radian);
final double cos = Math.cos(radian);
final int newX = (int) (npc.getX() + (cos * distance));
final int newY = (int) (npc.getY() + (sin * distance));
final Location loc = GeoData.getInstance().moveCheck(npc.getX(), npc.getY(), npc.getZ(), newX, newY, npc.getZ(), npc.getInstanceId());
npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, loc, 0);
}
else if (ag_type == 1)
{
if (getRandom(100) <= (probPhysicalSpecial1 * npc.getVariables().getInt("SKILL_MULTIPLER")))
{
if (!npc.isSkillDisabled(physicalSpecial1.getSkillId()))
{
npc.setTarget(creature);
npc.doCast(physicalSpecial1.getSkill());
}
}
else if (getRandom(100) <= (probPhysicalSpecial2 * npc.getVariables().getInt("SKILL_MULTIPLER")))
{
if (!npc.isSkillDisabled(physicalSpecial2.getSkill()))
{
npc.setTarget(creature);
npc.doCast(physicalSpecial2.getSkill());
}
}
}
}
}
else if (Util.contains(VEGETABLE, creature.getId()))
{
npc.setTarget(creature);
npc.doCast(CREW_SKILL.getSkill());
npc.setIsRunning(true);
npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, creature);
}
return super.onSeeCreature(npc, creature, isSummon);
}
@Override
public String onAggroRangeEnter(L2Npc npc, L2PcInstance player, boolean isSummon)
{
if (npc.isScriptValue(0))
{
npc.setScriptValue(1);
broadcastNpcSay(npc, Say2.NPC_ALL, "?");
((L2Attackable) npc).clearAggroList();
startQuestTimer("TREX_ATTACK", 6000, npc, player);
}
return super.onAggroRangeEnter(npc, player, isSummon);
}
@Override
public String onAttack(L2Npc npc, L2PcInstance attacker, int damage, boolean isSummon)
{
if (npc.getId() == EGG)
{
if ((getRandom(100) <= 80) && npc.isScriptValue(0))
{
npc.setScriptValue(1);
final L2Playable playable = isSummon ? attacker.getSummon() : attacker;
for (L2Character characters : npc.getKnownList().getKnownCharactersInRadius(500))
{
if ((characters != null) && (characters.isL2Attackable()) && (getRandomBoolean()))
{
L2Attackable monster = (L2Attackable) characters;
attackPlayer(monster, playable);
}
}
}
}
else if (Util.contains(TREX, npc.getId()))
{
final L2Attackable mob = (L2Attackable) npc;
final L2PcInstance target = (L2PcInstance) mob.getMostHated();
if (((npc.getCurrentHp() / npc.getMaxHp()) * 100) <= 30)
{
if (npc.isScriptValue(3))
{
if (!npc.isSkillDisabled(SELFBUFF1.getSkill()))
{
npc.doCast(SELFBUFF1.getSkill());
}
}
else if (npc.isScriptValue(1))
{
if (!npc.isSkillDisabled(SELFBUFF2.getSkill()))
{
npc.doCast(SELFBUFF2.getSkill());
}
}
}
else if ((((npc.getCurrentHp() / npc.getMaxHp()) * 100) <= 60) && (npc.isScriptValue(3)))
{
if (!npc.isSkillDisabled(SELFBUFF1.getSkill()))
{
npc.doCast(SELFBUFF1.getSkill());
}
}
if (Util.calculateDistance(npc, attacker, true, false) > 100)
{
if (!npc.isSkillDisabled(LONGRANGEDMAGIC1.getSkill()) && (getRandom(100) <= (10 * npc.getScriptValue())))
{
npc.setTarget(attacker);
npc.doCast(LONGRANGEDMAGIC1.getSkill());
}
}
else
{
if (!npc.isSkillDisabled(LONGRANGEDMAGIC1.getSkill()) && (getRandom(100) <= (10 * npc.getScriptValue())))
{
npc.setTarget(target);
npc.doCast(LONGRANGEDMAGIC1.getSkill());
}
if (!npc.isSkillDisabled(PHYSICALSPECIAL1.getSkill()) && (getRandom(100) <= (5 * npc.getScriptValue())))
{
npc.setTarget(target);
npc.doCast(PHYSICALSPECIAL1.getSkill());
}
if (!npc.isSkillDisabled(PHYSICALSPECIAL2.getSkill()) && (getRandom(100) <= (3 * npc.getScriptValue())))
{
npc.setTarget(target);
npc.doCast(PHYSICALSPECIAL2.getSkill());
}
if (!npc.isSkillDisabled(PHYSICALSPECIAL3.getSkill()) && (getRandom(100) <= (5 * npc.getScriptValue())))
{
npc.setTarget(target);
npc.doCast(PHYSICALSPECIAL3.getSkill());
}
}
}
else
{
L2PcInstance target = null;
final int probPhysicalSpecial1 = npc.getTemplate().getParameters().getInt("ProbPhysicalSpecial1", 0);
final int probPhysicalSpecial2 = npc.getTemplate().getParameters().getInt("ProbPhysicalSpecial2", 0);
final SkillHolder selfRangeBuff1 = npc.getTemplate().getParameters().getObject("SelfRangeBuff1", SkillHolder.class);
final SkillHolder physicalSpecial1 = npc.getTemplate().getParameters().getObject("PhysicalSpecial1", SkillHolder.class);
final SkillHolder physicalSpecial2 = npc.getTemplate().getParameters().getObject("PhysicalSpecial2", SkillHolder.class);
if (((npc.getCurrentHp() / npc.getMaxHp()) * 100) <= 50)
{
npc.getVariables().set("SKILL_MULTIPLER", 2);
}
else
{
npc.getVariables().set("SKILL_MULTIPLER", 1);
}
if ((((npc.getCurrentHp() / npc.getMaxHp()) * 100) <= 30) && (npc.getVariables().getInt("SELFBUFF_USED") == 0))
{
final L2Attackable mob = (L2Attackable) npc;
target = (L2PcInstance) mob.getMostHated();
mob.clearAggroList();
if (!npc.isSkillDisabled(selfRangeBuff1.getSkillId()))
{
npc.getVariables().set("SELFBUFF_USED", 1);
npc.doCast(selfRangeBuff1.getSkill());
attackPlayer(mob, target);
}
}
if (target != null)
{
if (getRandom(100) <= (probPhysicalSpecial1 * npc.getVariables().getInt("SKILL_MULTIPLER")))
{
if (!npc.isSkillDisabled(physicalSpecial1.getSkill()))
{
npc.setTarget(target);
npc.doCast(physicalSpecial1.getSkill());
}
}
if (getRandom(100) <= (probPhysicalSpecial2 * npc.getVariables().getInt("SKILL_MULTIPLER")))
{
if (!npc.isSkillDisabled(physicalSpecial2.getSkill()))
{
npc.setTarget(target);
npc.doCast(physicalSpecial2.getSkill());
}
}
}
}
return super.onAttack(npc, attacker, damage, isSummon);
}
@Override
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
{
if ((npc.getId() == DEINO) || ((npc.getId() == ORNIT) && !npc.isScriptValue(1)))
{
return super.onKill(npc, killer, isSummon);
}
if ((npc.getId() == SAILREN) || (getRandom(100) < 3))
{
final L2PcInstance player = npc.getId() == SAILREN ? getRandomPartyMember(killer) : killer;
if (player.getInventory().getSize(false) <= (player.getInventoryLimit() * 0.8))
{
giveItems(player, DEINONYCHUS, 1);
final L2ItemInstance summonItem = player.getInventory().getItemByItemId(DEINONYCHUS);
final IItemHandler handler = ItemHandler.getInstance().getHandler(summonItem.getEtcItem());
if ((handler != null) && !player.hasPet())
{
handler.useItem(player, summonItem, true);
}
showOnScreenMsg(player, NpcStringId.LIFE_STONE_FROM_THE_BEGINNING_ACQUIRED, 2, 6000);
}
else
{
showOnScreenMsg(player, NpcStringId.WHEN_INVENTORY_WEIGHT_NUMBER_ARE_MORE_THAN_80_THE_LIFE_STONE_FROM_THE_BEGINNING_CANNOT_BE_ACQUIRED, 2, 6000);
}
}
return super.onKill(npc, killer, isSummon);
}
@Override
public String onSpawn(L2Npc npc)
{
if (Util.contains(SPRIGNANT, npc.getId()))
{
startQuestTimer("USE_SKILL", 15000, npc, null);
}
else if (Util.contains(TREX, npc.getId()))
{
final int collectGhost = npc.getTemplate().getParameters().getInt("CollectGhost", 0);
final int collectDespawn = npc.getTemplate().getParameters().getInt("CollectGhostDespawnTime", 30);
if (collectGhost == 1)
{
startQuestTimer("GHOST_DESPAWN", collectDespawn * 60000, npc, null);
}
}
else
{
npc.getVariables().set("SELFBUFF_USED", 0);
npc.getVariables().set("SKILL_MULTIPLER", 1);
}
return super.onSpawn(npc);
}
public static void main(String[] args)
{
new PrimevalIsle();
}
}
\ No newline at end of file
/*
* Copyright (C) 2004-2013 L2J DataPack
*
* This file is part of L2J DataPack.
*
* L2J DataPack is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* L2J DataPack is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.individual;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.datatables.SpawnTable;
import com.l2jserver.gameserver.model.L2Spawn;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.holders.SkillHolder;
/**
* Sprigant AI.
* @author St3eT
*/
public final class Sprigant extends AbstractNpcAI
{
// NPC
private static final int ANESTHESIA_SPRIGNANT = 18345;
private static final int DEADLY_SPRIGNANT = 18346;
// Skills
private static SkillHolder ANESTHESIA = new SkillHolder(5085, 1);
private static SkillHolder DEADLY_POISON = new SkillHolder(5086, 1);
private Sprigant()
{
super(Sprigant.class.getSimpleName(), "ai/individual");
addSpawnId(ANESTHESIA_SPRIGNANT, DEADLY_SPRIGNANT);
for (L2Spawn spawn : SpawnTable.getInstance().getSpawns(ANESTHESIA_SPRIGNANT))
{
onSpawn(spawn.getLastSpawn());
}
for (L2Spawn spawn : SpawnTable.getInstance().getSpawns(DEADLY_SPRIGNANT))
{
onSpawn(spawn.getLastSpawn());
}
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
if (event.equals("useSkill") && (npc != null) && !npc.isDead())
{
npc.doCast((npc.getId() == ANESTHESIA_SPRIGNANT ? ANESTHESIA.getSkill() : DEADLY_POISON.getSkill()));
startQuestTimer("useSkill", 15000, npc, null);
}
else
{
cancelQuestTimer("useSkill", npc, null);
}
return super.onAdvEvent(event, npc, player);
}
@Override
public String onSpawn(L2Npc npc)
{
startQuestTimer("useSkill", 15000, npc, null);
return super.onSpawn(npc);
}
public static void main(String[] args)
{
new Sprigant();
}
}
\ No newline at end of file
...@@ -51026,9 +51026,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51026,9 +51026,6 @@ INSERT INTO `npcskills` VALUES
(22196, 4417, 4), -- Race Types (22196, 4417, 4), -- Race Types
(22196, 4439, 2), -- Greater Resist Hold (22196, 4439, 2), -- Greater Resist Hold
(22196, 4445, 2), -- Greater Resist Spear Weapons (22196, 4445, 2), -- Greater Resist Spear Weapons
(22196, 5079, 1), -- NPC Focused Haste
(22196, 5081, 2), -- Silence
(22196, 5082, 2), -- NPC Spinning, Slashing Trick
(22196, 5465, 1), -- Earth Attacks (22196, 5465, 1), -- Earth Attacks
(22196, 5601, 9), -- Short-Range Physical Attack Resistance (22196, 5601, 9), -- Short-Range Physical Attack Resistance
-- Velociraptor -- Velociraptor
...@@ -51066,9 +51063,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51066,9 +51063,6 @@ INSERT INTO `npcskills` VALUES
(22198, 4417, 4), -- Race Types (22198, 4417, 4), -- Race Types
(22198, 4439, 2), -- Greater Resist Hold (22198, 4439, 2), -- Greater Resist Hold
(22198, 4445, 2), -- Greater Resist Spear Weapons (22198, 4445, 2), -- Greater Resist Spear Weapons
(22198, 5079, 1), -- NPC Focused Haste
(22198, 5081, 2), -- Silence
(22198, 5082, 2), -- NPC Spinning, Slashing Trick
(22198, 5465, 1), -- Earth Attacks (22198, 5465, 1), -- Earth Attacks
(22198, 5601, 9), -- Short-Range Physical Attack Resistance (22198, 5601, 9), -- Short-Range Physical Attack Resistance
-- Pterosaur -- Pterosaur
...@@ -51111,9 +51105,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51111,9 +51105,6 @@ INSERT INTO `npcskills` VALUES
(22200, 4417, 4), -- Race Types (22200, 4417, 4), -- Race Types
(22200, 4439, 2), -- Greater Resist Hold (22200, 4439, 2), -- Greater Resist Hold
(22200, 4445, 1), -- Greater Resist Spear Weapons (22200, 4445, 1), -- Greater Resist Spear Weapons
(22200, 5080, 1), -- NPC Mighty Haste
(22200, 5083, 1), -- Stun
(22200, 5084, 1), -- NPC Blinding Blow
(22200, 5601, 9), -- Short-Range Physical Attack Resistance (22200, 5601, 9), -- Short-Range Physical Attack Resistance
-- Ornithomimus -- Ornithomimus
(22201, 4071, 5), -- Resist Archery (22201, 4071, 5), -- Resist Archery
...@@ -51149,9 +51140,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51149,9 +51140,6 @@ INSERT INTO `npcskills` VALUES
(22202, 4417, 4), -- Race Types (22202, 4417, 4), -- Race Types
(22202, 4439, 2), -- Greater Resist Hold (22202, 4439, 2), -- Greater Resist Hold
(22202, 4445, 1), -- Greater Resist Spear Weapons (22202, 4445, 1), -- Greater Resist Spear Weapons
(22202, 5080, 1), -- NPC Mighty Haste
(22202, 5083, 1), -- Stun
(22202, 5084, 1), -- NPC Blinding Blow
(22202, 5601, 9), -- Short-Range Physical Attack Resistance (22202, 5601, 9), -- Short-Range Physical Attack Resistance
-- Deinonychus -- Deinonychus
(22203, 4071, 3), -- Resist Archery (22203, 4071, 3), -- Resist Archery
...@@ -51169,9 +51157,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51169,9 +51157,6 @@ INSERT INTO `npcskills` VALUES
(22203, 4416, 3), -- Races (22203, 4416, 3), -- Races
(22203, 4417, 4), -- Race Types (22203, 4417, 4), -- Race Types
(22203, 4445, 1), -- Greater Resist Spear Weapons (22203, 4445, 1), -- Greater Resist Spear Weapons
(22203, 5079, 1), -- NPC Focused Haste
(22203, 5082, 1), -- NPC Spinning, Slashing Trick
(22203, 5084, 1), -- NPC Blinding Blow
(22203, 5601, 9), -- Short-Range Physical Attack Resistance (22203, 5601, 9), -- Short-Range Physical Attack Resistance
-- Deinonychus -- Deinonychus
(22204, 4071, 3), -- Resist Archery (22204, 4071, 3), -- Resist Archery
...@@ -51206,12 +51191,8 @@ INSERT INTO `npcskills` VALUES ...@@ -51206,12 +51191,8 @@ INSERT INTO `npcskills` VALUES
(22205, 4416, 3), -- Races (22205, 4416, 3), -- Races
(22205, 4417, 4), -- Race Types (22205, 4417, 4), -- Race Types
(22205, 4445, 1), -- Greater Resist Spear Weapons (22205, 4445, 1), -- Greater Resist Spear Weapons
(22205, 5079, 1), -- NPC Focused Haste
(22205, 5082, 1), -- NPC Spinning, Slashing Trick
(22205, 5084, 1), -- NPC Blinding Blow
(22205, 5601, 9), -- Short-Range Physical Attack Resistance (22205, 5601, 9), -- Short-Range Physical Attack Resistance
-- Pachycephalosaurus -- Pachycephalosaurus
(22208, 4067, 10), -- NPC Mortal Blow
(22208, 4071, 3), -- Resist Archery (22208, 4071, 3), -- Resist Archery
(22208, 4084, 9), -- Resist Physical Attack (22208, 4084, 9), -- Resist Physical Attack
(22208, 4285, 5), -- Resist Sleep (22208, 4285, 5), -- Resist Sleep
...@@ -51227,8 +51208,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51227,8 +51208,6 @@ INSERT INTO `npcskills` VALUES
(22208, 4417, 4), -- Race Types (22208, 4417, 4), -- Race Types
(22208, 4439, 2), -- Greater Resist Hold (22208, 4439, 2), -- Greater Resist Hold
(22208, 4445, 1), -- Greater Resist Spear Weapons (22208, 4445, 1), -- Greater Resist Spear Weapons
(22208, 5080, 1), -- NPC Mighty Haste
(22208, 5083, 1), -- Stun
(22208, 5601, 9), -- Short-Range Physical Attack Resistance (22208, 5601, 9), -- Short-Range Physical Attack Resistance
-- Pachycephalosaurus -- Pachycephalosaurus
(22209, 4071, 2), -- Resist Archery (22209, 4071, 2), -- Resist Archery
...@@ -51248,7 +51227,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51248,7 +51227,6 @@ INSERT INTO `npcskills` VALUES
(22209, 4445, 1), -- Greater Resist Spear Weapons (22209, 4445, 1), -- Greater Resist Spear Weapons
(22209, 5601, 9), -- Short-Range Physical Attack Resistance (22209, 5601, 9), -- Short-Range Physical Attack Resistance
-- Pachycephalosaurus -- Pachycephalosaurus
(22210, 4067, 10), -- NPC Mortal Blow
(22210, 4071, 3), -- Resist Archery (22210, 4071, 3), -- Resist Archery
(22210, 4084, 9), -- Resist Physical Attack (22210, 4084, 9), -- Resist Physical Attack
(22210, 4285, 5), -- Resist Sleep (22210, 4285, 5), -- Resist Sleep
...@@ -51264,13 +51242,10 @@ INSERT INTO `npcskills` VALUES ...@@ -51264,13 +51242,10 @@ INSERT INTO `npcskills` VALUES
(22210, 4417, 4), -- Race Types (22210, 4417, 4), -- Race Types
(22210, 4439, 2), -- Greater Resist Hold (22210, 4439, 2), -- Greater Resist Hold
(22210, 4445, 1), -- Greater Resist Spear Weapons (22210, 4445, 1), -- Greater Resist Spear Weapons
(22210, 5080, 1), -- NPC Mighty Haste
(22210, 5083, 1), -- Stun
(22210, 5601, 9), -- Short-Range Physical Attack Resistance (22210, 5601, 9), -- Short-Range Physical Attack Resistance
-- Wild Strider -- Wild Strider
(22211, 4071, 4), -- Resist Archery (22211, 4071, 4), -- Resist Archery
(22211, 4084, 9), -- Resist Physical Attack (22211, 4084, 9), -- Resist Physical Attack
(22211, 4232, 10), -- NPC AE Strike
(22211, 4285, 5), -- Resist Sleep (22211, 4285, 5), -- Resist Sleep
(22211, 4408, 1), -- HP Modifiers (22211, 4408, 1), -- HP Modifiers
(22211, 4409, 1), -- MP Modifiers (22211, 4409, 1), -- MP Modifiers
...@@ -51284,8 +51259,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51284,8 +51259,6 @@ INSERT INTO `npcskills` VALUES
(22211, 4417, 4), -- Race Types (22211, 4417, 4), -- Race Types
(22211, 4439, 2), -- Greater Resist Hold (22211, 4439, 2), -- Greater Resist Hold
(22211, 4445, 1), -- Greater Resist Spear Weapons (22211, 4445, 1), -- Greater Resist Spear Weapons
(22211, 5079, 1), -- NPC Focused Haste
(22211, 5081, 1), -- Silence
(22211, 5601, 9), -- Short-Range Physical Attack Resistance (22211, 5601, 9), -- Short-Range Physical Attack Resistance
-- Wild Strider -- Wild Strider
(22212, 4067, 10), -- NPC Mortal Blow (22212, 4067, 10), -- NPC Mortal Blow
...@@ -51308,7 +51281,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51308,7 +51281,6 @@ INSERT INTO `npcskills` VALUES
-- Wild Strider -- Wild Strider
(22213, 4071, 4), -- Resist Archery (22213, 4071, 4), -- Resist Archery
(22213, 4084, 9), -- Resist Physical Attack (22213, 4084, 9), -- Resist Physical Attack
(22213, 4232, 10), -- NPC AE Strike
(22213, 4285, 5), -- Resist Sleep (22213, 4285, 5), -- Resist Sleep
(22213, 4408, 1), -- HP Modifiers (22213, 4408, 1), -- HP Modifiers
(22213, 4409, 1), -- MP Modifiers (22213, 4409, 1), -- MP Modifiers
...@@ -51322,8 +51294,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51322,8 +51294,6 @@ INSERT INTO `npcskills` VALUES
(22213, 4417, 4), -- Race Types (22213, 4417, 4), -- Race Types
(22213, 4439, 2), -- Greater Resist Hold (22213, 4439, 2), -- Greater Resist Hold
(22213, 4445, 1), -- Greater Resist Spear Weapons (22213, 4445, 1), -- Greater Resist Spear Weapons
(22213, 5079, 1), -- NPC Focused Haste
(22213, 5081, 1), -- Silence
(22213, 5601, 9), -- Short-Range Physical Attack Resistance (22213, 5601, 9), -- Short-Range Physical Attack Resistance
-- Elroki -- Elroki
(22214, 4071, 2), -- Resist Archery (22214, 4071, 2), -- Resist Archery
...@@ -51364,16 +51334,12 @@ INSERT INTO `npcskills` VALUES ...@@ -51364,16 +51334,12 @@ INSERT INTO `npcskills` VALUES
(22215, 4441, 5), -- Greater Resist Mental Derangement (22215, 4441, 5), -- Greater Resist Mental Derangement
(22215, 4444, 2), -- Higher Resist Bow/Crossbow Weapons (22215, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
(22215, 4445, 1), -- Greater Resist Spear Weapons (22215, 4445, 1), -- Greater Resist Spear Weapons
(22215, 5081, 4), -- Silence
(22215, 5082, 4), -- NPC Spinning, Slashing Trick (22215, 5082, 4), -- NPC Spinning, Slashing Trick
(22215, 5083, 4), -- Stun
(22215, 5087, 1), -- Berserk
(22215, 5098, 1), -- Capture Penalty (22215, 5098, 1), -- Capture Penalty
(22215, 5099, 1), -- Cancel Capture A (22215, 5099, 1), -- Cancel Capture A
(22215, 5100, 1), -- Cancel Capture B (22215, 5100, 1), -- Cancel Capture B
(22215, 5101, 1), -- Cancel Capture C (22215, 5101, 1), -- Cancel Capture C
(22215, 5102, 1), -- Cancel All Capture (22215, 5102, 1), -- Cancel All Capture
(22215, 5120, 1), -- Stun
(22215, 5599, 9), -- Stun Resistance (22215, 5599, 9), -- Stun Resistance
(22215, 5601, 9), -- Short-Range Physical Attack Resistance (22215, 5601, 9), -- Short-Range Physical Attack Resistance
-- Tyrannosaurus -- Tyrannosaurus
...@@ -51394,16 +51360,12 @@ INSERT INTO `npcskills` VALUES ...@@ -51394,16 +51360,12 @@ INSERT INTO `npcskills` VALUES
(22216, 4441, 5), -- Greater Resist Mental Derangement (22216, 4441, 5), -- Greater Resist Mental Derangement
(22216, 4444, 2), -- Higher Resist Bow/Crossbow Weapons (22216, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
(22216, 4445, 1), -- Greater Resist Spear Weapons (22216, 4445, 1), -- Greater Resist Spear Weapons
(22216, 5081, 4), -- Silence
(22216, 5082, 4), -- NPC Spinning, Slashing Trick (22216, 5082, 4), -- NPC Spinning, Slashing Trick
(22216, 5083, 4), -- Stun
(22216, 5087, 1), -- Berserk
(22216, 5098, 1), -- Capture Penalty (22216, 5098, 1), -- Capture Penalty
(22216, 5099, 1), -- Cancel Capture A (22216, 5099, 1), -- Cancel Capture A
(22216, 5100, 1), -- Cancel Capture B (22216, 5100, 1), -- Cancel Capture B
(22216, 5101, 1), -- Cancel Capture C (22216, 5101, 1), -- Cancel Capture C
(22216, 5102, 1), -- Cancel All Capture (22216, 5102, 1), -- Cancel All Capture
(22216, 5120, 1), -- Stun
(22216, 5599, 9), -- Stun Resistance (22216, 5599, 9), -- Stun Resistance
(22216, 5601, 9), -- Short-Range Physical Attack Resistance (22216, 5601, 9), -- Short-Range Physical Attack Resistance
-- Tyrannosaurus -- Tyrannosaurus
...@@ -51424,16 +51386,12 @@ INSERT INTO `npcskills` VALUES ...@@ -51424,16 +51386,12 @@ INSERT INTO `npcskills` VALUES
(22217, 4441, 5), -- Greater Resist Mental Derangement (22217, 4441, 5), -- Greater Resist Mental Derangement
(22217, 4444, 2), -- Higher Resist Bow/Crossbow Weapons (22217, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
(22217, 4445, 1), -- Greater Resist Spear Weapons (22217, 4445, 1), -- Greater Resist Spear Weapons
(22217, 5081, 4), -- Silence
(22217, 5082, 4), -- NPC Spinning, Slashing Trick (22217, 5082, 4), -- NPC Spinning, Slashing Trick
(22217, 5083, 4), -- Stun
(22217, 5087, 1), -- Berserk
(22217, 5098, 1), -- Capture Penalty (22217, 5098, 1), -- Capture Penalty
(22217, 5099, 1), -- Cancel Capture A (22217, 5099, 1), -- Cancel Capture A
(22217, 5100, 1), -- Cancel Capture B (22217, 5100, 1), -- Cancel Capture B
(22217, 5101, 1), -- Cancel Capture C (22217, 5101, 1), -- Cancel Capture C
(22217, 5102, 1), -- Cancel All Capture (22217, 5102, 1), -- Cancel All Capture
(22217, 5120, 1), -- Stun
(22217, 5599, 9), -- Stun Resistance (22217, 5599, 9), -- Stun Resistance
(22217, 5601, 9), -- Short-Range Physical Attack Resistance (22217, 5601, 9), -- Short-Range Physical Attack Resistance
-- Velociraptor -- Velociraptor
...@@ -51542,9 +51500,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51542,9 +51500,6 @@ INSERT INTO `npcskills` VALUES
(22223, 4417, 4), -- Race Types (22223, 4417, 4), -- Race Types
(22223, 4439, 2), -- Greater Resist Hold (22223, 4439, 2), -- Greater Resist Hold
(22223, 4445, 1), -- Greater Resist Spear Weapons (22223, 4445, 1), -- Greater Resist Spear Weapons
(22223, 5079, 1), -- NPC Focused Haste
(22223, 5081, 1), -- Silence
(22223, 5082, 1), -- NPC Spinning, Slashing Trick
(22223, 5465, 1), -- Earth Attacks (22223, 5465, 1), -- Earth Attacks
(22223, 5601, 9), -- Short-Range Physical Attack Resistance (22223, 5601, 9), -- Short-Range Physical Attack Resistance
-- Ornithomimus -- Ornithomimus
...@@ -51563,9 +51518,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51563,9 +51518,6 @@ INSERT INTO `npcskills` VALUES
(22224, 4417, 4), -- Race Types (22224, 4417, 4), -- Race Types
(22224, 4439, 2), -- Greater Resist Hold (22224, 4439, 2), -- Greater Resist Hold
(22224, 4445, 1), -- Greater Resist Spear Weapons (22224, 4445, 1), -- Greater Resist Spear Weapons
(22224, 5080, 1), -- NPC Mighty Haste
(22224, 5083, 1), -- Stun
(22224, 5084, 1), -- NPC Blinding Blow
(22224, 5601, 9), -- Short-Range Physical Attack Resistance (22224, 5601, 9), -- Short-Range Physical Attack Resistance
-- Deinonychus -- Deinonychus
(22225, 4071, 3), -- Resist Archery (22225, 4071, 3), -- Resist Archery
...@@ -51583,12 +51535,8 @@ INSERT INTO `npcskills` VALUES ...@@ -51583,12 +51535,8 @@ INSERT INTO `npcskills` VALUES
(22225, 4416, 3), -- Races (22225, 4416, 3), -- Races
(22225, 4417, 4), -- Race Types (22225, 4417, 4), -- Race Types
(22225, 4445, 1), -- Greater Resist Spear Weapons (22225, 4445, 1), -- Greater Resist Spear Weapons
(22225, 5079, 1), -- NPC Focused Haste
(22225, 5082, 1), -- NPC Spinning, Slashing Trick
(22225, 5084, 1), -- NPC Blinding Blow
(22225, 5601, 9), -- Short-Range Physical Attack Resistance (22225, 5601, 9), -- Short-Range Physical Attack Resistance
-- Pachycephalosaurus -- Pachycephalosaurus
(22226, 4067, 10), -- NPC Mortal Blow
(22226, 4071, 3), -- Resist Archery (22226, 4071, 3), -- Resist Archery
(22226, 4084, 9), -- Resist Physical Attack (22226, 4084, 9), -- Resist Physical Attack
(22226, 4285, 5), -- Resist Sleep (22226, 4285, 5), -- Resist Sleep
...@@ -51604,13 +51552,10 @@ INSERT INTO `npcskills` VALUES ...@@ -51604,13 +51552,10 @@ INSERT INTO `npcskills` VALUES
(22226, 4417, 4), -- Race Types (22226, 4417, 4), -- Race Types
(22226, 4439, 2), -- Greater Resist Hold (22226, 4439, 2), -- Greater Resist Hold
(22226, 4445, 1), -- Greater Resist Spear Weapons (22226, 4445, 1), -- Greater Resist Spear Weapons
(22226, 5080, 1), -- NPC Mighty Haste
(22226, 5083, 1), -- Stun
(22226, 5601, 9), -- Short-Range Physical Attack Resistance (22226, 5601, 9), -- Short-Range Physical Attack Resistance
-- Wild Strider -- Wild Strider
(22227, 4071, 4), -- Resist Archery (22227, 4071, 4), -- Resist Archery
(22227, 4084, 9), -- Resist Physical Attack (22227, 4084, 9), -- Resist Physical Attack
(22227, 4232, 10), -- NPC AE Strike
(22227, 4285, 5), -- Resist Sleep (22227, 4285, 5), -- Resist Sleep
(22227, 4408, 1), -- HP Modifiers (22227, 4408, 1), -- HP Modifiers
(22227, 4409, 1), -- MP Modifiers (22227, 4409, 1), -- MP Modifiers
...@@ -51624,8 +51569,6 @@ INSERT INTO `npcskills` VALUES ...@@ -51624,8 +51569,6 @@ INSERT INTO `npcskills` VALUES
(22227, 4417, 4), -- Race Types (22227, 4417, 4), -- Race Types
(22227, 4439, 2), -- Greater Resist Hold (22227, 4439, 2), -- Greater Resist Hold
(22227, 4445, 1), -- Greater Resist Spear Weapons (22227, 4445, 1), -- Greater Resist Spear Weapons
(22227, 5079, 1), -- NPC Focused Haste
(22227, 5081, 1), -- Silence
(22227, 5601, 9), -- Short-Range Physical Attack Resistance (22227, 5601, 9), -- Short-Range Physical Attack Resistance
-- Grey Elpy -- Grey Elpy
(22228, 4408, 1), -- HP Modifiers (22228, 4408, 1), -- HP Modifiers
...@@ -58354,9 +58297,6 @@ INSERT INTO `npcskills` VALUES ...@@ -58354,9 +58297,6 @@ INSERT INTO `npcskills` VALUES
(22742, 4417, 4), -- Race Types (22742, 4417, 4), -- Race Types
(22742, 4439, 2), -- Greater Resist Hold (22742, 4439, 2), -- Greater Resist Hold
(22742, 4445, 1), -- Greater Resist Spear Weapons (22742, 4445, 1), -- Greater Resist Spear Weapons
(22742, 5080, 1), -- NPC Mighty Haste
(22742, 5083, 1), -- Stun
(22742, 5084, 1), -- NPC Blinding Blow
-- Deinonychus -- Deinonychus
(22743, 4071, 5), -- Resist Archery (22743, 4071, 5), -- Resist Archery
(22743, 4084, 9), -- Resist Physical Attack (22743, 4084, 9), -- Resist Physical Attack
...@@ -58373,9 +58313,6 @@ INSERT INTO `npcskills` VALUES ...@@ -58373,9 +58313,6 @@ INSERT INTO `npcskills` VALUES
(22743, 4417, 4), -- Race Types (22743, 4417, 4), -- Race Types
(22743, 4439, 2), -- Greater Resist Hold (22743, 4439, 2), -- Greater Resist Hold
(22743, 4445, 1), -- Greater Resist Spear Weapons (22743, 4445, 1), -- Greater Resist Spear Weapons
(22743, 5079, 1), -- NPC Focused Haste
(22743, 5082, 1), -- NPC Spinning, Slashing Trick
(22743, 5084, 1), -- NPC Blinding Blow
-- Ornithomimus -- Ornithomimus
(22744, 4071, 5), -- Resist Archery (22744, 4071, 5), -- Resist Archery
(22744, 4084, 9), -- Resist Physical Attack (22744, 4084, 9), -- Resist Physical Attack
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment