mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-05 07:52:17 +02:00
locales.ts correction
This commit is contained in:
parent
d8f05bbb34
commit
07041a1167
@ -300,7 +300,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
|
||||
this.name = this.species.getName(this.formIndex);
|
||||
return;
|
||||
}
|
||||
this.name = getFusedSpeciesName(this.species.getName(this.formIndex), this.fusionSpecies.getName(this.fusionFormIndex));
|
||||
this.name = getFusedSpeciesName(this.species.getName(this.species), this.fusionSpecies.getName(Species));
|
||||
if (this.battleInfo) {
|
||||
this.updateInfo(true);
|
||||
}
|
||||
|
@ -10,11 +10,13 @@ export interface SimpleTranslationEntries {
|
||||
}
|
||||
|
||||
export interface FusionTranslationEntries {
|
||||
[key: string]: {
|
||||
fusionPrefix: string;
|
||||
fusionSuffix: string;
|
||||
};
|
||||
}
|
||||
[key: string]: FusionTranslationEntry,
|
||||
}
|
||||
|
||||
export interface FusionTranslationEntry {
|
||||
fusionPrefix: string,
|
||||
fusionSuffix: string,
|
||||
}
|
||||
|
||||
export interface MoveTranslationEntry {
|
||||
name: string,
|
||||
|
Loading…
Reference in New Issue
Block a user