Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,62 @@
using Server;
using System;
using Server.Items;
namespace Server.Items
{
public class ApprenticeGorget : LeatherGorget
{
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 ApprenticeGorget()
{
Hue = 57;
Name = "Hero Apprentice Gorget";
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 ApprenticeGorget( 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();
}
}
}