ModernUO/Projects/UOContent/Items/Champion Artifacts/Shared/OblivionsNeedle.cs
2021-08-21 13:03:05 -07:00

24 lines
642 B
C#

namespace Server.Items
{
[Serializable(0, false)]
public partial class OblivionsNeedle : Dagger
{
[Constructible]
public OblivionsNeedle()
{
Attributes.BonusStam = 20;
Attributes.AttackChance = 20;
Attributes.DefendChance = -20;
Attributes.WeaponDamage = 40;
WeaponAttributes.HitLeechStam = 50;
}
public override int LabelNumber => 1094916; // Oblivion's Needle [Replica]
public override int InitMinHits => 150;
public override int InitMaxHits => 150;
public override bool CanFortify => false;
}
}