ModernUO/Projects/Scripts/Engines/Quests/Ambitious Solen Queen/Objectives.cs
2019-08-02 18:16:11 -07:00

127 lines
No EOL
3.1 KiB
C#

using Server.Items;
using Server.Mobiles;
namespace Server.Engines.Quests.Ambitious
{
public class KillQueensObjective : QuestObjective
{
public override object Message => ((AmbitiousQueenQuest)System).RedSolen ? 1054062 : 1054063;
public override int MaxProgress => 5;
public override void RenderProgress(BaseQuestGump gump)
{
if (!Completed)
{
// Red/Black Solen Queens killed:
gump.AddHtmlLocalized(70, 260, 270, 100, ((AmbitiousQueenQuest)System).RedSolen ? 1054064 : 1054065,
BaseQuestGump.Blue);
gump.AddLabel(70, 280, 0x64, CurProgress.ToString());
gump.AddLabel(100, 280, 0x64, "/");
gump.AddLabel(130, 280, 0x64, MaxProgress.ToString());
}
else
{
base.RenderProgress(gump);
}
}
public override bool IgnoreYoungProtection(Mobile from)
{
if (Completed)
return false;
bool redSolen = ((AmbitiousQueenQuest)System).RedSolen;
if (redSolen)
return from is RedSolenQueen;
return from is BlackSolenQueen;
}
public override void OnKill(BaseCreature creature, Container corpse)
{
bool redSolen = ((AmbitiousQueenQuest)System).RedSolen;
if (redSolen)
{
if (creature is RedSolenQueen)
CurProgress++;
}
else
{
if (creature is BlackSolenQueen)
CurProgress++;
}
}
public override void OnComplete()
{
System.AddObjective(new ReturnAfterKillsObjective());
}
}
public class ReturnAfterKillsObjective : QuestObjective
{
public override object Message => 1054067;
public override void OnComplete()
{
System.AddConversation(new GatherFungiConversation());
}
}
public class GatherFungiObjective : QuestObjective
{
public override object Message => 1054069;
public override void OnComplete()
{
System.AddConversation(new EndConversation());
}
}
public class GetRewardObjective : QuestObjective
{
public GetRewardObjective(bool bagOfSending, bool powderOfTranslocation, bool gold)
{
BagOfSending = bagOfSending;
PowderOfTranslocation = powderOfTranslocation;
Gold = gold;
}
public GetRewardObjective()
{
}
public override object Message => 1054148;
public bool BagOfSending{ get; set; }
public bool PowderOfTranslocation{ get; set; }
public bool Gold{ get; set; }
public override void OnComplete()
{
System.AddConversation(new End2Conversation());
}
public override void ChildDeserialize(GenericReader reader)
{
int version = reader.ReadEncodedInt();
BagOfSending = reader.ReadBool();
PowderOfTranslocation = reader.ReadBool();
Gold = reader.ReadBool();
}
public override void ChildSerialize(GenericWriter writer)
{
writer.WriteEncodedInt(0); // version
writer.Write(BagOfSending);
writer.Write(PowderOfTranslocation);
writer.Write(Gold);
}
}
}