123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- /*
- * 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.Q00276_TotemOfTheHestui;
- import java.util.ArrayList;
- import java.util.List;
- import quests.Q00261_CollectorsDream.Q00261_CollectorsDream;
- import com.l2jserver.gameserver.enums.Race;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.holders.ItemHolder;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.model.quest.QuestState;
- import com.l2jserver.gameserver.model.quest.State;
- import com.l2jserver.gameserver.util.Util;
- /**
- * Totem of the Hestui (276)
- * @author xban1x
- */
- public final class Q00276_TotemOfTheHestui extends Quest
- {
- // Npc
- private static final int TANAPI = 30571;
- // Items
- private static final int KASHA_PARASITE = 1480;
- private static final int KASHA_CRYSTAL = 1481;
- // Monsters
- private static final int KASHA_BEAR = 20479;
- private static final int KASHA_BEAR_TOTEM = 27044;
- // Rewards
- private static final int[] REWARDS = new int[]
- {
- 29,
- 1500,
- };
- // Misc
- private static final List<ItemHolder> SPAWN_CHANCES = new ArrayList<>();
- private static final int MIN_LVL = 15;
-
- static
- {
- SPAWN_CHANCES.add(new ItemHolder(79, 100));
- SPAWN_CHANCES.add(new ItemHolder(69, 20));
- SPAWN_CHANCES.add(new ItemHolder(59, 15));
- SPAWN_CHANCES.add(new ItemHolder(49, 10));
- SPAWN_CHANCES.add(new ItemHolder(39, 2));
- }
-
- public Q00276_TotemOfTheHestui()
- {
- super(276, Q00276_TotemOfTheHestui.class.getSimpleName(), "Totem of the Hestui");
- addStartNpc(TANAPI);
- addTalkId(TANAPI);
- addKillId(KASHA_BEAR, KASHA_BEAR_TOTEM);
- registerQuestItems(KASHA_PARASITE, KASHA_CRYSTAL);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- final QuestState st = getQuestState(player, false);
- if ((st != null) && event.equals("30571-03.htm"))
- {
- st.startQuest();
- return event;
- }
- return null;
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
- {
- final QuestState st = getQuestState(killer, false);
- if ((st != null) && st.isCond(1) && Util.checkIfInRange(1500, killer, npc, true))
- {
- switch (npc.getId())
- {
- case KASHA_BEAR:
- {
- final long chance1 = st.getQuestItemsCount(KASHA_PARASITE);
- final int chance2 = getRandom(100);
- boolean chance3 = true;
- for (ItemHolder spawnChance : SPAWN_CHANCES)
- {
- if ((chance1 >= spawnChance.getId()) && (chance2 <= spawnChance.getCount()))
- {
- st.addSpawn(KASHA_BEAR_TOTEM);
- st.takeItems(KASHA_PARASITE, -1);
- chance3 = false;
- break;
- }
- }
- if (chance3)
- {
- st.giveItemRandomly(KASHA_PARASITE, 1, 0, 1, true);
- }
- break;
- }
- case KASHA_BEAR_TOTEM:
- {
- if (st.giveItemRandomly(KASHA_CRYSTAL, 1, 1, 1, true))
- {
- st.setCond(2);
- }
- break;
- }
- }
- }
- 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)
- {
- return htmltext;
- }
-
- switch (st.getState())
- {
- case State.CREATED:
- {
- htmltext = (player.getRace() == Race.ORC) ? (player.getLevel() >= MIN_LVL) ? "30571-02.htm" : "30571-01.htm" : "30571-00.htm";
- break;
- }
- case State.STARTED:
- {
- switch (st.getCond())
- {
- case 1:
- {
- htmltext = "30571-04.html";
- break;
- }
- case 2:
- {
- if (st.hasQuestItems(KASHA_CRYSTAL))
- {
- Q00261_CollectorsDream.giveNewbieReward(player);
- for (int reward : REWARDS)
- {
- st.rewardItems(reward, 1);
- }
- st.exitQuest(true, true);
- htmltext = "30571-05.html";
- }
- break;
- }
- }
- break;
- }
- }
- return htmltext;
- }
- }
|