More moves

This commit is contained in:
2025-04-17 10:22:24 +02:00
parent 7c2845502d
commit 1b54c78b07
9 changed files with 172 additions and 16 deletions

View File

@@ -139,6 +139,8 @@ public interface IExecutingMove : IScriptSource
/// The underlying move choice.
/// </summary>
IMoveChoice MoveChoice { get; }
IReadOnlyList<IHitData> Hits { get; }
}
/// <inheritdoc cref="IExecutingMove"/>
@@ -225,6 +227,9 @@ public class ExecutingMoveImpl : ScriptSource, IExecutingMove
/// <inheritdoc />
public IMoveChoice MoveChoice { get; }
/// <inheritdoc />
public IReadOnlyList<IHitData> Hits => _hits;
/// <inheritdoc />
public override int ScriptCount => 2 + User.ScriptCount;