Move all battle state from IPokemon to an ephemeral IBattlePokemon wrapper
This commit is contained in:
@@ -9,11 +9,11 @@ namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
|
||||
public class Synchronize : Script, IScriptOnAfterStatusChange
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public void OnAfterStatusChange(IPokemon pokemon, StringKey status, IPokemon? originPokemon)
|
||||
public void OnAfterStatusChange(IBattlePokemon pokemon, StringKey status, IPokemon? originPokemon)
|
||||
{
|
||||
if (originPokemon == null || pokemon == originPokemon)
|
||||
return;
|
||||
pokemon.BattleData?.Battle.EventHook.Invoke(new AbilityTriggerEvent(pokemon));
|
||||
pokemon.Battle.EventHook.Invoke(new AbilityTriggerEvent(pokemon));
|
||||
originPokemon.SetStatus(status, pokemon);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user