60 lines
No EOL
1.2 KiB
C#
60 lines
No EOL
1.2 KiB
C#
using System;
|
|
using Server.Mobiles;
|
|
|
|
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 )
|
|
{
|
|
Name = "a white wolf";
|
|
Body = 225;
|
|
|
|
Hue = Utility.RandomList( 2301, 1154 );
|
|
|
|
BaseSoundID = 0xE5;
|
|
|
|
SetStr( 56, 80 );
|
|
SetDex( 56, 75 );
|
|
SetInt( 31, 55 );
|
|
|
|
SetHits( 34, 48 );
|
|
SetMana( 0 );
|
|
|
|
SetDamage( 3, 7 );
|
|
|
|
SetSkill( SkillName.MagicResist, 20.1, 35.0 );
|
|
SetSkill( SkillName.Tactics, 45.1, 60.0 );
|
|
SetSkill( SkillName.HandToHand, 45.1, 60.0 );
|
|
|
|
Fame = 450;
|
|
Karma = 0;
|
|
|
|
VirtualArmor = 16;
|
|
}
|
|
|
|
public override int Meat{ get{ return 1; } }
|
|
public override int Hides{ get{ return 6; } }
|
|
|
|
public WhiteWolf( Serial serial ) : base( serial )
|
|
{
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|
|
} |