Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
127
Scripts/Mobiles/NPCs/Alejaha.cs
Normal file
127
Scripts/Mobiles/NPCs/Alejaha.cs
Normal file
@@ -0,0 +1,127 @@
|
||||
using System;
|
||||
using Server.Items;
|
||||
using Server.Mobiles;
|
||||
|
||||
namespace Server.Engines.Quests
|
||||
{
|
||||
public class ItsElementalQuest : BaseQuest
|
||||
{
|
||||
public ItsElementalQuest()
|
||||
: base()
|
||||
{
|
||||
this.AddObjective(new SlayObjective(typeof(FireElemental), "fire elementals", 4));
|
||||
this.AddObjective(new SlayObjective(typeof(WaterElemental), "water elementals", 4));
|
||||
this.AddObjective(new SlayObjective(typeof(EarthElemental), "earth elementals", 4));
|
||||
|
||||
this.AddReward(new BaseReward(typeof(TreasureBag), 1072583));
|
||||
}
|
||||
|
||||
/* It's Elemental */
|
||||
public override object Title
|
||||
{
|
||||
get
|
||||
{
|
||||
return 1073089;
|
||||
}
|
||||
}
|
||||
/* The universe is all about balance my friend. Tip one end, you must balance the other. That's
|
||||
why I must ask you to kill not just one kind of elemental, but three kinds. Snuff out some Fire,
|
||||
douse a few Water, and crush some Earth elementals and I'll pay you for your trouble. */
|
||||
public override object Description
|
||||
{
|
||||
get
|
||||
{
|
||||
return 1073579;
|
||||
}
|
||||
}
|
||||
/* I hope you'll reconsider. Until then, farwell. */
|
||||
public override object Refuse
|
||||
{
|
||||
get
|
||||
{
|
||||
return 1073580;
|
||||
}
|
||||
}
|
||||
/* Four of each, that's all I ask. Water, earth and fire. */
|
||||
public override object Uncomplete
|
||||
{
|
||||
get
|
||||
{
|
||||
return 1073599;
|
||||
}
|
||||
}
|
||||
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 Alejaha : MondainQuester
|
||||
{
|
||||
[Constructable]
|
||||
public Alejaha()
|
||||
: base("Elder Alejaha", "the wise")
|
||||
{
|
||||
this.SetSkill(SkillName.Meditation, 60.0, 83.0);
|
||||
this.SetSkill(SkillName.Focus, 60.0, 83.0);
|
||||
}
|
||||
|
||||
public Alejaha(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override Type[] Quests
|
||||
{
|
||||
get
|
||||
{
|
||||
return new Type[]
|
||||
{
|
||||
typeof(ItsElementalQuest)
|
||||
};
|
||||
}
|
||||
}
|
||||
public override void InitBody()
|
||||
{
|
||||
this.InitStats(100, 100, 25);
|
||||
|
||||
this.Female = true;
|
||||
this.Race = Race.Elf;
|
||||
|
||||
this.Hue = 0x8361;
|
||||
this.HairItemID = 0x2FCD;
|
||||
this.HairHue = 0x852;
|
||||
}
|
||||
|
||||
public override void InitOutfit()
|
||||
{
|
||||
this.AddItem(new Sandals(0x1BB));
|
||||
this.AddItem(new Cloak(0x59));
|
||||
this.AddItem(new Skirt(0x901));
|
||||
this.AddItem(new GemmedCirclet());
|
||||
}
|
||||
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user