ModernUO/Projects/UOContent/Items/Minor Artifacts/ML/RobeOfTheEclipse.cs
2022-09-10 14:40:19 -07:00

20 lines
415 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[Flippable(0x1F03, 0x1F04)]
[SerializationGenerator(0)]
public partial class RobeOfTheEclipse : BaseOuterTorso
{
[Constructible]
public RobeOfTheEclipse() : base(0x1F03, 0x486)
{
Weight = 3.0;
Attributes.Luck = 95;
// TODO: Supports arcane?
}
public override int LabelNumber => 1075082; // Robe of the Eclipse
}