ModernUO/Projects/UOContent/Items/Construction/Misc/Obelisk.cs
2023-09-29 23:28:51 -07:00

12 lines
270 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class Obelisk : Item
{
[Constructible]
public Obelisk() : base(0x1184) => Movable = false;
public override int LabelNumber => 1016474; // an obelisk
}