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

@@ -0,0 +1,19 @@
using PkmnLib.Dynamic.Libraries;
using PkmnLib.Dynamic.Models;
namespace PkmnLib.Dynamic.Events;
public class CaptureAttemptEvent : IEventData
{
public CaptureAttemptEvent(IPokemon target, CaptureResult result)
{
Target = target;
Result = result;
}
public IPokemon Target { get; init; }
public CaptureResult Result { get; init; }
/// <inheritdoc />
public EventBatchId BatchId { get; init; }
}