Added minigame to attack action

This commit is contained in:
jonathan
2025-10-02 15:49:24 +02:00
parent 8624e2aea8
commit 8bb1c22549
6 changed files with 92 additions and 6 deletions
@@ -0,0 +1,26 @@
using System.Collections.Generic;
namespace Babushka.scripts.CSharp.Common.Fight.ActionDetails;
public class MinigameActionDetail : FighterAction.FighterActionDetail
{
// settings
// result
public List<int>? damageHits = null;
public MinigameActionDetail()
{
}
public override bool DetailComplete()
{
return damageHits != null;
}
public void ResetResult()
{
damageHits = null;
}
}