Files
abysmal-isle/Scripts/Mobiles/Normal/WhiteWolf.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

95 lines
2.3 KiB
C#

using System;
namespace Server.Mobiles
{
[CorpseName("a white wolf corpse")]
[TypeAlias("Server.Mobiles.Whitewolf")]
public class WhiteWolf : BaseCreature
{
[Constructable]
public WhiteWolf()
: base(AIType.AI_Animal, FightMode.Aggressor, 10, 1, 0.2, 0.4)
{
this.Name = "a white wolf";
this.Body = Utility.RandomList(34, 37);
this.BaseSoundID = 0xE5;
this.SetStr(56, 80);
this.SetDex(56, 75);
this.SetInt(31, 55);
this.SetHits(34, 48);
this.SetMana(0);
this.SetDamage(3, 7);
this.SetDamageType(ResistanceType.Physical, 100);
this.SetResistance(ResistanceType.Physical, 15, 20);
this.SetResistance(ResistanceType.Fire, 10, 15);
this.SetResistance(ResistanceType.Cold, 20, 25);
this.SetResistance(ResistanceType.Poison, 10, 15);
this.SetResistance(ResistanceType.Energy, 10, 15);
this.SetSkill(SkillName.MagicResist, 20.1, 35.0);
this.SetSkill(SkillName.Tactics, 45.1, 60.0);
this.SetSkill(SkillName.Wrestling, 45.1, 60.0);
this.Fame = 450;
this.Karma = 0;
this.VirtualArmor = 16;
this.Tamable = true;
this.ControlSlots = 1;
this.MinTameSkill = 65.1;
}
public WhiteWolf(Serial serial)
: base(serial)
{
}
public override int Meat
{
get
{
return 1;
}
}
public override int Hides
{
get
{
return 6;
}
}
public override FoodType FavoriteFood
{
get
{
return FoodType.Meat;
}
}
public override PackInstinct PackInstinct
{
get
{
return PackInstinct.Canine;
}
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write((int)0);
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
}