ModernUO/Projects/UOContent/Items/Talismans/Items/RunedPrism.cs
2023-08-23 22:41:48 -07:00

12 lines
274 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class RunedPrism : Item
{
[Constructible]
public RunedPrism() : base(0x2F57) => Weight = 1.0;
public override int LabelNumber => 1073465; // runed prism
}