public string GetMoveName(PokemonMove move) { var val = move.ToString(); if (val.ToLower().EndsWith("fast")) { val = val.Substring(0, val.Length - 4); } return(val); }