ModernUO/Projects/UOContent/Items/Special/Rares/Magic/DecoCrystalBall.cs
2023-03-11 19:25:48 -08:00

14 lines
265 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class DecoCrystalBall : Item
{
[Constructible]
public DecoCrystalBall() : base(0xE2E)
{
Movable = true;
Stackable = false;
}
}