ModernUO/Projects/UOContent/Items/Skill Items/Magical/Potions/Refresh Potions/RefreshPotion.cs

14 lines
283 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class RefreshPotion : BaseRefreshPotion
{
[Constructible]
public RefreshPotion() : base(PotionEffect.Refresh)
{
}
public override double Refresh => 0.25;
}