Even more moves
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-05-05 16:58:03 +02:00
parent 292c303fc0
commit 7727f92f4e
132 changed files with 624 additions and 171 deletions

View File

@@ -20,7 +20,7 @@ public interface IHitData
/// <summary>
/// The base power of the hit.
/// </summary>
byte BasePower { get; }
ushort BasePower { get; }
/// <summary>
/// The effectiveness of the hit.
@@ -55,7 +55,7 @@ public record HitData : IHitData
public bool IsCritical { get; internal set; }
/// <inheritdoc />
public byte BasePower { get; internal set; }
public ushort BasePower { get; internal set; }
/// <inheritdoc />
public float Effectiveness { get; internal set; }