Implements sandstorm
All checks were successful
Build / Build (push) Successful in 50s

This commit is contained in:
2025-06-22 10:53:56 +02:00
parent 2533512eda
commit 02510fd1d0
6 changed files with 74 additions and 5 deletions

View File

@@ -139,4 +139,11 @@ public static class CustomTriggers
{
public bool Prevent { get; set; } = false;
}
public static readonly StringKey BypassSandstormDamage = "bypass_sandstorm_damage";
public record BypassSandstormDamageArgs(IPokemon Pokemon) : ICustomTriggerArgs
{
public bool Bypass { get; set; } = false;
}
}