Files
abysmal-isle/Scripts/Scripts-master/Quests/DantesQuest/DantesRing.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

56 lines
1.2 KiB
C#

using System;
using Server;
namespace Server.Items
{
public class DantesRing : GoldRing
{
public override int ArtifactRarity{ get{ return 21; } }
[Constructable]
public DantesRing()
{
Name = "Dantes Ring";
Hue = 468;
Attributes.LowerManaCost = 10;
Attributes.DefendChance = 10;
Attributes.Luck = 140;
Attributes.BonusMana = 5;
Attributes.BonusHits = 25;
Attributes.BonusStam = 5;
Attributes.RegenHits = 1;
Attributes.RegenMana = 1;
Attributes.RegenStam = 1;
Attributes.CastRecovery = 3;
Attributes.CastSpeed = 2;
Resistances.Energy = 5;
Resistances.Fire = 5;
Resistances.Cold = 5;
Resistances.Poison = 5;
Resistances.Physical = 5;
SkillBonuses.SetValues( 0, SkillName.EvalInt, 5.0 );
}
public DantesRing( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 0 );
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}