123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*
- * 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.Q00358_IllegitimateChildOfTheGoddess;
- 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.quest.Quest;
- import com.l2jserver.gameserver.model.quest.QuestState;
- /**
- * Illegitimate Child of the Goddess (358)
- * @author Adry_85
- */
- public final class Q00358_IllegitimateChildOfTheGoddess extends Quest
- {
- // NPC
- private static final int OLTRAN = 30862;
- // Item
- private static final int SNAKE_SCALE = 5868;
- // Misc
- private static final int MIN_LEVEL = 63;
- private static final int SNAKE_SCALE_COUNT = 108;
- // Rewards
- private static final int[] REWARDS = new int[]
- {
- 5364, // Recipe: Sealed Dark Crystal Shield(60%)
- 5366, // Recipe: Sealed Shield of Nightmare(60%)
- 6329, // Recipe: Sealed Phoenix Necklace(70%)
- 6331, // Recipe: Sealed Phoenix Earring(70%)
- 6333, // Recipe: Sealed Phoenix Ring(70%)
- 6335, // Recipe: Sealed Majestic Necklace(70%)
- 6337, // Recipe: Sealed Majestic Earring(70%)
- 6339, // Recipe: Sealed Majestic Ring(70%)
- };
- // Mobs
- private static final Map<Integer, Double> MOBS = new HashMap<>();
- static
- {
- MOBS.put(20672, 0.71); // trives
- MOBS.put(20673, 0.74); // falibati
- }
-
- public Q00358_IllegitimateChildOfTheGoddess()
- {
- super(358, Q00358_IllegitimateChildOfTheGoddess.class.getSimpleName(), "Illegitimate Child of the Goddess");
- addStartNpc(OLTRAN);
- addTalkId(OLTRAN);
- addKillId(MOBS.keySet());
- registerQuestItems(SNAKE_SCALE);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- final QuestState st = getQuestState(player, false);
- if (st == null)
- {
- return null;
- }
-
- String htmltext = null;
- switch (event)
- {
- case "30862-02.htm":
- case "30862-03.htm":
- {
- htmltext = event;
- break;
- }
- case "30862-04.htm":
- {
- st.startQuest();
- htmltext = event;
- break;
- }
- }
- return htmltext;
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance player, boolean isSummon)
- {
- final QuestState st = getRandomPartyMemberState(player, 1, 3, npc);
- if ((st != null) && st.giveItemRandomly(npc, SNAKE_SCALE, 1, SNAKE_SCALE_COUNT, MOBS.get(npc.getId()), true))
- {
- st.setCond(2, true);
- }
- return super.onKill(npc, player, isSummon);
- }
-
- @Override
- public String onTalk(L2Npc npc, L2PcInstance player)
- {
- final QuestState st = getQuestState(player, true);
- String htmltext = getNoQuestMsg(player);
- if (st.isCreated())
- {
- htmltext = ((player.getLevel() >= MIN_LEVEL) ? "30862-01.htm" : "30862-05.html");
- }
- else if (st.isStarted())
- {
- if (getQuestItemsCount(player, SNAKE_SCALE) < SNAKE_SCALE_COUNT)
- {
- htmltext = "30862-06.html";
- }
- else
- {
- rewardItems(player, REWARDS[getRandom(REWARDS.length)], 1);
- st.exitQuest(true, true);
- htmltext = "30862-07.html";
- }
- }
- return htmltext;
- }
- }
|