147 lines
3.3 KiB
C#
147 lines
3.3 KiB
C#
using Server.Mobiles;
|
|
using Server.Items;
|
|
|
|
namespace Server.Engines.Quests.Ambitious
|
|
{
|
|
public class KillQueensObjective : QuestObjective
|
|
{
|
|
public override object Message => ((AmbitiousQueenQuest)System).RedSolen ? 1054062 : 1054063;
|
|
|
|
public override int MaxProgress => 5;
|
|
|
|
public KillQueensObjective()
|
|
{
|
|
}
|
|
|
|
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, false, false );
|
|
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;
|
|
else
|
|
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 ReturnAfterKillsObjective()
|
|
{
|
|
}
|
|
|
|
public override void OnComplete()
|
|
{
|
|
System.AddConversation( new GatherFungiConversation() );
|
|
}
|
|
}
|
|
|
|
public class GatherFungiObjective : QuestObjective
|
|
{
|
|
public override object Message => 1054069;
|
|
|
|
public GatherFungiObjective()
|
|
{
|
|
}
|
|
|
|
public override void OnComplete()
|
|
{
|
|
System.AddConversation( new EndConversation() );
|
|
}
|
|
}
|
|
|
|
public class GetRewardObjective : QuestObjective
|
|
{
|
|
public override object Message => 1054148;
|
|
|
|
private bool m_BagOfSending;
|
|
private bool m_PowderOfTranslocation;
|
|
private bool m_Gold;
|
|
|
|
public bool BagOfSending{ get => m_BagOfSending;
|
|
set => m_BagOfSending = value;
|
|
}
|
|
public bool PowderOfTranslocation{ get => m_PowderOfTranslocation;
|
|
set => m_PowderOfTranslocation = value;
|
|
}
|
|
public bool Gold{ get => m_Gold;
|
|
set => m_Gold = value;
|
|
}
|
|
|
|
public GetRewardObjective( bool bagOfSending, bool powderOfTranslocation, bool gold)
|
|
{
|
|
m_BagOfSending = bagOfSending;
|
|
m_PowderOfTranslocation = powderOfTranslocation;
|
|
m_Gold = gold;
|
|
}
|
|
|
|
public GetRewardObjective()
|
|
{
|
|
}
|
|
|
|
public override void OnComplete()
|
|
{
|
|
System.AddConversation( new End2Conversation() );
|
|
}
|
|
|
|
public override void ChildDeserialize( GenericReader reader )
|
|
{
|
|
int version = reader.ReadEncodedInt();
|
|
|
|
m_BagOfSending = reader.ReadBool();
|
|
m_PowderOfTranslocation = reader.ReadBool();
|
|
m_Gold = reader.ReadBool();
|
|
}
|
|
|
|
public override void ChildSerialize( GenericWriter writer )
|
|
{
|
|
writer.WriteEncodedInt( (int) 0 ); // version
|
|
|
|
writer.Write( (bool) m_BagOfSending );
|
|
writer.Write( (bool) m_PowderOfTranslocation );
|
|
writer.Write( (bool) m_Gold );
|
|
}
|
|
}
|
|
}
|