123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /*
- * Copyright (C) 2004-2015 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 quests.Q00382_KailsMagicCoin;
- import java.util.HashMap;
- import java.util.Map;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.holders.ItemChanceHolder;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.model.quest.QuestState;
- import com.l2jserver.gameserver.util.Util;
- /**
- * Kail's Magic Coin (382)
- * @author Sdw, jurchicks
- */
- public final class Q00382_KailsMagicCoin extends Quest
- {
- // NPCs
- private static final int VERGARA = 30687;
- // Monsters
- private static final int FALLEN_ORC = 21017;
- private static final int FALLEN_ORC_ARCHER = 21019;
- private static final int FALLEN_ORC_SHAMAN = 21020;
- private static final int FALLEN_ORC_CAPTAIN = 21022;
- // Items
- private static final int ROYAL_MEMBERSHIP = 5898;
- private static final int KAILS_SILVER_BASILISK = 5961;
- private static final int KAILS_GOLD_GOLEM = 5962;
- private static final int KAILS_BLOOD_DRAGON = 5963;
- // Drops
- private static final double ORC_CAPTAIN_DROP_CHANCE = 0.069;
- private static final Map<Integer, ItemChanceHolder> MONSTER_DROPS = new HashMap<>();
- static
- {
- MONSTER_DROPS.put(FALLEN_ORC, new ItemChanceHolder(KAILS_SILVER_BASILISK, 0.073));
- MONSTER_DROPS.put(FALLEN_ORC_ARCHER, new ItemChanceHolder(KAILS_GOLD_GOLEM, 0.075));
- MONSTER_DROPS.put(FALLEN_ORC_SHAMAN, new ItemChanceHolder(KAILS_BLOOD_DRAGON, 0.073));
- }
- // Misc
- private static final int MIN_LVL = 55;
-
- public Q00382_KailsMagicCoin()
- {
- super(382, Q00382_KailsMagicCoin.class.getSimpleName(), "Kail's Magic Coin");
- addStartNpc(VERGARA);
- addTalkId(VERGARA);
- addKillId(FALLEN_ORC, FALLEN_ORC_ARCHER, FALLEN_ORC_SHAMAN, FALLEN_ORC_CAPTAIN);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- final QuestState qs = getQuestState(player, false);
- String htmltext = null;
- if (qs == null)
- {
- return htmltext;
- }
-
- switch (event)
- {
- case "30386-03.htm":
- {
- if (qs.isCreated())
- {
- qs.startQuest();
- htmltext = event;
- }
- break;
- }
- case "30386-05.htm":
- case "30386-06.htm":
- {
- if (qs.isStarted())
- {
- htmltext = event;
- }
- break;
- }
- }
- return htmltext;
- }
-
- @Override
- public String onTalk(L2Npc npc, L2PcInstance talker)
- {
- final QuestState qs = getQuestState(talker, true);
- String htmltext = getNoQuestMsg(talker);
- if (qs.isCreated())
- {
- htmltext = (((talker.getLevel() >= MIN_LVL) && hasQuestItems(talker, ROYAL_MEMBERSHIP)) ? "30687-02.htm" : "30687-01.htm");
- }
- else if (qs.isStarted())
- {
- htmltext = "30687-04.htm";
- }
- return htmltext;
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
- {
- final QuestState qs = getQuestState(killer, false);
- if ((qs != null) && hasQuestItems(killer, ROYAL_MEMBERSHIP) && Util.checkIfInRange(1500, npc, killer, true))
- {
- if (npc.getId() == FALLEN_ORC_CAPTAIN)
- {
- giveItemRandomly(killer, KAILS_SILVER_BASILISK + getRandom(3), 1, 0, ORC_CAPTAIN_DROP_CHANCE, true);
- }
- else
- {
- final ItemChanceHolder ih = MONSTER_DROPS.get(npc.getId());
- giveItemRandomly(killer, ih.getId(), 1, 0, ih.getChance(), true);
- }
- }
- return super.onKill(npc, killer, isSummon);
- }
- }
|