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

17 lines
424 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class BagOfNecroReagents : Bag
{
[Constructible]
public BagOfNecroReagents(int amount = 50)
{
DropItem(new BatWing(amount));
DropItem(new GraveDust(amount));
DropItem(new DaemonBlood(amount));
DropItem(new NoxCrystal(amount));
DropItem(new PigIron(amount));
}
}