addAdjectiveAliases(adjectives: string[]): void {

    for (const adjective of adjectives) {
      LoggingService.instance.log(`Registering adjective '${adjective}' for object '${this.name}'`);
      this.adjectives.push(adjective.toLocaleLowerCase());