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

15 lines
453 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class BookOfBushido : Spellbook
{
[Constructible]
public BookOfBushido(ulong content = 0x3F) : base(content, 0x238C) =>
Layer = Core.ML ? Layer.OneHanded : Layer.Invalid;
public override SpellbookType SpellbookType => SpellbookType.Samurai;
public override int BookOffset => 400;
public override int BookCount => 6;
}