Files
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

49 lines
1.2 KiB
C#

using System;
using Server.Items;
namespace Server.Items
{
public class NovoBleue : GoldBracelet
{
public override bool IsArtifact { get { return true; } }
public override int LabelNumber{ get{ return 1080239; } } // Novo Bleue
public override SetItem SetID{ get{ return SetItem.Luck; } }
public override int Pieces{ get{ return 2; } }
[Constructable]
public NovoBleue() : base()
{
this.Weight = 1.0;
this.Hue = 1165;
this.Attributes.Luck = 150;
this.Attributes.CastSpeed = 1;
this.Attributes.CastRecovery = 1;
this.SetHue = 1165;
this.SetAttributes.Luck = 100;
this.SetAttributes.RegenHits = 2;
this.SetAttributes.RegenMana = 2;
this.SetAttributes.CastSpeed = 1;
this.SetAttributes.CastRecovery = 4;
}
public NovoBleue( 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();
}
}
}