// -----------------------------------------------------------------------
//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
// -----------------------------------------------------------------------
namespace MUnique.OpenMU.GameLogic.PlayerActions.ItemConsumeActions;
using System.Runtime.InteropServices;
using MUnique.OpenMU.PlugIns;
///
/// Consume handler for middle health potions.
///
[Guid("2ED0A431-B562-4097-AAE4-C972074BDCBA")]
[PlugIn]
[Display(Name = nameof(PlugInResources.MediumHealthPotionConsumeHandlerPlugIn_Name), Description = nameof(PlugInResources.MediumHealthPotionConsumeHandlerPlugIn_Description), ResourceType = typeof(PlugInResources))]
public class MediumHealthPotionConsumeHandlerPlugIn : HealthPotionConsumeHandlerPlugIn
{
///
public override ItemIdentifier Key => ItemConstants.MediumHealingPotion;
///
protected override int Multiplier => 2;
}