Many more tests and fixes
All checks were successful
Build / Build (push) Successful in 3m12s

This commit is contained in:
2026-08-27 17:11:12 +02:00
parent 32b3ef9c4a
commit d2a82b5fe3
204 changed files with 20255 additions and 242 deletions

View File

@@ -32,6 +32,11 @@ public interface IHitData
/// </summary>
uint Damage { get; }
/// <summary>
/// Gets set to true after the hit has fully executed, and has not been interrupted by anything.
/// </summary>
bool HasExecuted { get; }
/// <summary>
/// The type of the hit. Null if the move is typeless.
/// </summary>
@@ -78,6 +83,9 @@ public record HitData : IHitData
/// <inheritdoc />
public uint Damage { get; internal set; }
/// <inheritdoc />
public bool HasExecuted { get; internal set; }
/// <inheritdoc />
public TypeIdentifier? Type { get; internal set; }