Files
abysmal-isle/Scripts/Mobiles/Normal/DesertOstard.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

86 lines
2.0 KiB
C#

using System;
namespace Server.Mobiles
{
[CorpseName("an ostard corpse")]
public class DesertOstard : BaseMount
{
[Constructable]
public DesertOstard()
: this("a desert ostard")
{
}
[Constructable]
public DesertOstard(string name)
: base(name, 0xD2, 0x3EA3, AIType.AI_Animal, FightMode.Aggressor, 10, 1, 0.2, 0.4)
{
this.BaseSoundID = 0x270;
this.SetStr(94, 170);
this.SetDex(56, 75);
this.SetInt(6, 10);
this.SetHits(71, 88);
this.SetMana(0);
this.SetDamage(5, 11);
this.SetDamageType(ResistanceType.Physical, 100);
this.SetResistance(ResistanceType.Physical, 15, 20);
this.SetResistance(ResistanceType.Fire, 5, 15);
this.SetSkill(SkillName.MagicResist, 25.1, 30.0);
this.SetSkill(SkillName.Tactics, 25.3, 40.0);
this.SetSkill(SkillName.Wrestling, 29.3, 44.0);
this.Fame = 450;
this.Karma = 0;
this.Tamable = true;
this.ControlSlots = 1;
this.MinTameSkill = 29.1;
}
public DesertOstard(Serial serial)
: base(serial)
{
}
public override int Meat
{
get
{
return 3;
}
}
public override FoodType FavoriteFood
{
get
{
return FoodType.FruitsAndVegies | FoodType.GrainsAndHay;
}
}
public override PackInstinct PackInstinct
{
get
{
return PackInstinct.Ostard;
}
}
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();
}
}
}