Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
using Server;
|
||||
using System;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class ApprenticeSleeves : LeatherArms
|
||||
{
|
||||
public override int InitMinHits{ get{ return 100; } }
|
||||
public override int InitMaxHits{ get{ return 100; } }
|
||||
|
||||
public override int BasePhysicalResistance{ get{ return 0; } }
|
||||
public override int BaseFireResistance{ get{ return 0; } }
|
||||
public override int BaseColdResistance{ get{ return 0; } }
|
||||
public override int BasePoisonResistance{ get{ return 0; } }
|
||||
public override int BaseEnergyResistance{ get{ return 0; } }
|
||||
|
||||
public override int AosStrReq{ get{ return 15; } }
|
||||
public override int OldStrReq{ get{ return 15; } }
|
||||
|
||||
[Constructable]
|
||||
public ApprenticeSleeves()
|
||||
{
|
||||
Hue = 57;
|
||||
Name = "Hero Apprentice Sleeves";
|
||||
Weight = 5;
|
||||
|
||||
Attributes.LowerRegCost = 17;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.LowerManaCost = 10;
|
||||
Attributes.Luck = 5;
|
||||
|
||||
PhysicalBonus = 5;
|
||||
FireBonus = 5;
|
||||
ColdBonus = 5;
|
||||
PoisonBonus = 5;
|
||||
EnergyBonus = 5;
|
||||
|
||||
LootType = LootType.Blessed;
|
||||
|
||||
}
|
||||
public ApprenticeSleeves( 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