mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
* OCT17 Minor gump cleanup and XML cleanup. * Improvements - Skill Gain is no longer redundantly checked against the same values inside of XMLSpawner. - AI_Animal (which was not used and just defaulted to AI_Melee) along with AI_Beserk, AI_Predator, and AI_Thief have been safely removed. - ItemFlags.cs has been moved from XMLSpawner to MISC. - Removed some misc double calls. * Needed for recent AI fix. * Item Fix
60 lines
1.5 KiB
C#
60 lines
1.5 KiB
C#
namespace Server.Mobiles
|
|
{
|
|
[CorpseName("a dog corpse")]
|
|
public class Dog : BaseCreature
|
|
{
|
|
[Constructable]
|
|
public Dog()
|
|
: base(AIType.AI_Melee, FightMode.Aggressor, 10, 1, 0.2, 0.4)
|
|
{
|
|
Name = "a dog";
|
|
Body = 0xD9;
|
|
Hue = Utility.RandomAnimalHue();
|
|
BaseSoundID = 0x85;
|
|
|
|
SetStr(27, 37);
|
|
SetDex(28, 43);
|
|
SetInt(29, 37);
|
|
|
|
SetHits(17, 22);
|
|
SetMana(0);
|
|
|
|
SetDamage(4, 7);
|
|
|
|
SetDamageType(ResistanceType.Physical, 100);
|
|
|
|
SetResistance(ResistanceType.Physical, 10, 15);
|
|
|
|
SetSkill(SkillName.MagicResist, 22.1, 47.0);
|
|
SetSkill(SkillName.Tactics, 19.2, 31.0);
|
|
SetSkill(SkillName.Wrestling, 19.2, 31.0);
|
|
|
|
Fame = 0;
|
|
Karma = 300;
|
|
|
|
Tamable = true;
|
|
ControlSlots = 1;
|
|
MinTameSkill = -21.3;
|
|
}
|
|
|
|
public Dog(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override int Meat => 1;
|
|
public override FoodType FavoriteFood => FoodType.Meat;
|
|
public override PackInstinct PackInstinct => PackInstinct.Canine;
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
writer.Write(1);
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
}
|