public static string GetGrowStepName(string growStep)
        {
            string result = StringMaster.GetString("CharaStatus-03");

            GameWebAPI.RespDataMA_GetMonsterGrowStepM.MonsterGrowStepM growStepMaster = MonsterGrowStepData.GetGrowStepMaster(growStep);
            if (growStepMaster != null)
            {
                result = growStepMaster.monsterGrowStepName;
            }
            return(result);
        }