146 lines
3.9 KiB
Java
146 lines
3.9 KiB
Java
/*
|
|
* 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.individual;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.Map;
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
|
|
import ai.npc.AbstractNpcAI;
|
|
|
|
import com.l2jserver.gameserver.ai.CtrlIntention;
|
|
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.util.MinionList;
|
|
|
|
/**
|
|
* Manages minion's spawn, idle despawn and Teleportation Cube spawn.
|
|
* @author GKR
|
|
*/
|
|
public final class Epidos extends AbstractNpcAI
|
|
{
|
|
private static final int[] EPIDOSES =
|
|
{
|
|
25609,
|
|
25610,
|
|
25611,
|
|
25612
|
|
};
|
|
|
|
private static final int[] MINIONS =
|
|
{
|
|
25605,
|
|
25606,
|
|
25607,
|
|
25608
|
|
};
|
|
|
|
private static final int[] MINIONS_COUNT =
|
|
{
|
|
3,
|
|
6,
|
|
11
|
|
};
|
|
|
|
private final Map<Integer, Double> _lastHp = new ConcurrentHashMap<>();
|
|
|
|
private Epidos()
|
|
{
|
|
super(Epidos.class.getSimpleName(), "ai/individual");
|
|
addKillId(EPIDOSES);
|
|
addSpawnId(EPIDOSES);
|
|
}
|
|
|
|
@Override
|
|
public final String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
|
|
{
|
|
if (event.equalsIgnoreCase("check_minions"))
|
|
{
|
|
if ((getRandom(1000) > 250) && _lastHp.containsKey(npc.getObjectId()))
|
|
{
|
|
int hpDecreasePercent = (int) (((_lastHp.get(npc.getObjectId()) - npc.getCurrentHp()) * 100) / npc.getMaxHp());
|
|
int minionsCount = 0;
|
|
int spawnedMinions = ((L2MonsterInstance) npc).getMinionList().countSpawnedMinions();
|
|
|
|
if ((hpDecreasePercent > 5) && (hpDecreasePercent <= 15) && (spawnedMinions <= 9))
|
|
{
|
|
minionsCount = MINIONS_COUNT[0];
|
|
}
|
|
else if ((((hpDecreasePercent > 1) && (hpDecreasePercent <= 5)) || ((hpDecreasePercent > 15) && (hpDecreasePercent <= 30))) && (spawnedMinions <= 6))
|
|
{
|
|
minionsCount = MINIONS_COUNT[1];
|
|
}
|
|
else if (spawnedMinions == 0)
|
|
{
|
|
minionsCount = MINIONS_COUNT[2];
|
|
}
|
|
|
|
for (int i = 0; i < minionsCount; i++)
|
|
{
|
|
MinionList.spawnMinion((L2MonsterInstance) npc, MINIONS[Arrays.binarySearch(EPIDOSES, npc.getId())]);
|
|
}
|
|
|
|
_lastHp.put(npc.getObjectId(), npc.getCurrentHp());
|
|
}
|
|
|
|
startQuestTimer("check_minions", 10000, npc, null);
|
|
}
|
|
else if (event.equalsIgnoreCase("check_idle"))
|
|
{
|
|
if (npc.getAI().getIntention() == CtrlIntention.AI_INTENTION_ACTIVE)
|
|
{
|
|
npc.deleteMe();
|
|
}
|
|
else
|
|
{
|
|
startQuestTimer("check_idle", 600000, npc, null);
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
|
|
{
|
|
if (npc.isInsideRadius(-45474, 247450, -13994, 2000, true, false))
|
|
{
|
|
addSpawn(32376, -45482, 246277, -14184, 0, false, 0, false);
|
|
}
|
|
|
|
_lastHp.remove(npc.getObjectId());
|
|
return super.onKill(npc, killer, isSummon);
|
|
}
|
|
|
|
@Override
|
|
public final String onSpawn(L2Npc npc)
|
|
{
|
|
startQuestTimer("check_minions", 10000, npc, null);
|
|
startQuestTimer("check_idle", 600000, npc, null);
|
|
_lastHp.put(npc.getObjectId(), (double) npc.getMaxHp());
|
|
|
|
return super.onSpawn(npc);
|
|
}
|
|
|
|
public static void main(String[] args)
|
|
{
|
|
new Epidos();
|
|
}
|
|
}
|