Lots more work on implementing battling

This commit is contained in:
2024-08-10 09:44:46 +02:00
parent 554e1cf2cd
commit a049dda240
29 changed files with 1226 additions and 48 deletions

View File

@@ -2,8 +2,12 @@ using PkmnLib.Dynamic.Models;
namespace PkmnLib.Dynamic.Events;
/// <summary>
/// Event triggered when a Pokemon is healed.
/// </summary>
public class HealEvent : IEventData
{
/// <inheritdoc cref="HealEvent"/>
public HealEvent(IPokemon pokemon, uint previousHealth, uint newHealth)
{
Pokemon = pokemon;
@@ -11,11 +15,22 @@ public class HealEvent : IEventData
NewHealth = newHealth;
}
/// <summary>
/// The Pokemon that was healed.
/// </summary>
public IPokemon Pokemon { get; }
/// <summary>
/// The previous health of the Pokemon.
/// </summary>
public uint PreviousHealth { get; }
/// <summary>
/// The new health of the Pokemon.
/// </summary>
public uint NewHealth { get; }
/// <inheritdoc />
public EventBatchId BatchId { get; init; } = new();
}