56 lines
1.5 KiB
C#
56 lines
1.5 KiB
C#
//Yrenwick Dragon Ultima IX pack, MiniQuest System & WyrmguardLegs.cs created by Yrenwick Dragon (G. Younk)
|
|
//From the Ultima: Britannia shard http://www.mac512.com/ultima/britannia/
|
|
//This script was created on 5/31/04
|
|
|
|
using System;
|
|
using Server.Items;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[FlipableAttribute( 0x13be, 0x13c3 )]
|
|
public class WyrmguardLegs : BaseArmor
|
|
{
|
|
public override int BasePhysicalResistance{ get{ return 5; } }
|
|
public override int BaseFireResistance{ get{ return 3; } }
|
|
public override int BaseColdResistance{ get{ return 5; } }
|
|
public override int BasePoisonResistance{ get{ return 0; } }
|
|
public override int BaseEnergyResistance{ get{ return 2; } }
|
|
|
|
public override int InitMinHits{ get{ return 45; } }
|
|
public override int InitMaxHits{ get{ return 60; } }
|
|
|
|
public override int AosStrReq{ get{ return 60; } }
|
|
public override int OldStrReq{ get{ return 20; } }
|
|
|
|
public override int OldDexBonus{ get{ return -3; } }
|
|
|
|
public override int ArmorBase{ get{ return 28; } }
|
|
|
|
public override ArmorMaterialType MaterialType{ get{ return ArmorMaterialType.Chainmail; } }
|
|
|
|
[Constructable]
|
|
public WyrmguardLegs() : base( 0x13BE )
|
|
{
|
|
Weight = 7.0;
|
|
Name = "WyrmGuard Legs";
|
|
Hue = 14;
|
|
}
|
|
|
|
public WyrmguardLegs( 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();
|
|
}
|
|
}
|
|
}
|