Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
// Created by Script Creator
|
||||
// From Aries at Revenge of the Gods
|
||||
using System;
|
||||
using Server;
|
||||
namespace Server.Items
|
||||
{
|
||||
public class MerlinsGorget : LeatherGorget
|
||||
{
|
||||
public override int InitMinHits{ get{ return 100;}}
|
||||
public override int InitMaxHits{ get{ return 100;}}
|
||||
[Constructable]
|
||||
public MerlinsGorget()
|
||||
{
|
||||
Hue = 2438;
|
||||
Name = "Merlins Gorget";
|
||||
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 MerlinsGorget( 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