Implements a bunch more moves

This commit is contained in:
2025-03-08 14:39:50 +01:00
parent 8f262cb4a6
commit 77f1ab243b
33 changed files with 935 additions and 57 deletions

View File

@@ -477,7 +477,7 @@ public abstract class Script : IDeepCloneable
/// This function is triggered on a Pokemon and its parents when the given Pokemon is switched into
/// the battlefield.
/// </summary>
public virtual void OnSwitchIn(IPokemon pokemon)
public virtual void OnSwitchIn(IPokemon pokemon, byte position)
{
}
@@ -563,4 +563,8 @@ public abstract class Script : IDeepCloneable
public virtual void ChangeWeatherDuration(StringKey weatherName, ref int duration)
{
}
public virtual void PreventHeal(IPokemon pokemon, uint heal, bool allowRevive, ref bool prevented)
{
}
}