Changed a lot of Actions.cs and a few other things to be more easily

extendable.
This commit is contained in:
2025-09-03 23:32:20 -05:00
parent 69e6699e26
commit e4b230a0ad
21 changed files with 834 additions and 314 deletions

11
Amarok.cs Normal file
View File

@@ -0,0 +1,11 @@
public class Amarok : Character
{
public Amarok()
{
maxHP = 4;
currentHP = maxHP;
name = "Amarok";
damageReduction = 1;
CharacterEnabledActions.AddRange("Bite", "Health Potion", "Do Nothing");
}
}