Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
56
Scripts/Scripts-master/Quests/DantesQuest/DantesRing.cs
Normal file
56
Scripts/Scripts-master/Quests/DantesQuest/DantesRing.cs
Normal file
@@ -0,0 +1,56 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user