Setup empowered action as a Forge ability

This commit is contained in:
2026-03-10 09:22:39 +01:00
parent 9d612682ec
commit 14d29d68bb
10 changed files with 168 additions and 9 deletions

22
forge/ForgeManager.cs Normal file
View File

@@ -0,0 +1,22 @@
using Gamesmiths.Forge.Cues;
using Gamesmiths.Forge.Tags;
using Godot;
namespace Movementtests.tools;
public partial class ForgeManager : Node
{
public CuesManager CuesManager { get; private set; } = new CuesManager();
public TagsManager TagsManager { get; private set; } = new TagsManager(
[
"character.player",
"class.warrior",
"status.stunned",
"status.burning",
"status.immune.fire",
"cues.damage.fire",
"events.combat.damage",
"events.combat.hit",
"cooldown.empoweredAction",
]);
}