103 lines
No EOL
2.2 KiB
C#
103 lines
No EOL
2.2 KiB
C#
using System;
|
|
using Server;
|
|
using Server.Items;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
[CorpseName( "a sand vortex corpse" )]
|
|
public class SandVortex : BaseCreature
|
|
{
|
|
[Constructable]
|
|
public SandVortex() : base( AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4 )
|
|
{
|
|
Name = "a sand vortex";
|
|
Body = 13;
|
|
Hue = 2309;
|
|
BaseSoundID = 263;
|
|
|
|
SetStr( 96, 120 );
|
|
SetDex( 171, 195 );
|
|
SetInt( 76, 100 );
|
|
|
|
SetHits( 51, 62 );
|
|
|
|
SetDamage( 3, 16 );
|
|
|
|
SetSkill( SkillName.MagicResist, 150.0 );
|
|
SetSkill( SkillName.Tactics, 70.0 );
|
|
SetSkill( SkillName.HandToHand, 80.0 );
|
|
|
|
Fame = 4500;
|
|
Karma = -4500;
|
|
|
|
VirtualArmor = 28;
|
|
PackItem( new Bone() );
|
|
}
|
|
|
|
public override void GenerateLoot()
|
|
{
|
|
AddLoot( LootPack.Meager, 2 );
|
|
}
|
|
|
|
private DateTime m_NextAttack;
|
|
|
|
public override void OnActionCombat()
|
|
{
|
|
Mobile combatant = Combatant;
|
|
|
|
if ( combatant == null || combatant.Deleted || combatant.Map != Map || !InRange( combatant, 12 ) || !CanBeHarmful( combatant ) || !InLOS( combatant ) )
|
|
return;
|
|
|
|
if ( DateTime.Now >= m_NextAttack )
|
|
{
|
|
SandAttack( combatant );
|
|
m_NextAttack = DateTime.Now + TimeSpan.FromSeconds( 10.0 + (10.0 * Utility.RandomDouble()) );
|
|
}
|
|
}
|
|
|
|
public void SandAttack( Mobile m )
|
|
{
|
|
DoHarmful( m );
|
|
|
|
m.FixedParticles( 0x36B0, 10, 25, 9540, 2413, 0, EffectLayer.Waist );
|
|
|
|
new InternalTimer( m, this ).Start();
|
|
}
|
|
|
|
private class InternalTimer : Timer
|
|
{
|
|
private Mobile m_Mobile, m_From;
|
|
|
|
public InternalTimer( Mobile m, Mobile from ) : base( TimeSpan.FromSeconds( 1.0 ) )
|
|
{
|
|
m_Mobile = m;
|
|
m_From = from;
|
|
Priority = TimerPriority.TwoFiftyMS;
|
|
}
|
|
|
|
protected override void OnTick()
|
|
{
|
|
m_Mobile.PlaySound( 0x4CF );
|
|
Ultima.Damage( m_Mobile, m_From, Utility.RandomMinMax( 1, 40 ) );
|
|
}
|
|
}
|
|
|
|
public SandVortex( Serial serial ) : base( serial )
|
|
{
|
|
}
|
|
|
|
public override void Serialize( GenericWriter writer )
|
|
{
|
|
base.Serialize( writer );
|
|
|
|
writer.Write( (int) 0 ); // version
|
|
}
|
|
|
|
public override void Deserialize( GenericReader reader )
|
|
{
|
|
base.Deserialize( reader );
|
|
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
} |