diff --git a/L2J_Mobius_Underground/dist/game/data/scripts/ai/areas/GuillotineFortress/GuillotineFortress.java b/L2J_Mobius_Underground/dist/game/data/scripts/ai/areas/GuillotineFortress/GuillotineFortress.java new file mode 100644 index 0000000000..c48fc6415a --- /dev/null +++ b/L2J_Mobius_Underground/dist/game/data/scripts/ai/areas/GuillotineFortress/GuillotineFortress.java @@ -0,0 +1,109 @@ +/* + * 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 . + */ +package ai.areas.GuillotineFortress; + +import com.l2jmobius.gameserver.model.actor.L2Npc; +import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; +import com.l2jmobius.gameserver.model.holders.SkillHolder; +import com.l2jmobius.gameserver.model.skills.Skill; +import com.l2jmobius.gameserver.network.NpcStringId; +import com.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage; + +import ai.AbstractNpcAI; + +/** + * Guillotine Fortress AI. + * @author Gigi + */ +public class GuillotineFortress extends AbstractNpcAI +{ + private static final int[] MONSTERS = + { + 23199, // Sadiac the Killer + 23200, // Turan the Severed Ghost + 23201, // Nagdu the Deformed Merman + 23202, // Hakal the Butchered + 23203, // Centa the Standing Beast + 23204, // Adidaiu of the Killer Fangs + 23205, // Haskal the Floating Ghost + 23206, // Samita the Ex-Torture Expert + 23207, // Gazem + 23208, // Rosenia's Divine Spirit + 23209, // Kelbara the Dualsword Slaughterer + 23212, // Scaldisect the Furious + 23242, // Pafuron + 23243, // Krutati + 23244, // Alluring Irene + 23245 // Isaad + }; + private static final SkillHolder CHAOS_SHIELD = new SkillHolder(15208, 9); + private static final int PROOF_OF_SURVIVAL = 34898; + private static final int SCALDISECT_THE_FURIOUS = 23212; + + public GuillotineFortress() + { + addAttackId(MONSTERS); + addKillId(MONSTERS); + } + + @Override + public String onAttack(L2Npc npc, L2PcInstance player, int damage, boolean isPet, Skill skill) + { + if ((npc.getCurrentHpPercent() <= 85) && npc.isScriptValue(1)) + { + npc.getEffectList().stopSkillEffects(true, CHAOS_SHIELD.getSkillId()); + if (player.getParty() == null) + { + player.broadcastPacket(new ExShowScreenMessage(NpcStringId.CHAOS_SHIELD_BREAKTHROUGH, ExShowScreenMessage.BOTTOM_CENTER, 10000, false)); + } + else + { + for (L2PcInstance mem : player.getParty().getMembers()) + { + mem.broadcastPacket(new ExShowScreenMessage(NpcStringId.CHAOS_SHIELD_BREAKTHROUGH, ExShowScreenMessage.BOTTOM_CENTER, 10000, false)); + } + } + } + else if ((npc.getCurrentHpPercent() > 85) && npc.isScriptValue(0)) + { + addSkillCastDesire(npc, npc, CHAOS_SHIELD, 23); + npc.setScriptValue(1); + } + + if ((player.getInventory().getItemByItemId(PROOF_OF_SURVIVAL) != null) && (getRandom(100) < 1)) + { + addSpawn(SCALDISECT_THE_FURIOUS, player.getX(), player.getY(), player.getZ(), 0, true, 120000); + takeItems(player, PROOF_OF_SURVIVAL, 1); + } + return super.onAttack(npc, player, damage, isPet, skill); + } + + @Override + public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon) + { + if ((killer != null) && killer.isPlayer() && (getRandom(100) < 5)) + { + giveItems(killer, PROOF_OF_SURVIVAL, 1); + } + return super.onKill(npc, killer, isSummon); + } + + public static void main(String[] args) + { + new GuillotineFortress(); + } +} \ No newline at end of file