ModernUO/Projects/UOContent/Items/Skill Items/Magical/Potions/Strength Potions/BaseStrengthPotion.cs
2024-07-06 16:49:23 -07:00

40 lines
987 B
C#

using System;
using ModernUO.Serialization;
using Server.Spells;
namespace Server.Items;
[SerializationGenerator(0, false)]
public abstract partial class BaseStrengthPotion : BasePotion
{
public BaseStrengthPotion(PotionEffect effect) : base(0xF09, effect)
{
}
public abstract int StrOffset { get; }
public abstract TimeSpan Duration { get; }
public override bool CanDrink(Mobile from)
{
if (!base.CanDrink(from))
{
return false;
}
// TODO: Verify scaled; is it offset, duration, or both?
if (!SpellHelper.AddStatOffset(from, StatType.Str, Scale(from, StrOffset), Duration))
{
from.SendLocalizedMessage(502173); // You are already under a similar effect.
return false;
}
from.FixedEffect(0x375A, 10, 15);
from.PlaySound(0x1E7);
return true;
}
public override void Drink(Mobile from)
{
PlayDrinkEffect(from);
}
}