12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /*
- * Copyright (C) 2004-2014 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.L2Attackable;
- 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;
- /**
- * Fairy Trees AI.
- * @author Charus
- */
- public class FairyTrees extends AbstractNpcAI
- {
- // NPC
- private static final int SOUL_GUARDIAN = 27189; // Soul of Tree Guardian
-
- private static final int[] MOBS =
- {
- 27185, // Fairy Tree of Wind
- 27186, // Fairy Tree of Star
- 27187, // Fairy Tree of Twilight
- 27188, // Fairy Tree of Abyss
- };
-
- // Skill
- private static SkillHolder VENOMOUS_POISON = new SkillHolder(4243, 1); // Venomous Poison
-
- // Misc
- private static final int MIN_DISTANCE = 1500;
-
- private FairyTrees()
- {
- super(FairyTrees.class.getSimpleName(), "ai/group_template");
- addKillId(MOBS);
- addSpawnId(MOBS);
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
- {
- if (npc.calculateDistance(killer, true, false) <= MIN_DISTANCE)
- {
- for (int i = 0; i < 20; i++)
- {
- final L2Attackable Guardian = (L2Attackable) addSpawn(SOUL_GUARDIAN, npc.getX(), npc.getY(), npc.getZ(), npc.getHeading(), false, 30000);
- final L2Playable attacker = isSummon ? killer.getSummon() : killer;
- attackPlayer(Guardian, attacker);
- if (getRandomBoolean())
- {
- Guardian.setTarget(attacker);
- Guardian.doCast(VENOMOUS_POISON.getSkill());
- }
- }
- }
- return super.onKill(npc, killer, isSummon);
- }
-
- @Override
- public String onSpawn(L2Npc npc)
- {
- npc.setIsNoRndWalk(true);
- npc.setIsImmobilized(true);
- return super.onSpawn(npc);
- }
-
- public static void main(String[] args)
- {
- new FairyTrees();
- }
- }
|