123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /*
- * 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.Q00269_InventionAmbition;
- import java.util.HashMap;
- import java.util.Map;
- import com.l2jserver.gameserver.enums.QuestSound;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.model.quest.QuestState;
- import com.l2jserver.gameserver.model.quest.State;
- /**
- * Invention Ambition (269)
- * @author xban1x
- */
- public final class Q00269_InventionAmbition extends Quest
- {
- // NPC
- private static final int INVENTOR_MARU = 32486;
- // Items
- private static final int ENERGY_ORE = 10866;
- // Monsters
- private static final Map<Integer, Integer> MONSTERS = new HashMap<>();
- static
- {
- MONSTERS.put(21124, 46); // Red Eye Barbed Bat
- MONSTERS.put(21125, 48); // Northern Trimden
- MONSTERS.put(21126, 50); // Kerope Werewolf
- MONSTERS.put(21127, 64); // Northern Goblin
- MONSTERS.put(21128, 66); // Spine Golem
- MONSTERS.put(21129, 68); // Kerope Werewolf Chief
- MONSTERS.put(21130, 76); // Northern Goblin Leader
- MONSTERS.put(21131, 78); // Enchanted Spine Golem
- }
- // Misc
- private static final int MIN_LVL = 18;
-
- public Q00269_InventionAmbition()
- {
- super(269, Q00269_InventionAmbition.class.getSimpleName(), "Invention Ambition");
- addStartNpc(INVENTOR_MARU);
- addTalkId(INVENTOR_MARU);
- addKillId(MONSTERS.keySet());
- registerQuestItems(ENERGY_ORE);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- final QuestState st = getQuestState(player, false);
- String htmltext = null;
- if (st != null)
- {
- switch (event)
- {
- case "32486-03.htm":
- {
- htmltext = (player.getLevel() >= MIN_LVL) ? event : null;
- break;
- }
- case "32486-04.htm":
- {
- st.startQuest();
- htmltext = event;
- break;
- }
- case "32486-07.html":
- {
- st.exitQuest(true, true);
- htmltext = event;
- break;
- }
- case "32486-08.html":
- {
- htmltext = event;
- break;
- }
- }
- }
- return htmltext;
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
- {
- final QuestState st = getQuestState(killer, false);
- if ((st != null) && (getRandom(100) < MONSTERS.get(npc.getId())))
- {
- st.giveItems(ENERGY_ORE, 1);
- st.playSound(QuestSound.ITEMSOUND_QUEST_ITEMGET);
- }
- return super.onKill(npc, killer, isSummon);
- }
-
- @Override
- public String onTalk(L2Npc npc, L2PcInstance player)
- {
- final QuestState st = getQuestState(player, true);
- String htmltext = getNoQuestMsg(player);
- if (st != null)
- {
- switch (st.getState())
- {
- case State.CREATED:
- {
- htmltext = (player.getLevel() >= MIN_LVL) ? "32486-01.htm" : "32486-02.html";
- break;
- }
- case State.STARTED:
- {
- if (st.hasQuestItems(ENERGY_ORE))
- {
- final long count = st.getQuestItemsCount(ENERGY_ORE);
- st.giveAdena((count * 50) + (count >= 10 ? 2044 : null), true);
- st.takeItems(ENERGY_ORE, -1);
- htmltext = "32486-06.html";
- }
- else
- {
- htmltext = "32486-05.html";
- }
- break;
- }
- }
- }
- return htmltext;
- }
- }
|