ModernUO/Projects/UOContent/Engines/ML Quests/Items/SeveredHumanEars.cs
2023-09-30 00:46:07 -07:00

15 lines
338 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[Flippable(0x312F, 0x3130)]
[SerializationGenerator(0, false)]
public partial class SeveredHumanEars : Item
{
[Constructible]
public SeveredHumanEars(int amount = 1) : base(Utility.RandomList(0x312F, 0x3130))
{
Stackable = true;
Amount = amount;
}
}