Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,84 @@
|
||||
// Scripted by SPanky
|
||||
using System;
|
||||
using Server;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class armsofthelight : PlateArms
|
||||
{
|
||||
public override int ArtifactRarity{ get{ return 50; } }
|
||||
|
||||
public override int InitMinHits{ get{ return 255; } }
|
||||
public override int InitMaxHits{ get{ return 255; } }
|
||||
|
||||
[Constructable]
|
||||
public armsofthelight()
|
||||
{
|
||||
Weight = 10.0;
|
||||
Name = "Arms of the Light";
|
||||
Hue = 1153;
|
||||
|
||||
//Attributes.AttackChance = nn;
|
||||
//Attributes.BonusDex = nn;
|
||||
//Attributes.BonusHits = nn;
|
||||
//Attributes.BonusInt = nn;
|
||||
//Attributes.BonusMana = nn;
|
||||
//Attributes.BonusStam = nn;
|
||||
//Attributes.BonusStr = nn;
|
||||
Attributes.CastRecovery = 14;
|
||||
Attributes.CastSpeed = 24;
|
||||
Attributes.DefendChance = 12;
|
||||
//Attributes.EnhancePotions = nn;
|
||||
//Attributes.LowerManaCost = nn;
|
||||
//Attributes.LowerRegCost = nn;
|
||||
//Attributes.Luck = nn;
|
||||
//Attributes.Nightsight = 1;
|
||||
Attributes.ReflectPhysical = 20;
|
||||
//Attributes.RegenHits = nn;
|
||||
//Attributes.RegenMana = nn;
|
||||
//Attributes.RegenStam = nn;
|
||||
Attributes.SpellChanneling = 1;
|
||||
//Attributes.SpellDamage = nn;
|
||||
//Attributes.WeaponDamage = nn;
|
||||
//Attributes.WeaponSpeed = nn;
|
||||
|
||||
//ArmorAttributes.DurabilityBonus = nn;
|
||||
//ArmorAttributes.LowerStatReq = nn;
|
||||
ArmorAttributes.MageArmor = 1;
|
||||
//ArmorAttributes.SelfRepair = nn;
|
||||
|
||||
//ColdBonus = nn;
|
||||
//DexBonus = nn;
|
||||
//DexRequirement = nn;
|
||||
//EnergyBonus = nn;
|
||||
//FireBonus = nn;
|
||||
//IntBonus = nn;
|
||||
IntRequirement = 40;
|
||||
//PhysicalBonus = nn;
|
||||
//PoisonBonus = nn;
|
||||
//StrBonus = nn;
|
||||
StrRequirement = 60;
|
||||
|
||||
LootType = LootType.Blessed;
|
||||
|
||||
}
|
||||
|
||||
public armsofthelight( 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