142 lines
3.8 KiB
C#
142 lines
3.8 KiB
C#
using System;
|
|
using Server.Items;
|
|
using Server.Mobiles;
|
|
|
|
namespace Server.Engines.Quests
|
|
{
|
|
public class DreadhornQuest : BaseQuest
|
|
{
|
|
public DreadhornQuest()
|
|
: base()
|
|
{
|
|
this.AddObjective(new SlayObjective(typeof(DreadHorn), "dread horn", 1));
|
|
|
|
this.AddReward(new BaseReward(typeof(RewardBox), 1072584));
|
|
}
|
|
|
|
/* Dreadhorn */
|
|
public override object Title
|
|
{
|
|
get
|
|
{
|
|
return 1074645;
|
|
}
|
|
}
|
|
/* Can you comprehend it? I cannot, I confess. The most pristine and perfect Lord of Sosaria
|
|
has fallen prey to the blight. From the depths of my heart I mourn his corruption; my thoughts
|
|
are filled with pity for this glorious creature now tainted. And my blood boils with fury at
|
|
those responsible for the innocent creature's undoing. Will you find Dread Horn, as he is now
|
|
called, and free him from this misery? */
|
|
public override object Description
|
|
{
|
|
get
|
|
{
|
|
return 1074646;
|
|
}
|
|
}
|
|
/* How can you not feel as I do? */
|
|
public override object Refuse
|
|
{
|
|
get
|
|
{
|
|
return 1074647;
|
|
}
|
|
}
|
|
/* The lush and fertile land where Dread Horn now lives is twisted and tainted, a result of his
|
|
corruption. The fey folk have sealed the land off through their magics, but you can enter through
|
|
an enchanted mushroom fairy circle. */
|
|
public override object Uncomplete
|
|
{
|
|
get
|
|
{
|
|
return 1074648;
|
|
}
|
|
}
|
|
/* Thank you. I haven't the words to express my gratitude. */
|
|
public override object Complete
|
|
{
|
|
get
|
|
{
|
|
return 1074649;
|
|
}
|
|
}
|
|
public override bool CanOffer()
|
|
{
|
|
return MondainsLegacy.TwistedWeald;
|
|
}
|
|
|
|
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 Calendor : MondainQuester
|
|
{
|
|
[Constructable]
|
|
public Calendor()
|
|
: base("Lorekeeper Calendor", "the keeper of tradition")
|
|
{
|
|
this.SetSkill(SkillName.Meditation, 60.0, 83.0);
|
|
this.SetSkill(SkillName.Focus, 60.0, 83.0);
|
|
}
|
|
|
|
public Calendor(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override Type[] Quests
|
|
{
|
|
get
|
|
{
|
|
return new Type[]
|
|
{
|
|
typeof(DreadhornQuest)
|
|
};
|
|
}
|
|
}
|
|
public override void InitBody()
|
|
{
|
|
this.InitStats(100, 100, 25);
|
|
|
|
this.Female = true;
|
|
this.Race = Race.Elf;
|
|
|
|
this.Hue = 0x847E;
|
|
this.HairItemID = 0x2FD0;
|
|
this.HairHue = 0x1F2;
|
|
}
|
|
|
|
public override void InitOutfit()
|
|
{
|
|
this.AddItem(new ElvenBoots(0x65A));
|
|
this.AddItem(new ElvenShirt(0x728));
|
|
this.AddItem(new Kilt(0x1BB));
|
|
this.AddItem(new RoyalCirclet());
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|
|
} |