Ejemplo n.º 1
0
	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;

	}
Ejemplo n.º 2
0
 public static string FoeTypePretty(FoeType type)
 {
     return(type.ToString().Humanize(LetterCasing.Title));
 }
Ejemplo n.º 3
0
 public Foe(StarName stars, FoeType type, bool elite = false)
 {
     Stars = stars;
     Type  = type;
     Elite = elite;
 }