ModernUO/Projects/UOContent/Items/Skill Items/Magical/Scrolls/Fifth Circle/SummonCreatureScroll.cs
2023-02-24 18:17:29 -08:00

12 lines
258 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class SummonCreatureScroll : SpellScroll
{
[Constructible]
public SummonCreatureScroll(int amount = 1) : base(39, 0x1F54, amount)
{
}
}