ModernUO/Projects/UOContent/Holiday Stuff/Halloween/Treats/WrappedCandy.cs
2021-06-01 16:34:24 -07:00

11 lines
298 B
C#

namespace Server.Items
{
[Serializable(0, false)]
public partial class WrappedCandy : CandyCane
{
[Constructible]
public WrappedCandy(int amount = 1) : base(0x469e) => Stackable = true;
public override int LabelNumber => 1096950; /* wrapped candy */
}
}