73 lines
No EOL
1.6 KiB
C#
73 lines
No EOL
1.6 KiB
C#
using System;
|
|
using Server.Items;
|
|
using Server.Mobiles;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
[CorpseName( "a giant serpent corpse" )]
|
|
[TypeAlias( "Server.Mobiles.Serpant" )]
|
|
public class Cobra : BaseCreature
|
|
{
|
|
[Constructable]
|
|
public Cobra() : base( AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4 )
|
|
{
|
|
Name = "a cobra";
|
|
Body = 21;
|
|
Hue = Utility.RandomYellowHue();
|
|
BaseSoundID = 219;
|
|
|
|
SetStr( 186, 215 );
|
|
SetDex( 56, 80 );
|
|
SetInt( 66, 85 );
|
|
|
|
SetHits( 112, 129 );
|
|
SetMana( 0 );
|
|
|
|
SetDamage( 7, 17 );
|
|
|
|
SetSkill( SkillName.Poisoning, 70.1, 100.0 );
|
|
SetSkill( SkillName.MagicResist, 25.1, 40.0 );
|
|
SetSkill( SkillName.Tactics, 65.1, 70.0 );
|
|
SetSkill( SkillName.HandToHand, 60.1, 80.0 );
|
|
|
|
Fame = 2500;
|
|
Karma = -2500;
|
|
|
|
VirtualArmor = 32;
|
|
|
|
PackItem( new Bone() );
|
|
}
|
|
|
|
public override void GenerateLoot()
|
|
{
|
|
AddLoot( LootPack.Average );
|
|
}
|
|
|
|
public override Poison PoisonImmune{ get{ return Poison.Greater; } }
|
|
public override Poison HitPoison{ get{ return (0.8 >= Utility.RandomDouble() ? Poison.Greater : Poison.Deadly); } }
|
|
|
|
public override int Meat{ get{ return 4; } }
|
|
public override int Hides{ get{ return 15; } }
|
|
|
|
public Cobra(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();
|
|
|
|
if ( BaseSoundID == -1 )
|
|
BaseSoundID = 219;
|
|
}
|
|
}
|
|
} |