BritainKnights/Scripts/Mobiles/Bugs/Kith.cs

65 lines
No EOL
1.4 KiB
C#

using System;
using Server.Items;
using Server.Targeting;
using System.Collections;
namespace Server.Mobiles
{
[CorpseName( "a spider corpse" )]
public class Kith : BaseCreature
{
[Constructable]
public Kith() : base( AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4 )
{
Name = "a kith";
Body = 148;
BaseSoundID = 0x4F0;
SetStr( 236, 285 );
SetDex( 96, 115 );
SetInt( 31, 55 );
SetHits( 202, 231 );
SetMana( 0 );
SetDamage( 9, 18 );
SetSkill( SkillName.Poisoning, 60.1, 80.0 );
SetSkill( SkillName.MagicResist, 60.3, 105.0 );
SetSkill( SkillName.Tactics, 80.1, 100.0 );
SetSkill( SkillName.HandToHand, 80.1, 90.0 );
Fame = 5500;
Karma = -5500;
VirtualArmor = 48;
PackItem( new SpidersSilk( Utility.RandomMinMax( 20, 35 ) ) );
PackItem( new GreaterPoisonPotion() );
}
public override void GenerateLoot()
{
AddLoot( LootPack.Average, 2 );
}
public override Poison PoisonImmune{ get{ return Poison.Lethal; } }
public override Poison HitPoison{ get{ return Poison.Lethal; } }
public Kith( 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();
}
}
}