Files
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

84 lines
1.9 KiB
C#

using System;
using Server;
namespace Server.Items
{
public class legsofthelight : PlateLegs
{
public override int ArtifactRarity{ get{ return 46; } }
public override int InitMinHits{ get{ return 255; } }
public override int InitMaxHits{ get{ return 255; } }
[Constructable]
public legsofthelight()
{
Weight = 4.0;
Name = "Legs of the Light";
Hue = 1153;
//Attributes.AttackChance = nn;
//Attributes.BonusDex = nn;
//Attributes.BonusHits = nn;
//Attributes.BonusInt = nn;
//Attributes.BonusMana = nn;
//Attributes.BonusStam = nn;
//Attributes.BonusStr = nn;
Attributes.CastRecovery = 14;
Attributes.CastSpeed = 20;
Attributes.DefendChance = 24;
//Attributes.EnhancePotions = nn;
//Attributes.LowerManaCost = nn;
//Attributes.LowerRegCost = nn;
//Attributes.Luck = nn;
//Attributes.Nightsight = 1;
Attributes.ReflectPhysical = 16;
//Attributes.RegenHits = nn;
//Attributes.RegenMana = nn;
//Attributes.RegenStam = nn;
Attributes.SpellChanneling = 1;
//Attributes.SpellDamage = nn;
//Attributes.WeaponDamage = nn;
//Attributes.WeaponSpeed = nn;
//ArmorAttributes.DurabilityBonus = nn;
//ArmorAttributes.LowerStatReq = nn;
ArmorAttributes.MageArmor = 1;
ArmorAttributes.SelfRepair = 16;
//ColdBonus = nn;
//DexBonus = nn;
//DexRequirement = nn;
//EnergyBonus = nn;
//FireBonus = nn;
//IntBonus = nn;
IntRequirement = 45;
//PhysicalBonus = nn;
//PoisonBonus = nn;
//StrBonus = nn;
StrRequirement = 60;
LootType = LootType.Blessed;
}
public legsofthelight( 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();
}
}
}