ModernUO/Projects/UOContent/Items/Skill Items/Magical/Misc/BlankScroll.cs
2022-12-07 20:46:41 -08:00

18 lines
402 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class BlankScroll : Item, ICommodity
{
[Constructible]
public BlankScroll(int amount = 1) : base(0xEF3)
{
Stackable = true;
Weight = 1.0;
Amount = amount;
}
int ICommodity.DescriptionNumber => LabelNumber;
bool ICommodity.IsDeedable => Core.ML;
}