servuo/Scripts/Items/Consumables/SpellScrolls/ProtectionScroll.cs
TrueUO 264a606eff
Reorganized Folders (#4794)
- Nothing was changed in the Consumables folder code wise. Just cleaned it up a little.

Bug Fixes
- Juka Bow now has correct "requirements".
- Fixed an issue where loot would stop dropping correctly.

Co-authored-by: TrueUO <knight.daniel.r@gmail.com>
2020-06-15 08:16:13 -07:00

36 lines
No EOL
735 B
C#

namespace Server.Items
{
public class ProtectionScroll : SpellScroll
{
[Constructable]
public ProtectionScroll()
: this(1)
{
}
[Constructable]
public ProtectionScroll(int amount)
: base(14, 0x1F3B, amount)
{
}
public ProtectionScroll(Serial serial)
: base(serial)
{
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
}