public Foes (string name, int id, float health, float speed, int dmg, FoeType type1, FoeType type2) { foeName = name; foeID = id; foeHealth = health; foeSpeed = speed; foeDmg = dmg; foeType1 = type1; foeType2 = type2; }
public static string FoeTypePretty(FoeType type) { return(type.ToString().Humanize(LetterCasing.Title)); }
public Foe(StarName stars, FoeType type, bool elite = false) { Stars = stars; Type = type; Elite = elite; }