/*
* Copyright (C) 2004-2014 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.Q00609_MagicalPowerOfWaterPart1;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.holders.SkillHolder;
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.network.NpcStringId;
import com.l2jserver.gameserver.network.clientpackets.Say2;
import com.l2jserver.gameserver.network.serverpackets.NpcSay;
/**
* Magical Power of Water - Part 1 (609)
* @author Joxit
*/
public class Q00609_MagicalPowerOfWaterPart1 extends Quest
{
// NPCs
private static final int WAHKAN = 31371;
private static final int ASEFA = 31372;
private static final int UDANS_BOX = 31561;
private static final int UDANS_EYE = 31684;
// Monsters
private static final int[] VARKA_MOBS =
{
21350, // Varka Silenos Recruit
21351, // Varka Silenos Footman
21353, // Varka Silenos Scout
21354, // Varka Silenos Hunter
21355, // Varka Silenos Shaman
21357, // Varka Silenos Priest
21358, // Varka Silenos Warrior
21360, // Varka Silenos Medium
21361, // Varka Silenos Magus
21362, // Varka Silenos Officer
21364, // Varka Silenos Seer
21365, // Varka Silenos Great Magus
21366, // Varka Silenos General
21368, // Varka Silenos Great Seer
21369, // Varka's Commander
21370, // Varka's Elite Guard
21371, // Varka's Head Magus
21372, // Varka's Head Guard
21373, // Varka's Prophet
21374, // Prophet's Guard
21375, // Disciple of Prophet
};
// Items
private static final int KEY = 1661;
private static final int STOLEN_GREEN_TOTEM = 7237;
private static final int WISDOM_STONE = 7081;
private static final int GREEN_TOTEM = 7238;
private static final int[] KETRA_MARKS =
{
7211, // Mark of Ketra's Alliance - Level 1
7212, // Mark of Ketra's Alliance - Level 2
7213, // Mark of Ketra's Alliance - Level 3
7214, // Mark of Ketra's Alliance - Level 4
7215, // Mark of Ketra's Alliance - Level 5
};
// Skills
private static SkillHolder GOW = new SkillHolder(4547, 1); // Gaze of Watcher
private static SkillHolder DISPEL_GOW = new SkillHolder(4548, 1); // Quest - Dispel Watcher Gaze
// Misc
private static final int MIN_LEVEL = 74;
public Q00609_MagicalPowerOfWaterPart1()
{
super(609, Q00609_MagicalPowerOfWaterPart1.class.getSimpleName(), "Magical Power of Water - Part 1");
addStartNpc(WAHKAN);
addTalkId(ASEFA, WAHKAN, UDANS_BOX);
addAttackId(VARKA_MOBS);
registerQuestItems(STOLEN_GREEN_TOTEM);
}
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
final QuestState st = player.getQuestState(getName());
if (st == null)
{
return null;
}
String htmltext = null;
switch (event)
{
case "31371-02.html":
st.startQuest();
htmltext = event;
break;
case "open_box":
if (!st.hasQuestItems(KEY))
{
htmltext = "31561-02.html";
}
else if (st.isCond(2))
{
if (st.isSet("spawned"))
{
st.takeItems(KEY, 1);
htmltext = "31561-04.html";
}
else
{
st.giveItems(STOLEN_GREEN_TOTEM, 1);
st.takeItems(KEY, 1);
st.setCond(3, true);
htmltext = "31561-03.html";
}
}
break;
case "eye_despawn":
npc.broadcastPacket(new NpcSay(npc, Say2.NPC_ALL, NpcStringId.UDAN_HAS_ALREADY_SEEN_YOUR_FACE));
npc.deleteMe();
break;
}
return htmltext;
}
@Override
public String onAttack(L2Npc npc, L2PcInstance attacker, int damage, boolean isSummon)
{
final QuestState st = attacker.getQuestState(getName());
if ((st != null) && st.isCond(2) && !st.isSet("spawned"))
{
st.set("spawned", "1");
npc.setTarget(attacker);
npc.doCast(GOW.getSkill());
final L2Npc eye = addSpawn(UDANS_EYE, npc);
eye.broadcastPacket(new NpcSay(eye, Say2.NPC_ALL, NpcStringId.YOU_CANT_AVOID_THE_EYES_OF_UDAN));
startQuestTimer("eye_despawn", 10000, eye, attacker);
}
return super.onAttack(npc, attacker, damage, isSummon);
}
@Override
public String onTalk(L2Npc npc, L2PcInstance player)
{
String htmltext = getNoQuestMsg(player);
final QuestState st = player.getQuestState(getName());
if (st == null)
{
return htmltext;
}
switch (npc.getId())
{
case WAHKAN:
switch (st.getState())
{
case State.CREATED:
htmltext = (player.getLevel() >= MIN_LEVEL) ? (hasAtLeastOneQuestItem(player, KETRA_MARKS)) ? "31371-01.htm" : "31371-00a.html" : "31371-00b.html";
break;
case State.STARTED:
if (st.isCond(1))
{
htmltext = "31371-03.html";
}
break;
}
break;
case ASEFA:
if (st.isStarted())
{
switch (st.getCond())
{
case 1:
htmltext = "31372-01.html";
st.setCond(2, true);
break;
case 2:
if (st.isSet("spawned"))
{
st.unset("spawned");
npc.setTarget(player);
npc.doCast(DISPEL_GOW.getSkill());
htmltext = "31372-03.html";
}
else
{
htmltext = "31372-02.html";
}
break;
case 3:
st.giveItems(GREEN_TOTEM, 1);
st.giveItems(WISDOM_STONE, 1);
st.exitQuest(true, true);
htmltext = "31372-04.html";
break;
}
}
break;
case UDANS_BOX:
if (st.isCond(2))
{
htmltext = "31561-01.html";
}
break;
}
return htmltext;
}
}