62 lines
No EOL
1.3 KiB
C#
62 lines
No EOL
1.3 KiB
C#
using System;
|
|
using Server;
|
|
using Server.Items;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
[CorpseName( "a gazer corpse" )]
|
|
public class ElderGazer : BaseCreature
|
|
{
|
|
[Constructable]
|
|
public ElderGazer () : base( AIType.AI_Mage, FightMode.Closest, 10, 1, 0.2, 0.4 )
|
|
{
|
|
Name = "an elder gazer";
|
|
Body = 317;
|
|
BaseSoundID = 377;
|
|
AnimationMod = 3;
|
|
|
|
SetStr( 296, 325 );
|
|
SetDex( 86, 105 );
|
|
SetInt( 291, 385 );
|
|
|
|
SetHits( 178, 195 );
|
|
|
|
SetDamage( 8, 19 );
|
|
|
|
SetSkill( SkillName.Concentration, 90.1, 100.0 );
|
|
SetSkill( SkillName.Magery, 90.1, 100.0 );
|
|
SetSkill( SkillName.MagicResist, 115.1, 130.0 );
|
|
SetSkill( SkillName.Tactics, 80.1, 100.0 );
|
|
SetSkill( SkillName.HandToHand, 80.1, 100.0 );
|
|
|
|
Fame = 12500;
|
|
Karma = -12500;
|
|
|
|
VirtualArmor = 50;
|
|
|
|
PackItem( new Nightshade( 16 ) );
|
|
}
|
|
|
|
public override void GenerateLoot()
|
|
{
|
|
AddLoot( LootPack.FilthyRich );
|
|
AddLoot( LootPack.MedPotions );
|
|
}
|
|
|
|
public ElderGazer( 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();
|
|
}
|
|
}
|
|
} |