/// <summary> /// Checks if we have a glyph or not /// </summary> /// <param name = "glyphName">Name of the glyph without "Glyph of". i.e. HasGlyph("Aquatic Form")</param> /// <returns></returns> public static bool HasGlyph(string glyphName) { return(Glyphs.Any() && Glyphs.Contains(glyphName)); }