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,49 @@
// Created by Script Creator
// From Aries at Revenge of the Gods
using System;
using Server;
namespace Server.Items
{
public class FateHelm : PlateHelm
{
public override int InitMinHits{ get{ return 100;}}
public override int InitMaxHits{ get{ return 100;}}
[Constructable]
public FateHelm()
{
Hue = 2052;
Name = "Fate Helm";
ColdBonus = 30;
EnergyBonus = 30;
PhysicalBonus = 30;
PoisonBonus = 30;
FireBonus = 30;
ArmorAttributes.SelfRepair = 10;
Attributes.BonusHits = 35;
Attributes.WeaponSpeed = 30;
Attributes.WeaponDamage = 40;
Attributes.BonusMana = 20;
Attributes.BonusStam = 20;
Attributes.BonusStr = 30;
Attributes.LowerRegCost = 25;
Attributes.Luck = 200;
Attributes.ReflectPhysical = 15;
Attributes.RegenHits = 15;
StrRequirement = 130;
LootType = LootType.Blessed;
}
public FateHelm( 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();
}
}
}