Updated quest Request to Seal the Evil Fragment (10328).

Contributed by gyo.
This commit is contained in:
MobiusDev
2016-01-20 11:44:24 +00:00
parent da1f61fd8e
commit faf6acd9f9
6 changed files with 10 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
<html><head><body>Pa'agrio Lord Kakai:<br> <html><body>Pa'agrio Lord Kakai:<br>
Whoa! Step back a bit, that's one potent and nasty Evil Fragment you've got there. From Pantheon, huh? What does he want me to do with it?<br> Whoa! Step back a bit, that's one potent and nasty Evil Fragment you've got there. From Pantheon, huh? What does he want me to do with it?<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 30565-03.html">"He wants you to seal this."</Button> <Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 30565-03.html">"He wants you to seal this."</Button>
</body></html> </body></html>

View File

@@ -1,4 +1,4 @@
<html><head><body>Pantheon:<br> <html><body>Pantheon:<br>
It's an Evil Fragment. Our research has shown that by itself it is completely harmless.<br> It's an Evil Fragment. Our research has shown that by itself it is completely harmless.<br>
However, when they incubate in the corpses buried under Ye Sagira they create horrible creatures.<br> However, when they incubate in the corpses buried under Ye Sagira they create horrible creatures.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 32972-03.htm">"Well that's disgusting. What do you want me to do with it?"</Button> <Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10328_RequestToSealTheEvilFragment 32972-03.htm">"Well that's disgusting. What do you want me to do with it?"</Button>

View File

@@ -1,3 +1,3 @@
<html><body>Pantheon:<br> <html><body>Pantheon:<br>
If the fragment hatches in the museum, it'ill be a complete disaster! Go to <font color="LEVEL">Pa'agrio Lord Kakai</font> in the <font color="LEVEL">Administration Office</font> and have him destroy it! If the fragment hatches in the museum, it'll be a complete disaster! Go to <font color="LEVEL">Pa'agrio Lord Kakai</font> in the <font color="LEVEL">Administration Office</font> and have him destroy it!
</body></html> </body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Pantheon:<br> <html><body>Pantheon:<br>
I'm sorry. The time hasn't come for you.<br> I'm sorry. The time hasn't yet come for you. <br>
(Only characters under level 20, who have completed the "Looking for New Power" quest, may start this quest.) (Only characters under level 20, who have completed the "Looking for New Power" quest, may start this quest)
</body></html> </body></html>

View File

@@ -1,4 +1,4 @@
<html><body>Pantheon:<br> <html><body>Pantheon:<br>
Evil Fragment is a walking corpse! It's horriable, don't you think?<br> Evil Fragment is a walking corpse! It's horrible, don't you think? <br>
(You have already completed this quest.) (You have already completed this quest)
</body></html> </body></html>

View File

@@ -32,10 +32,8 @@ public final class Q10328_RequestToSealTheEvilFragment extends Quest
// Npcs // Npcs
private static final int PANTHEON = 32972; private static final int PANTHEON = 32972;
private static final int KAKAI = 30565; private static final int KAKAI = 30565;
// Item
// Items
private static final int EVIL_FRAGMENT = 17577; private static final int EVIL_FRAGMENT = 17577;
// Level Condition // Level Condition
private static final int MAX_LEVEL = 20; private static final int MAX_LEVEL = 20;
@@ -44,9 +42,9 @@ public final class Q10328_RequestToSealTheEvilFragment extends Quest
super(10328, Q10328_RequestToSealTheEvilFragment.class.getSimpleName(), "Request to Seal the Evil Fragment"); super(10328, Q10328_RequestToSealTheEvilFragment.class.getSimpleName(), "Request to Seal the Evil Fragment");
addStartNpc(PANTHEON); addStartNpc(PANTHEON);
addTalkId(PANTHEON, KAKAI); addTalkId(PANTHEON, KAKAI);
addCondMaxLevel(MAX_LEVEL, "32972-06.html"); addCondMaxLevel(MAX_LEVEL, "32972-06.htm");
registerQuestItems(EVIL_FRAGMENT); registerQuestItems(EVIL_FRAGMENT);
addCondCompletedQuest(Q10327_IntruderWhoWantsTheBookOfGiants.class.getSimpleName(), "32972-06.html"); addCondCompletedQuest(Q10327_IntruderWhoWantsTheBookOfGiants.class.getSimpleName(), "32972-06.htm");
} }
@Override @Override