Converting Ertheia quests to follow showHtmlFile logic.
This commit is contained in:
@@ -3,5 +3,5 @@ Growlers are mushroom spirits. They used to be cute and calm spirits, but one th
|
||||
Oh, my, I'm rambling again. So, about these <font color="LEVEL">unusual mushrooms spirit.</font><br>
|
||||
All the Growlers living in their habitat are the same color. But recently, I was out searching for Ricky when I came across a Growler that was a different color from the rest.
|
||||
What if that particular Growler is poisonous? Ricky could get hurt! Please go see if that Growler is poisonous!<br>
|
||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10743_StrangeFungus 33952-03.htm">"All right, don'tt worry."</button>
|
||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10743_StrangeFungus 33952-03.html">"All right, don'tt worry."</button>
|
||||
</body></html>
|
@@ -1,5 +1,5 @@
|
||||
<html><body>Forest Patrol Milone:<br>
|
||||
Growlers are very sensitive spirits. I don't know what caused the Dimensional Rift. But I will never forgive whoever caused this.<br>
|
||||
I'm sorry, was I making you nervous? I wasn't talking to you. What brings you all the way in here?<br>
|
||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10743_StrangeFungus 33953-02.htm">"I have some Mushroom Spores."</button>
|
||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10743_StrangeFungus 33953-02.html">"I have some Mushroom Spores."</button>
|
||||
</body></html>
|
@@ -2,5 +2,5 @@
|
||||
They are Growler's spores. The color is different, but I'm sure they are Growler's spores.<br>
|
||||
The Growlers are adjusting to the Material Realm, which causes other kinds of Growlers to be found. This must be one of those Growler's spores.<br>
|
||||
I see that everyone is getting scared with the new appearance of the Growlers, but there's no need to be. They are just tougher Growlers of a different color. But why give this to me?
|
||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10743_StrangeFungus 33953-03.htm">"Leira asked about its toxicity."</button>
|
||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10743_StrangeFungus 33953-03.html">"Leira asked about its toxicity."</button>
|
||||
</body></html>
|
@@ -52,7 +52,7 @@ public class Q10743_StrangeFungus extends Quest
|
||||
addTalkId(LEIRA, MILONE);
|
||||
addKillId(GROWLER, ROBUST_GROWLER, EVOLVED_GROWLER);
|
||||
registerQuestItems(PECULIAR_MUSHROOM_SPORE);
|
||||
addCondLevel(MIN_LEVEL, MAX_LEVEL, "fixme.htm");
|
||||
addCondLevel(MIN_LEVEL, MAX_LEVEL, "fixme.html");
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -68,18 +68,18 @@ public class Q10743_StrangeFungus extends Quest
|
||||
switch (event)
|
||||
{
|
||||
case "33952-02.htm":
|
||||
case "33953-02.htm":
|
||||
case "33953-02.html":
|
||||
{
|
||||
htmltext = event;
|
||||
break;
|
||||
}
|
||||
case "33952-03.htm":
|
||||
case "33952-03.html":
|
||||
{
|
||||
qs.startQuest();
|
||||
htmltext = event;
|
||||
break;
|
||||
}
|
||||
case "33953-03.htm":
|
||||
case "33953-03.html":
|
||||
{
|
||||
if (qs.isCond(2))
|
||||
{
|
||||
@@ -117,7 +117,7 @@ public class Q10743_StrangeFungus extends Quest
|
||||
}
|
||||
else if (qs.isStarted())
|
||||
{
|
||||
htmltext = "33952-03.htm";
|
||||
htmltext = "33952-03.html";
|
||||
}
|
||||
break;
|
||||
}
|
||||
@@ -125,7 +125,7 @@ public class Q10743_StrangeFungus extends Quest
|
||||
{
|
||||
if (qs.isCond(2))
|
||||
{
|
||||
htmltext = "33953-01.htm";
|
||||
htmltext = "33953-01.html";
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user