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

10
VinFletcher.cs Normal file
View File

@@ -0,0 +1,10 @@
class VinFletcher : Character
{
public VinFletcher()
{
maxHP = 15;
currentHP = maxHP;
name = "Vin Fletcher";
CharacterEnabledActions.AddRange("Punch", "Health Potion", "Items", "Do Nothing");
}
}