141 lines
3.7 KiB
C#
141 lines
3.7 KiB
C#
using System;
|
|
using Server.Items;
|
|
|
|
namespace Server.Engines.Quests
|
|
{
|
|
public class CulinaryCrisisQuest : BaseQuest
|
|
{
|
|
public CulinaryCrisisQuest()
|
|
: base()
|
|
{
|
|
this.AddObjective(new ObtainObjective(typeof(Dates), "bunch of dates", 20, 0x1727));
|
|
this.AddObjective(new ObtainObjective(typeof(CheeseWheel), "wheels of cheese", 5, 0x97E));
|
|
|
|
this.AddReward(new BaseReward(typeof(TreasureBag), 1072583));
|
|
}
|
|
|
|
/* Culinary Crisis */
|
|
public override object Title
|
|
{
|
|
get
|
|
{
|
|
return 1074755;
|
|
}
|
|
}
|
|
/* You have NO idea how impossible this is. Simply intolerable! How can one expect an artiste' like me to
|
|
create masterpieces of culinary delight without the best, fresh ingredients? Ever since this whositwhatsit
|
|
started this uproar, my thrice-daily produce deliveries have ended. I can't survive another hour without
|
|
produce! */
|
|
public override object Description
|
|
{
|
|
get
|
|
{
|
|
return 1074756;
|
|
}
|
|
}
|
|
/* You have no artistry in your soul. */
|
|
public override object Refuse
|
|
{
|
|
get
|
|
{
|
|
return 1074757;
|
|
}
|
|
}
|
|
/* I must have fresh produce and cheese at once! */
|
|
public override object Uncomplete
|
|
{
|
|
get
|
|
{
|
|
return 1074758;
|
|
}
|
|
}
|
|
/* Those dates look bruised! Oh no, and you fetched a soft cheese. *deep pained sigh* Well, even I can only
|
|
do so much with inferior ingredients. BAM! */
|
|
public override object Complete
|
|
{
|
|
get
|
|
{
|
|
return 1074759;
|
|
}
|
|
}
|
|
public override bool CanOffer()
|
|
{
|
|
return MondainsLegacy.Bedlam;
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.Write((int)0); // version
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
|
|
public class Emerillo : MondainQuester
|
|
{
|
|
[Constructable]
|
|
public Emerillo()
|
|
: base("Emerillo", "the cook")
|
|
{
|
|
}
|
|
|
|
public Emerillo(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override Type[] Quests
|
|
{
|
|
get
|
|
{
|
|
return new Type[]
|
|
{
|
|
typeof(CulinaryCrisisQuest)
|
|
};
|
|
}
|
|
}
|
|
public override void InitBody()
|
|
{
|
|
this.InitStats(100, 100, 25);
|
|
|
|
this.Female = false;
|
|
this.Race = Race.Human;
|
|
|
|
this.Hue = 0x83F4;
|
|
this.HairItemID = 0x203C;
|
|
this.HairHue = 0x454;
|
|
this.FacialHairItemID = 0x204C;
|
|
this.FacialHairHue = 0x454;
|
|
}
|
|
|
|
public override void InitOutfit()
|
|
{
|
|
this.AddItem(new Backpack());
|
|
this.AddItem(new Sandals(0x75D));
|
|
this.AddItem(new LongPants(0x529));
|
|
this.AddItem(new Shirt(0x38B));
|
|
this.AddItem(new HalfApron(0x8FD));
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.Write((int)0); // version
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
} |