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

View File

@@ -4,7 +4,10 @@ public abstract class Character
public int maxHP {get; set;}
public int currentHP {get; set;}
public bool dead {get; set;} = false;
public string turnMarker = "*";
public bool isTurn {get; set;} = false;
public List<string>CharacterEnabledActions = new List<string>();
public bool isTurn {get; set;}
public List<string>? CharacterEnabledActions = new List<string>();
public int damageReduction {get; set;} = 0;
public int damageModifier {get; set;} = 0;
public List<Item>? equipedItems = new List<Item>();
public List<string>? CharacterDisabledActions = new List<string>();
}