Files
abysmal-isle/Scripts/Scripts-master/Items/Armors/Nast Set/Nast'sBracelet.cs
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

46 lines
1.4 KiB
C#

using System;
using Server;
namespace Server.Items
{
public class NastsBracelet : GoldBracelet
{
public override int ArtifactRarity{ get{ return 5000; } }
[Constructable]
public NastsBracelet()
{
Name = "Nasts Bracelet";
Hue = Utility.RandomList(38,203);
LootType = LootType.Blessed;
Attributes.ReflectPhysical = 1000;
Attributes.CastRecovery = 100;
Attributes.CastSpeed = 100;
Attributes.NightSight = 1;
Attributes.Luck = 200;
Attributes.LowerRegCost = 100;
Attributes.LowerManaCost = 100;
Attributes.RegenHits = 100;
Attributes.RegenMana = 100;
Attributes.RegenStam = 100;
}
public NastsBracelet( Serial serial ) : base( serial )
{
}
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();
}
}
}