95 lines
2.3 KiB
C#
95 lines
2.3 KiB
C#
using System;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
[CorpseName("a grey wolf corpse")]
|
|
[TypeAlias("Server.Mobiles.Greywolf")]
|
|
public class GreyWolf : BaseCreature
|
|
{
|
|
[Constructable]
|
|
public GreyWolf()
|
|
: base(AIType.AI_Animal, FightMode.Aggressor, 10, 1, 0.2, 0.4)
|
|
{
|
|
this.Name = "a grey wolf";
|
|
this.Body = Utility.RandomList(25, 27);
|
|
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 = 53.1;
|
|
}
|
|
|
|
public GreyWolf(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();
|
|
}
|
|
}
|
|
} |