ModernUO/Projects/UOContent/Items/Misc/BolaBall.cs

17 lines
336 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class BolaBall : Item
{
[Constructible]
public BolaBall(int amount = 1) : base(0xE73)
{
Stackable = true;
Amount = amount;
Hue = 0x8AC;
}
public override double DefaultWeight => 4.0;
}