123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- /*
- * 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 java.util.List;
- import ai.npc.AbstractNpcAI;
- import com.l2jserver.gameserver.ai.CtrlIntention;
- import com.l2jserver.gameserver.datatables.SkillData;
- import com.l2jserver.gameserver.model.L2Object;
- import com.l2jserver.gameserver.model.actor.L2Attackable;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2MonsterInstance;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.skills.Skill;
- import com.l2jserver.gameserver.network.serverpackets.MagicSkillUse;
- import com.l2jserver.gameserver.util.Broadcast;
- import com.l2jserver.gameserver.util.Util;
- /**
- * Stakato Nest AI.
- * @author Gnacik
- */
- public class StakatoNest extends AbstractNpcAI
- {
- // @formatter:off
- // List of all mobs just for register
- private static final int[] STAKATO_MOBS =
- {
- 18793, 18794, 18795, 18796, 18797, 18798, 22617, 22618, 22619, 22620,
- 22621, 22622, 22623, 22624, 22625, 22626, 22627, 22628, 22629, 22630,
- 22631, 22632, 22633, 25667
- };
- // Coocons
- private static final int[] COCOONS =
- {
- 18793, 18794, 18795, 18796, 18797, 18798
- };
- // @formatter:on
- // Cannibalistic Stakato Leader
- private static final int STAKATO_LEADER = 22625;
-
- // Spike Stakato Nurse
- private static final int STAKATO_NURSE = 22630;
- // Spike Stakato Nurse (Changed)
- private static final int STAKATO_NURSE_2 = 22631;
- // Spiked Stakato Baby
- private static final int STAKATO_BABY = 22632;
- // Spiked Stakato Captain
- private static final int STAKATO_CAPTAIN = 22629;
-
- // Female Spiked Stakato
- private static final int STAKATO_FEMALE = 22620;
- // Male Spiked Stakato
- private static final int STAKATO_MALE = 22621;
- // Male Spiked Stakato (Changed)
- private static final int STAKATO_MALE_2 = 22622;
- // Spiked Stakato Guard
- private static final int STAKATO_GUARD = 22619;
-
- // Cannibalistic Stakato Chief
- private static final int STAKATO_CHIEF = 25667;
- // Growth Accelerator
- private static final int GROWTH_ACCELERATOR = 2905;
- // Small Stakato Cocoon
- private static final int SMALL_COCOON = 14833;
- // Large Stakato Cocoon
- private static final int LARGE_COCOON = 14834;
-
- private StakatoNest()
- {
- super(StakatoNest.class.getSimpleName(), "ai/group_template");
- registerMobs(STAKATO_MOBS);
- }
-
- @Override
- public String onAttack(L2Npc npc, L2PcInstance attacker, int damage, boolean isSummon)
- {
- L2MonsterInstance mob = (L2MonsterInstance) npc;
-
- if ((mob.getId() == STAKATO_LEADER) && (getRandom(1000) < 100) && (mob.getCurrentHp() < (mob.getMaxHp() * 0.3)))
- {
- L2MonsterInstance _follower = checkMinion(npc);
-
- if (_follower != null)
- {
- double _hp = _follower.getCurrentHp();
-
- if (_hp > (_follower.getMaxHp() * 0.3))
- {
- mob.abortAttack();
- mob.abortCast();
- mob.setHeading(Util.calculateHeadingFrom(mob, _follower));
- mob.doCast(SkillData.getInstance().getSkill(4484, 1));
- mob.setCurrentHp(mob.getCurrentHp() + _hp);
- _follower.doDie(_follower);
- _follower.deleteMe();
- }
- }
- }
- return super.onAttack(npc, attacker, damage, isSummon);
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
- {
- L2MonsterInstance monster;
- switch (npc.getId())
- {
- case STAKATO_NURSE:
- monster = checkMinion(npc);
- if (monster != null)
- {
- Broadcast.toSelfAndKnownPlayers(npc, new MagicSkillUse(npc, 2046, 1, 1000, 0));
- for (int i = 0; i < 3; i++)
- {
- L2Npc _spawned = addSpawn(STAKATO_CAPTAIN, monster, true);
- attackPlayer(killer, _spawned);
- }
- }
- break;
- case STAKATO_BABY:
- monster = ((L2MonsterInstance) npc).getLeader();
- if ((monster != null) && !monster.isDead())
- {
- startQuestTimer("nurse_change", 5000, monster, killer);
- }
- break;
- case STAKATO_MALE:
- monster = checkMinion(npc);
- if (monster != null)
- {
- Broadcast.toSelfAndKnownPlayers(npc, new MagicSkillUse(npc, 2046, 1, 1000, 0));
- for (int i = 0; i < 3; i++)
- {
- L2Npc _spawned = addSpawn(STAKATO_GUARD, monster, true);
- attackPlayer(killer, _spawned);
- }
- }
- break;
- case STAKATO_FEMALE:
- monster = ((L2MonsterInstance) npc).getLeader();
- if ((monster != null) && !monster.isDead())
- {
- startQuestTimer("male_change", 5000, monster, killer);
- }
- break;
- case STAKATO_CHIEF:
- if (killer.isInParty())
- {
- List<L2PcInstance> party = killer.getParty().getMembers();
- for (L2PcInstance member : party)
- {
- giveCocoon(member, npc);
- }
- }
- else
- {
- giveCocoon(killer, npc);
- }
- break;
- }
- return super.onKill(npc, killer, isSummon);
- }
-
- @Override
- public String onSkillSee(L2Npc npc, L2PcInstance caster, Skill skill, L2Object[] targets, boolean isSummon)
- {
- if (Util.contains(COCOONS, npc.getId()) && Util.contains(targets, npc) && (skill.getId() == GROWTH_ACCELERATOR))
- {
- npc.doDie(caster);
- L2Npc spawned = addSpawn(STAKATO_CHIEF, npc.getX(), npc.getY(), npc.getZ(), Util.calculateHeadingFrom(npc, caster), false, 0, true);
- attackPlayer(caster, spawned);
- }
- return super.onSkillSee(npc, caster, skill, targets, isSummon);
- }
-
- @Override
- public final String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- if ((npc == null) || (player == null) || npc.isDead())
- {
- return null;
- }
-
- int npcId = 0;
- switch (event)
- {
- case "nurse_change":
- npcId = STAKATO_NURSE_2;
- break;
- case "male_change":
- npcId = STAKATO_MALE_2;
- break;
- }
- if (npcId > 0)
- {
- npc.getSpawn().decreaseCount(npc);
- npc.deleteMe();
- L2Npc _spawned = addSpawn(npcId, npc.getX(), npc.getY(), npc.getZ(), npc.getHeading(), false, 0, true);
- attackPlayer(player, _spawned);
- }
- return super.onAdvEvent(event, npc, player);
- }
-
- private static L2MonsterInstance checkMinion(L2Npc npc)
- {
- L2MonsterInstance mob = (L2MonsterInstance) npc;
- if (mob.hasMinions())
- {
- List<L2MonsterInstance> minion = mob.getMinionList().getSpawnedMinions();
- if ((minion != null) && !minion.isEmpty() && (minion.get(0) != null) && !minion.get(0).isDead())
- {
- return minion.get(0);
- }
- }
-
- return null;
- }
-
- private static void attackPlayer(L2PcInstance player, L2Npc npc)
- {
- if ((npc != null) && (player != null))
- {
- ((L2Attackable) npc).setIsRunning(true);
- ((L2Attackable) npc).addDamageHate(player, 0, 999);
- ((L2Attackable) npc).getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, player);
- }
- }
-
- private static void giveCocoon(L2PcInstance player, L2Npc npc)
- {
- player.addItem("StakatoCocoon", ((getRandom(100) > 80) ? LARGE_COCOON : SMALL_COCOON), 1, npc, true);
- }
-
- public static void main(String[] args)
- {
- new StakatoNest();
- }
- }
|