More abilities
All checks were successful
Build / Build (push) Successful in 48s

This commit is contained in:
2025-06-13 15:39:08 +02:00
parent 4385f0afaa
commit 24712fbb0d
16 changed files with 238 additions and 16 deletions

View File

@@ -108,4 +108,12 @@ public static class CustomTriggers
{
public float HealPercent { get; set; } = HealPercent;
}
public static readonly StringKey PoisonedDamage = "poisoned_damage";
public record PoisonedDamageArgs(IPokemon Pokemon, uint Damage) : ICustomTriggerArgs
{
public uint Damage { get; set; } = Damage;
public bool Invert { get; set; } = false;
}
}