66 lines
1.8 KiB
C#
66 lines
1.8 KiB
C#
using ModernUO.Serialization;
|
|
using System.Collections.Generic;
|
|
using Server.Items;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
[SerializationGenerator(0, false)]
|
|
public partial class HolyMage : BaseVendor
|
|
{
|
|
private readonly List<SBInfo> m_SBInfos = new();
|
|
|
|
[Constructible]
|
|
public HolyMage() : base("the Holy Mage")
|
|
{
|
|
SetSkill(SkillName.EvalInt, 65.0, 88.0);
|
|
SetSkill(SkillName.Inscribe, 60.0, 83.0);
|
|
SetSkill(SkillName.Magery, 64.0, 100.0);
|
|
SetSkill(SkillName.Meditation, 60.0, 83.0);
|
|
SetSkill(SkillName.MagicResist, 65.0, 88.0);
|
|
SetSkill(SkillName.Wrestling, 36.0, 68.0);
|
|
}
|
|
|
|
protected override List<SBInfo> SBInfos => m_SBInfos;
|
|
|
|
public override void InitSBInfo()
|
|
{
|
|
m_SBInfos.Add(new SBHolyMage());
|
|
}
|
|
|
|
public Item ApplyHue(Item item, int hue)
|
|
{
|
|
item.Hue = hue;
|
|
|
|
return item;
|
|
}
|
|
|
|
public override void InitOutfit()
|
|
{
|
|
AddItem(ApplyHue(new Robe(), 0x47E));
|
|
AddItem(ApplyHue(new ThighBoots(), 0x47E));
|
|
AddItem(ApplyHue(new BlackStaff(), 0x47E));
|
|
|
|
if (Female)
|
|
{
|
|
AddItem(ApplyHue(new LeatherGloves(), 0x47E));
|
|
AddItem(ApplyHue(new GoldNecklace(), 0x47E));
|
|
}
|
|
else
|
|
{
|
|
AddItem(ApplyHue(new PlateGloves(), 0x47E));
|
|
AddItem(ApplyHue(new PlateGorget(), 0x47E));
|
|
}
|
|
|
|
HairItemID = Utility.Random(Female ? 2 : 1) switch
|
|
{
|
|
0 => 0x203C,
|
|
1 => 0x203D,
|
|
_ => HairItemID
|
|
};
|
|
|
|
HairHue = 0x47E;
|
|
|
|
PackGold(100, 200);
|
|
}
|
|
}
|
|
}
|