123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- /*
- * 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.Q00379_FantasyWine;
- 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.util.Util;
- /**
- * Fantasy Wine (379)
- * @author Adry_85
- */
- public final class Q00379_FantasyWine extends Quest
- {
- // NPC
- private static final int HARLAN = 30074;
- // Items
- private static final ItemHolder LEAF_OF_EUCALYPTUS = new ItemHolder(5893, 80);
- private static final ItemHolder STONE_OF_CHILL = new ItemHolder(5894, 100);
- private static final int OLD_WINE_15_YEAR = 5956;
- private static final int OLD_WINE_30_YEAR = 5957;
- private static final int OLD_WINE_60_YEAR = 5958;
- // Monsters
- private static final int ENKU_ORC_CHAMPION = 20291;
- private static final int ENKU_ORC_SHAMAN = 20292;
- // Misc
- private static final int MIN_LEVEL = 20;
-
- public Q00379_FantasyWine()
- {
- super(379, Q00379_FantasyWine.class.getSimpleName(), "Fantasy Wine");
- addStartNpc(HARLAN);
- addTalkId(HARLAN);
- addKillId(ENKU_ORC_CHAMPION, ENKU_ORC_SHAMAN);
- registerQuestItems(LEAF_OF_EUCALYPTUS.getId(), STONE_OF_CHILL.getId());
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- final QuestState qs = getQuestState(player, false);
- if (qs == null)
- {
- return null;
- }
-
- String htmltext = null;
- switch (event)
- {
- case "30074-02.htm":
- case "30074-03.htm":
- case "30074-05.html":
- {
- htmltext = event;
- break;
- }
- case "30074-04.htm":
- {
- qs.startQuest();
- htmltext = event;
- break;
- }
- case "30074-11.html":
- {
- if (hasAllItems(player, true, LEAF_OF_EUCALYPTUS, STONE_OF_CHILL))
- {
- final int random = getRandom(10);
- final int item;
-
- if (random < 3)
- {
- item = OLD_WINE_15_YEAR;
- htmltext = event;
- }
- else if (random < 9)
- {
- item = OLD_WINE_30_YEAR;
- htmltext = "30074-12.html";
- }
- else
- {
- item = OLD_WINE_60_YEAR;
- htmltext = "30074-13.html";
- }
-
- giveItems(player, item, 1);
- takeAllItems(player, LEAF_OF_EUCALYPTUS, STONE_OF_CHILL);
- qs.exitQuest(true, true);
- }
- break;
- }
- }
- return htmltext;
- }
-
- @Override
- public String onKill(L2Npc npc, L2PcInstance killer, boolean isSummon)
- {
- final QuestState qs = getQuestState(killer, false);
-
- if ((qs == null) || !Util.checkIfInRange(1500, npc, killer, true))
- {
- return null;
- }
-
- final ItemHolder dropItem = ((npc.getId() == ENKU_ORC_CHAMPION) ? LEAF_OF_EUCALYPTUS : STONE_OF_CHILL);
-
- if (giveItemRandomly(killer, npc, dropItem.getId(), 1, dropItem.getCount(), 1.0, true) && hasAllItems(killer, true, LEAF_OF_EUCALYPTUS, STONE_OF_CHILL))
- {
- qs.setCond(2);
- }
- return super.onKill(npc, killer, isSummon);
- }
-
- @Override
- public String onTalk(L2Npc npc, L2PcInstance player)
- {
- QuestState qs = getQuestState(player, true);
- String htmltext = getNoQuestMsg(player);
- if (qs.isCreated())
- {
- htmltext = (player.getLevel() >= MIN_LEVEL) ? "30074-01.htm" : "30074-06.html";
- }
- else if (qs.isStarted())
- {
- final boolean hasLeafOfEucalyptus = hasItem(player, LEAF_OF_EUCALYPTUS);
- final boolean hasStoneOfChill = hasItem(player, STONE_OF_CHILL);
-
- if (!hasLeafOfEucalyptus && !hasStoneOfChill)
- {
- htmltext = "30074-07.html";
- }
- else if (hasLeafOfEucalyptus && !hasStoneOfChill)
- {
- htmltext = "30074-08.html";
- }
- else if (!hasLeafOfEucalyptus && hasStoneOfChill)
- {
- htmltext = "30074-09.html";
- }
- else
- {
- htmltext = "30074-10.html";
- }
- }
- return htmltext;
- }
- }
|