diff --git a/Scripts/Items/Minor Artifacts/ML/QuiverOfElements.cs b/Scripts/Items/Minor Artifacts/ML/QuiverOfElements.cs index 41d6faa28..04e165438 100644 --- a/Scripts/Items/Minor Artifacts/ML/QuiverOfElements.cs +++ b/Scripts/Items/Minor Artifacts/ML/QuiverOfElements.cs @@ -11,8 +11,6 @@ namespace Server.Items public QuiverOfElements() : base() { Hue = 0xEB; - - DamageIncrease = 10; WeightReduction = 50; } diff --git a/Scripts/Items/Quivers/BaseQuiver.cs b/Scripts/Items/Quivers/BaseQuiver.cs index 5a681fd54..b90c1aaaa 100644 --- a/Scripts/Items/Quivers/BaseQuiver.cs +++ b/Scripts/Items/Quivers/BaseQuiver.cs @@ -85,6 +85,8 @@ namespace Server.Items Layer = Layer.Cloak; m_Attributes = new AosAttributes( this ); + + DamageIncrease = 10; } public BaseQuiver( Serial serial ) : base( serial ) diff --git a/Scripts/Items/Quivers/ElvenQuiver.cs b/Scripts/Items/Quivers/ElvenQuiver.cs index e50b92ce9..af957e9e1 100644 --- a/Scripts/Items/Quivers/ElvenQuiver.cs +++ b/Scripts/Items/Quivers/ElvenQuiver.cs @@ -11,7 +11,6 @@ namespace Server.Items [Constructable] public ElvenQuiver() : base() { - DamageIncrease = 10; WeightReduction = 30; } diff --git a/Scripts/Items/Special/8th Anniversary Items/QuiverOfInfinity.cs b/Scripts/Items/Special/8th Anniversary Items/QuiverOfInfinity.cs index 60906118b..a7a4f3260 100644 --- a/Scripts/Items/Special/8th Anniversary Items/QuiverOfInfinity.cs +++ b/Scripts/Items/Special/8th Anniversary Items/QuiverOfInfinity.cs @@ -16,9 +16,6 @@ namespace Server.Items LowerAmmoCost = 20; Attributes.DefendChance = 5; - Attributes.WeaponDamage = 10; - DamageIncrease = 10; - } public QuiverOfInfinity( Serial serial ) : base( serial )