Even more abilities
All checks were successful
Build / Build (push) Successful in 51s

This commit is contained in:
2025-06-14 13:21:23 +02:00
parent 4b07f36176
commit 5961bb746e
31 changed files with 787 additions and 157 deletions

View File

@@ -116,4 +116,20 @@ public static class CustomTriggers
public uint Damage { get; set; } = Damage;
public bool Invert { get; set; } = false;
}
public static readonly StringKey ModifyRecoil = "modify_recoil";
public record ModifyRecoilArgs(IExecutingMove Move, IPokemon Target, byte Hit, uint Damage, uint Recoil)
: ICustomTriggerArgs
{
public uint Recoil { get; set; } = Recoil;
public bool Prevent { get; set; } = false;
}
public static readonly StringKey Modify2_5HitMove = "modify_2_5_hit_move";
public record Modify2_5HitMoveArgs(IMoveChoice moveChoice, byte NumberOfHits) : ICustomTriggerArgs
{
public byte NumberOfHits { get; set; } = NumberOfHits;
}
}