mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-05 16:02:20 +02:00
parent
b6df2c038e
commit
34c2089bd6
@ -331,7 +331,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
|
|||||||
this.name = this.species.getName(this.formIndex);
|
this.name = this.species.getName(this.formIndex);
|
||||||
return;
|
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) {
|
if (this.battleInfo) {
|
||||||
this.updateInfo(true);
|
this.updateInfo(true);
|
||||||
}
|
}
|
||||||
|
@ -10,10 +10,12 @@ export interface SimpleTranslationEntries {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface FusionTranslationEntries {
|
export interface FusionTranslationEntries {
|
||||||
[key: string]: {
|
[key: string]: FusionTranslationEntry,
|
||||||
fusionPrefix: string;
|
}
|
||||||
fusionSuffix: string;
|
|
||||||
};
|
export interface FusionTranslationEntry {
|
||||||
|
fusionPrefix: string,
|
||||||
|
fusionSuffix: string,
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface MoveTranslationEntry {
|
export interface MoveTranslationEntry {
|
||||||
|
Loading…
Reference in New Issue
Block a user