50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
// Created by Script Creator
|
|
// From Aries at Revenge of the Gods
|
|
using System;
|
|
using Server;
|
|
namespace Server.Items
|
|
{
|
|
public class DuelistMagersLegs : LeatherLegs
|
|
{
|
|
public override int InitMinHits{ get{ return 100;}}
|
|
public override int InitMaxHits{ get{ return 100;}}
|
|
[Constructable]
|
|
public DuelistMagersLegs()
|
|
{
|
|
Hue = 326;
|
|
LootType = LootType.Blessed;
|
|
Name = "Mage Legs";
|
|
ColdBonus = 2;
|
|
EnergyBonus = 2;
|
|
PhysicalBonus = 2;
|
|
PoisonBonus = 2;
|
|
FireBonus = 2;
|
|
Attributes.BonusHits = 4;
|
|
Attributes.BonusInt = 2;
|
|
Attributes.BonusMana = 2;
|
|
Attributes.BonusStr = 3;
|
|
Attributes.LowerManaCost = 5;
|
|
Attributes.LowerRegCost = 5;
|
|
Attributes.Luck = 40;
|
|
Attributes.ReflectPhysical = 3;
|
|
Attributes.RegenHits = 3;
|
|
Attributes.RegenMana = 3;
|
|
Attributes.SpellDamage = 3;
|
|
IntRequirement = 90;
|
|
}
|
|
public DuelistMagersLegs( 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();
|
|
}
|
|
}
|
|
}
|