ModernUO/Projects/UOContent/Items/Skill Items/Magical/Potions/Strength Potions/StrengthPotion.cs
2023-03-02 21:27:42 -08:00

16 lines
366 B
C#

using System;
using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class StrengthPotion : BaseStrengthPotion
{
[Constructible]
public StrengthPotion() : base(PotionEffect.Strength)
{
}
public override int StrOffset => 10;
public override TimeSpan Duration => TimeSpan.FromMinutes(2.0);
}