First couple abilities implemented
All checks were successful
Build / Build (push) Successful in 48s
All checks were successful
Build / Build (push) Successful in 48s
This commit is contained in:
20
PkmnLib.Dynamic/Events/AbilityTriggerEvent.cs
Normal file
20
PkmnLib.Dynamic/Events/AbilityTriggerEvent.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using PkmnLib.Dynamic.Models;
|
||||
using PkmnLib.Static.Species;
|
||||
using PkmnLib.Static.Utils;
|
||||
|
||||
namespace PkmnLib.Dynamic.Events;
|
||||
|
||||
public record AbilityTriggerEvent : IEventData
|
||||
{
|
||||
public IPokemon Pokemon { get; }
|
||||
public IAbility? Ability { get; }
|
||||
|
||||
public AbilityTriggerEvent(IPokemon pokemon)
|
||||
{
|
||||
Pokemon = pokemon;
|
||||
Ability = pokemon.ActiveAbility;
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public EventBatchId BatchId { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user