// ----------------------------------------------------------------------- // // 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 gib mana potions. /// [Guid("21CB28A4-BE9A-421C-9C7C-6F2E0FC9D614")] [PlugIn] [Display(Name = nameof(PlugInResources.LargeManaPotionConsumeHandler_Name), Description = nameof(PlugInResources.LargeManaPotionConsumeHandler_Description), ResourceType = typeof(PlugInResources))] public class LargeManaPotionConsumeHandler : ManaPotionConsumeHandler { /// public override ItemIdentifier Key => ItemConstants.LargeManaPotion; /// protected override int Multiplier => 3; }