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

14 lines
263 B
C#

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