예제 #1
0
        public string GetMoveName(PokemonMove move)
        {
            var val = move.ToString();

            if (val.ToLower().EndsWith("fast"))
            {
                val = val.Substring(0, val.Length - 4);
            }
            return(val);
        }