ModernUO/Projects/UOContent/Items/Skill Items/Magical/MysticSpellbook.cs
2023-02-24 19:04:21 -08:00

15 lines
424 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class MysticSpellbook : Spellbook
{
[Constructible]
public MysticSpellbook(ulong content = 0) : base(content, 0x2D9D) => Layer = Layer.OneHanded;
public override SpellbookType SpellbookType => SpellbookType.Mystic;
public override int BookOffset => 677;
public override int BookCount => 16;
}