Files
abysmal-isle/Scripts/Items/Artifacts/Equipment/Spellbooks/ScrappersCompendium.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

74 lines
1.9 KiB
C#

using System;
using Server.Engines.Craft;
namespace Server.Items
{
public class ScrappersCompendium : Spellbook
{
public override bool IsArtifact { get { return true; } }
[Constructable]
public ScrappersCompendium()
: base()
{
Hue = 0x494;
Attributes.SpellDamage = 25;
Attributes.LowerManaCost = 10;
Attributes.CastSpeed = 1;
Attributes.CastRecovery = 1;
}
public ScrappersCompendium(Serial serial)
: base(serial)
{
}
public override int LabelNumber
{
get
{
return 1072940;
}
}// scrappers compendium
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write((int)0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
public override int OnCraft(int quality, bool makersMark, Mobile from, CraftSystem craftSystem, Type typeRes, ITool tool, CraftItem craftItem, int resHue)
{
double magery = from.Skills.Magery.Value - 100;
if (magery < 0)
magery = 0;
int count = (int)Math.Round(magery * Utility.RandomDouble() / 5);
if (count > 2)
count = 2;
if (Utility.RandomDouble() < 0.5)
count = 0;
else
BaseRunicTool.ApplyAttributesTo(this, true, 0, count, 70, 80);
this.Attributes.SpellDamage = 25;
this.Attributes.LowerManaCost = 10;
this.Attributes.CastSpeed = 1;
this.Attributes.CastRecovery = 1;
if (makersMark)
this.Crafter = from;
return quality;
}
}
}