Implementation of Pokeballs

This commit is contained in:
2025-01-10 11:58:23 +01:00
parent 0518499a4c
commit 42e3273483
15 changed files with 254 additions and 12 deletions

View File

@@ -2,6 +2,7 @@ using System.Collections.Generic;
using PkmnLib.Dynamic.Models;
using PkmnLib.Dynamic.ScriptHandling;
using PkmnLib.Dynamic.ScriptHandling.Registry;
using PkmnLib.Static;
using PkmnLib.Static.Utils;
namespace PkmnLib.Plugin.Gen7.Scripts.Items;
@@ -11,6 +12,11 @@ public class HealingItem : ItemScript
{
private uint _healAmount;
/// <inheritdoc />
public HealingItem(IItem item) : base(item)
{
}
/// <inheritdoc />
public override bool IsItemUsable => true;