Even more moves
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-05-05 16:58:03 +02:00
parent 292c303fc0
commit 7727f92f4e
132 changed files with 624 additions and 171 deletions

View File

@@ -307,7 +307,7 @@ public abstract class Script : IDeepCloneable
/// <summary>
/// This function allows a script to change the effective base power of a move hit.
/// </summary>
public virtual void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref byte basePower)
public virtual void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref ushort basePower)
{
}
@@ -697,4 +697,8 @@ public abstract class Script : IDeepCloneable
public virtual void PreventVolatileAdd(Script script, ref bool preventVolatileAdd)
{
}
public virtual void IsFloating(IPokemon pokemon, ref bool isFloating)
{
}
}