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,52 @@
// Created by Script Creator
// From Aries at Revenge of the Gods
using System;
using Server;
namespace Server.Items
{
public class MerlinsLegs : LeatherLegs
{
public override int InitMinHits{ get{ return 100;}}
public override int InitMaxHits{ get{ return 100;}}
[Constructable]
public MerlinsLegs()
{
Hue = 2438;
Name = "Merlins Legs";
ColdBonus = 15;
EnergyBonus = 30;
PhysicalBonus = 15;
PoisonBonus = 20;
FireBonus = 15;
//ArmorAttributes.SelfRepair = 0;
Attributes.BonusHits = 20;
Attributes.BonusInt = 20;
Attributes.BonusMana = 15;
Attributes.BonusStr = 5;
Attributes.CastSpeed = 1;
//Attributes.CastRecovery = 1;
Attributes.EnhancePotions = 10;
Attributes.LowerManaCost = 25;
Attributes.LowerRegCost = 25;
Attributes.Luck = 50;
Attributes.ReflectPhysical = 10;
Attributes.RegenHits = 15;
Attributes.RegenMana = 15;
Attributes.SpellDamage = 13;
IntRequirement = 50;
}
public MerlinsLegs( 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();
}
}
}