ModernUO/Scripts/Items/Aquarium/VacationWafer.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

46 lines
946 B
C#

using System;
using Server;
using Server.Mobiles;
namespace Server.Items
{
public class VacationWafer : Item
{
public const int VacationDays = 7;
public override int LabelNumber{ get{ return 1074431; } } // An aquarium flake sphere
[Constructible]
public VacationWafer() : base( 0x973 )
{
}
public VacationWafer( Serial serial ) : base( serial )
{
}
public override void AddNameProperties( ObjectPropertyList list )
{
base.AddNameProperties( list );
list.Add( 1074432, VacationDays.ToString() ); // Vacation days: ~1_DAYS~
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 1 ); // version
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
if ( version < 1 && ItemID == 0x971 )
ItemID = 0x973;
}
}
}