354 lines
No EOL
6.9 KiB
C#
354 lines
No EOL
6.9 KiB
C#
using System;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public abstract class BaseOuterTorso : BaseClothing
|
|
{
|
|
public BaseOuterTorso( int itemID ) : this( itemID, 0 )
|
|
{
|
|
}
|
|
|
|
public BaseOuterTorso( int itemID, int hue ) : base( itemID, Layer.OuterTorso, hue )
|
|
{
|
|
}
|
|
|
|
public BaseOuterTorso( 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();
|
|
}
|
|
}
|
|
|
|
[Flipable( 0x1F00, 0x1EFF )]
|
|
public class FancyDress : BaseOuterTorso
|
|
{
|
|
public override bool AllowMaleWearer{ get{ return false; } }
|
|
|
|
[Constructable]
|
|
public FancyDress() : this( 0 )
|
|
{
|
|
}
|
|
|
|
[Constructable]
|
|
public FancyDress( int hue ) : base( 0x1F00, hue )
|
|
{
|
|
Weight = 3.0;
|
|
}
|
|
|
|
public FancyDress( 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();
|
|
}
|
|
}
|
|
|
|
public class DeathRobe : Robe
|
|
{
|
|
private Timer m_DecayTimer;
|
|
private DateTime m_DecayTime;
|
|
|
|
private static TimeSpan m_DefaultDecayTime = TimeSpan.FromMinutes(1.0);
|
|
|
|
public override bool DisplayLootType
|
|
{
|
|
get{ return false; }
|
|
}
|
|
|
|
[Constructable]
|
|
public DeathRobe()
|
|
{
|
|
Hue = 2301;
|
|
BeginDecay( m_DefaultDecayTime );
|
|
}
|
|
|
|
public new bool Scissor( Mobile from, Scissors scissors )
|
|
{
|
|
from.SendLocalizedMessage( 502440 ); // Scissors can not be used on that to produce anything.
|
|
return false;
|
|
}
|
|
|
|
public void BeginDecay( TimeSpan delay )
|
|
{
|
|
if ( m_DecayTimer != null )
|
|
m_DecayTimer.Stop();
|
|
|
|
m_DecayTime = DateTime.Now + delay;
|
|
|
|
m_DecayTimer = new InternalTimer( this, delay );
|
|
m_DecayTimer.Start();
|
|
}
|
|
|
|
public override bool OnDroppedToWorld( Mobile from, Point3D p )
|
|
{
|
|
BeginDecay( m_DefaultDecayTime );
|
|
|
|
return true;
|
|
}
|
|
|
|
public override bool OnDroppedToMobile( Mobile from, Mobile target )
|
|
{
|
|
if (m_DecayTimer != null )
|
|
{
|
|
m_DecayTimer.Stop();
|
|
m_DecayTimer = null;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public override void OnAfterDelete()
|
|
{
|
|
if ( m_DecayTimer != null )
|
|
m_DecayTimer.Stop();
|
|
|
|
m_DecayTimer = null;
|
|
}
|
|
|
|
private class InternalTimer : Timer
|
|
{
|
|
private DeathRobe m_Robe;
|
|
|
|
public InternalTimer( DeathRobe c, TimeSpan delay ) : base( delay )
|
|
{
|
|
m_Robe = c;
|
|
Priority = TimerPriority.FiveSeconds;
|
|
}
|
|
|
|
protected override void OnTick()
|
|
{
|
|
if ( m_Robe.Parent != null || m_Robe.IsLockedDown )
|
|
Stop();
|
|
else
|
|
m_Robe.Delete();
|
|
}
|
|
}
|
|
|
|
public DeathRobe( Serial serial ) : base( serial )
|
|
{
|
|
}
|
|
|
|
public override void Serialize( GenericWriter writer )
|
|
{
|
|
base.Serialize( writer );
|
|
|
|
writer.Write( (int) 2 ); // version
|
|
|
|
writer.Write( m_DecayTimer != null );
|
|
|
|
if( m_DecayTimer != null )
|
|
writer.WriteDeltaTime( m_DecayTime );
|
|
}
|
|
|
|
public override void Deserialize( GenericReader reader )
|
|
{
|
|
base.Deserialize( reader );
|
|
|
|
int version = reader.ReadInt();
|
|
|
|
switch ( version )
|
|
{
|
|
case 2:
|
|
{
|
|
if( reader.ReadBool() )
|
|
{
|
|
m_DecayTime = reader.ReadDeltaTime();
|
|
BeginDecay( m_DecayTime - DateTime.Now );
|
|
}
|
|
break;
|
|
}
|
|
case 1:
|
|
case 0:
|
|
{
|
|
if ( Parent == null )
|
|
BeginDecay( m_DefaultDecayTime );
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ( version < 1 && Hue == 0 )
|
|
Hue = 2301;
|
|
}
|
|
}
|
|
|
|
[Flipable]
|
|
public class Robe : BaseOuterTorso, IArcaneEquip
|
|
{
|
|
#region Arcane Impl
|
|
private int m_MaxArcaneCharges, m_CurArcaneCharges;
|
|
|
|
[CommandProperty( AccessLevel.GameMaster )]
|
|
public int MaxArcaneCharges
|
|
{
|
|
get{ return m_MaxArcaneCharges; }
|
|
set{ m_MaxArcaneCharges = value; InvalidateProperties(); Update(); }
|
|
}
|
|
|
|
[CommandProperty( AccessLevel.GameMaster )]
|
|
public int CurArcaneCharges
|
|
{
|
|
get{ return m_CurArcaneCharges; }
|
|
set{ m_CurArcaneCharges = value; InvalidateProperties(); Update(); }
|
|
}
|
|
|
|
[CommandProperty( AccessLevel.GameMaster )]
|
|
public bool IsArcane
|
|
{
|
|
get{ return ( m_MaxArcaneCharges > 0 && m_CurArcaneCharges >= 0 ); }
|
|
}
|
|
|
|
public void Update()
|
|
{
|
|
if ( IsArcane )
|
|
ItemID = 0x26AE;
|
|
else if ( ItemID == 0x26AE )
|
|
ItemID = 0x1F04;
|
|
|
|
if ( IsArcane && CurArcaneCharges == 0 )
|
|
Hue = 0;
|
|
}
|
|
|
|
public override void GetProperties( ObjectPropertyList list )
|
|
{
|
|
base.GetProperties( list );
|
|
|
|
if ( IsArcane )
|
|
list.Add( 1061837, "{0}\t{1}", m_CurArcaneCharges, m_MaxArcaneCharges ); // arcane charges: ~1_val~ / ~2_val~
|
|
}
|
|
|
|
public override void OnSingleClick( Mobile from )
|
|
{
|
|
base.OnSingleClick( from );
|
|
|
|
if ( IsArcane )
|
|
LabelTo( from, 1061837, String.Format( "{0}\t{1}", m_CurArcaneCharges, m_MaxArcaneCharges ) );
|
|
}
|
|
|
|
public void Flip()
|
|
{
|
|
if ( ItemID == 0x1F03 )
|
|
ItemID = 0x1F04;
|
|
else if ( ItemID == 0x1F04 )
|
|
ItemID = 0x1F03;
|
|
}
|
|
#endregion
|
|
|
|
[Constructable]
|
|
public Robe() : this( 0 )
|
|
{
|
|
}
|
|
|
|
[Constructable]
|
|
public Robe( int hue ) : base( 0x1F03, hue )
|
|
{
|
|
Weight = 3.0;
|
|
}
|
|
|
|
public Robe( Serial serial ) : base( serial )
|
|
{
|
|
}
|
|
|
|
public override void Serialize( GenericWriter writer )
|
|
{
|
|
base.Serialize( writer );
|
|
|
|
writer.Write( (int) 1 ); // version
|
|
|
|
if ( IsArcane )
|
|
{
|
|
writer.Write( true );
|
|
writer.Write( (int) m_CurArcaneCharges );
|
|
writer.Write( (int) m_MaxArcaneCharges );
|
|
}
|
|
else
|
|
{
|
|
writer.Write( false );
|
|
}
|
|
}
|
|
|
|
public override void Deserialize( GenericReader reader )
|
|
{
|
|
base.Deserialize( reader );
|
|
|
|
int version = reader.ReadInt();
|
|
|
|
switch ( version )
|
|
{
|
|
case 1:
|
|
{
|
|
if ( reader.ReadBool() )
|
|
{
|
|
m_CurArcaneCharges = reader.ReadInt();
|
|
m_MaxArcaneCharges = reader.ReadInt();
|
|
|
|
if ( Hue == 2118 )
|
|
Hue = ArcaneGem.DefaultArcaneHue;
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
[Flipable( 0x1f01, 0x1f02 )]
|
|
public class PlainDress : BaseOuterTorso
|
|
{
|
|
public override bool AllowMaleWearer{ get{ return false; } }
|
|
|
|
[Constructable]
|
|
public PlainDress() : this( 0 )
|
|
{
|
|
}
|
|
|
|
[Constructable]
|
|
public PlainDress( int hue ) : base( 0x1F01, hue )
|
|
{
|
|
Weight = 2.0;
|
|
}
|
|
|
|
public PlainDress( 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();
|
|
|
|
if ( Weight == 3.0 )
|
|
Weight = 2.0;
|
|
}
|
|
}
|
|
} |