ModernUO/Scripts/Items/Misc/PowerCrystal.cs
Kamron Batman 20ae1b3989
Fixes lots more spelling errors (#5)
* Renames constructable to constructible
* Fixes project references.
* Fixes BaseEquippableLight file name
* Replaces payed with paid.
* Fixes various other spelling errors
2018-02-20 16:01:41 -08:00

45 lines
No EOL
929 B
C#

using System;
using Server.Network;
namespace Server.Items
{
public class PowerCrystal : Item
{
public override string DefaultName
{
get { return "power crystal"; }
}
[Constructible]
public PowerCrystal() : base( 0x1F1C )
{
Weight = 1.0;
}
public PowerCrystal( Serial serial ) : base( serial )
{
}
public override void OnDoubleClick( Mobile from )
{
if ( !from.InRange( this.GetWorldLocation(), 3 ))
from.LocalOverheadMessage( MessageType.Regular, 0x3B2, 1019045 ); // I can't reach that.
else
from.SendAsciiMessage( "This looks like part of a larger contraption." );
}
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();
}
}
}