Implements more abilities
All checks were successful
Build / Build (push) Successful in 47s

This commit is contained in:
2025-06-09 12:10:25 +02:00
parent af0126e413
commit 00005aa4bf
50 changed files with 80425 additions and 20485 deletions

View File

@@ -0,0 +1,18 @@
using PkmnLib.Static.Utils;
namespace PkmnLib.Dynamic.Events;
public class WeatherChangeEvent : IEventData
{
public StringKey? OldWeather { get; }
public StringKey? NewWeather { get; }
public WeatherChangeEvent(StringKey? oldWeather, StringKey? newWeather)
{
OldWeather = oldWeather;
NewWeather = newWeather;
}
/// <inheritdoc />
public EventBatchId BatchId { get; init; }
}