Implementation of Pokeballs
This commit is contained in:
@@ -1,10 +1,19 @@
|
||||
using PkmnLib.Dynamic.Models;
|
||||
using PkmnLib.Static;
|
||||
using PkmnLib.Static.Utils;
|
||||
|
||||
namespace PkmnLib.Dynamic.ScriptHandling;
|
||||
|
||||
public abstract class ItemScript : IDeepCloneable
|
||||
{
|
||||
protected ItemScript(IItem item)
|
||||
{
|
||||
Item = item;
|
||||
}
|
||||
|
||||
protected IItem Item { get; private set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Initializes the script with the given parameters for a specific item
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user