This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user