56 lines
1.4 KiB
C#
56 lines
1.4 KiB
C#
using System;
|
|
using Server.Items;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[FlipableAttribute( 0x1410, 0x1417 )]
|
|
public class PauldronsofContinualLife : BaseArmor
|
|
{
|
|
public override int BasePhysicalResistance{ get{ return 5; } }
|
|
public override int BaseFireResistance{ get{ return 3; } }
|
|
public override int BaseColdResistance{ get{ return 2; } }
|
|
public override int BasePoisonResistance{ get{ return 3; } }
|
|
public override int BaseEnergyResistance{ get{ return 2; } }
|
|
|
|
public override int InitMinHits{ get{ return 150; } }
|
|
public override int InitMaxHits{ get{ return 150; } }
|
|
|
|
public override int AosStrReq{ get{ return 80; } }
|
|
public override int OldStrReq{ get{ return 40; } }
|
|
|
|
public override int OldDexBonus{ get{ return -2; } }
|
|
|
|
public override int ArmorBase{ get{ return 40; } }
|
|
|
|
public override ArmorMaterialType MaterialType{ get{ return ArmorMaterialType.Plate; } }
|
|
|
|
[Constructable]
|
|
public PauldronsofContinualLife() : base( 0x1410 )
|
|
{
|
|
Weight = 5.0;
|
|
Name = "Pauldrons of Continual Life";
|
|
Hue = 1402;
|
|
Attributes.BonusHits = 12;
|
|
Attributes.RegenHits = 4;
|
|
}
|
|
|
|
public PauldronsofContinualLife( 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();
|
|
|
|
if ( Weight == 1.0 )
|
|
Weight = 5.0;
|
|
}
|
|
}
|
|
} |