trainer dialogue

This commit is contained in:
ARSOD-Z 2024-04-10 21:48:06 -03:00
parent bd556e3c68
commit 430f756550
2 changed files with 1663 additions and 9 deletions

File diff suppressed because it is too large Load Diff

View File

@ -309,7 +309,7 @@ export class TrainerConfig {
}
setEncounterBgm(encounterBgm: TrainerType | string): TrainerConfig {
this.encounterBgm = typeof encounterBgm === 'number' ? TrainerType[encounterBgm].toString().replace(/\_/g, ' ').toLowerCase() : encounterBgm;
this.encounterBgm = typeof encounterBgm === 'number' ? TrainerType[encounterBgm].toString().toLowerCase() : encounterBgm;
return this;
}