Dragon Valley monster AIs.

Contributed by quangnguyen.
This commit is contained in:
MobiusDev
2018-03-06 07:07:40 +00:00
parent b7d6ffe17c
commit c747a95354
2 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
/*
* This file is part of the L2J Mobius project.
*
* This program 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.
*
* This program 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.areas.DragonValley;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.L2Playable;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import ai.AbstractNpcAI;
/**
* Cave Maiden, Keeper AI.
* @author proGenitor
*/
public final class CaveMaiden extends AbstractNpcAI
{
// NPCs
private static final int CAVEMAIDEN = 20134;
private static final int CAVEKEEPER = 20246;
private static final int BANSHEE = 20412;
private CaveMaiden()
{
addKillId(CAVEMAIDEN, CAVEKEEPER);
}
@Override
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
{
if (getRandom(100) < 20)
{
final L2Npc spawnBanshee = addSpawn(BANSHEE, npc, false, 300000);
final L2Playable attacker = isSummon ? killer.getServitors().values().stream().findFirst().orElse(killer.getPet()) : killer;
addAttackPlayerDesire(spawnBanshee, attacker);
npc.deleteMe();
}
return super.onKill(npc, killer, isSummon);
}
public static void main(String[] args)
{
new CaveMaiden();
}
}

View File

@@ -0,0 +1,57 @@
/*
* This file is part of the L2J Mobius project.
*
* This program 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.
*
* This program 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.areas.LairOfAntharas;
import com.l2jmobius.gameserver.model.actor.L2Npc;
import com.l2jmobius.gameserver.model.actor.L2Playable;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import ai.AbstractNpcAI;
/**
* Pytan, Knorkiks AI.
* @author Quangnguyen
*/
public final class Pytan extends AbstractNpcAI
{
// NPCs
private static final int PYTAN = 20761;
private static final int KNORIKS = 20405;
private Pytan()
{
addKillId(PYTAN);
}
@Override
public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
{
if (getRandom(100) < 5)
{
final L2Npc spawnBanshee = addSpawn(KNORIKS, npc, false, 300000);
final L2Playable attacker = isSummon ? killer.getServitors().values().stream().findFirst().orElse(killer.getPet()) : killer;
addAttackPlayerDesire(spawnBanshee, attacker);
npc.deleteMe();
}
return super.onKill(npc, killer, isSummon);
}
public static void main(String[] args)
{
new Pytan();
}
}