ModernUO/Projects/UOContent/Items/Resources/Reagents/PigIron.cs
2022-11-23 13:45:32 -08:00

15 lines
No EOL
332 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class PigIron : BaseReagent, ICommodity
{
[Constructible]
public PigIron(int amount = 1) : base(0xF8A, amount)
{
}
int ICommodity.DescriptionNumber => LabelNumber;
bool ICommodity.IsDeedable => true;
}