Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
using Server;
|
||||
using System;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
|
||||
public class ApprenticeMaleGargoyleChest : LeatherChest
|
||||
{
|
||||
|
||||
public override int InitMinHits{ get{ return 125; } }
|
||||
public override int InitMaxHits{ get{ return 125; } }
|
||||
|
||||
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; } }
|
||||
public override Race RequiredRace{ get { return Race.Gargoyle; } }
|
||||
public override bool CanBeWornByGargoyles{ get{ return true; } }
|
||||
public override bool AllowFemaleWearer{ get{ return false; } }
|
||||
|
||||
|
||||
[Constructable]
|
||||
public ApprenticeMaleGargoyleChest()
|
||||
{
|
||||
Hue = 333;
|
||||
Name = "Hero Apprentice Male Gargoyle Chest";
|
||||
ItemID = 772;
|
||||
Layer = Layer.InnerTorso;
|
||||
Weight = 5;
|
||||
|
||||
Attributes.LowerRegCost = 17;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.LowerManaCost = 10;
|
||||
Attributes.Luck = 5;
|
||||
|
||||
LootType = LootType.Blessed;
|
||||
|
||||
PhysicalBonus = 5;
|
||||
FireBonus = 5;
|
||||
ColdBonus = 5;
|
||||
PoisonBonus = 5;
|
||||
EnergyBonus = 5;
|
||||
}
|
||||
|
||||
public ApprenticeMaleGargoyleChest( 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();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
using Server;
|
||||
using System;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class ApprenticeMaleGargoyleKilt : LeatherChest
|
||||
{
|
||||
|
||||
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; } }
|
||||
public override Race RequiredRace{ get { return Race.Gargoyle; } }
|
||||
public override bool CanBeWornByGargoyles{ get{ return true; } }
|
||||
public override bool AllowFemaleWearer{ get{ return false; } }
|
||||
|
||||
|
||||
|
||||
[Constructable]
|
||||
public ApprenticeMaleGargoyleKilt ()
|
||||
{
|
||||
|
||||
Name = "Hero Apprentice MaleGargoyle Kilt ";
|
||||
Weight = 5;
|
||||
ItemID = 785;
|
||||
Layer = Layer.OuterLegs;
|
||||
|
||||
|
||||
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 ApprenticeMaleGargoyleKilt ( 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();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
using Server;
|
||||
using System;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class ApprenticeMaleGargoyleLegs : LeatherLegs
|
||||
{
|
||||
|
||||
public override int InitMinHits{ get{ return 125; } }
|
||||
public override int InitMaxHits{ get{ return 125; } }
|
||||
|
||||
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; } }
|
||||
public override Race RequiredRace{ get { return Race.Gargoyle; } }
|
||||
public override bool CanBeWornByGargoyles{ get{ return true; } }
|
||||
public override bool AllowFemaleWearer{ get{ return false; } }
|
||||
|
||||
|
||||
[Constructable]
|
||||
public ApprenticeMaleGargoyleLegs()
|
||||
{
|
||||
Hue = 333;
|
||||
Name = "Hero Apprentice Male Gargoyle Legs";
|
||||
ItemID = 774;
|
||||
Layer = Layer.Pants;
|
||||
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 ApprenticeMaleGargoyleLegs( 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();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
using Server;
|
||||
using System;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class ApprenticeMaleGargoyleSleeves : 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; } }
|
||||
public override Race RequiredRace{ get { return Race.Gargoyle; } }
|
||||
public override bool CanBeWornByGargoyles{ get{ return true; } }
|
||||
public override bool AllowFemaleWearer{ get{ return false; } }
|
||||
|
||||
|
||||
|
||||
[Constructable]
|
||||
public ApprenticeMaleGargoyleSleeves()
|
||||
{
|
||||
Hue = 57;
|
||||
Name = "Hero Apprentice Male Gargoyle Sleeves";
|
||||
Weight = 5;
|
||||
ItemID = 770;
|
||||
|
||||
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 ApprenticeMaleGargoyleSleeves( 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