Fix partial and unimplemented indicators not showing on abilities
This commit is contained in:
parent
095667c7c9
commit
a0311f4b0f
|
@ -22,6 +22,8 @@ import i18next, { Localizable } from "#app/plugins/i18n.js";
|
||||||
|
|
||||||
export class Ability implements Localizable {
|
export class Ability implements Localizable {
|
||||||
public id: Abilities;
|
public id: Abilities;
|
||||||
|
|
||||||
|
private nameAppend: string;
|
||||||
public name: string;
|
public name: string;
|
||||||
public description: string;
|
public description: string;
|
||||||
public generation: integer;
|
public generation: integer;
|
||||||
|
@ -32,6 +34,8 @@ export class Ability implements Localizable {
|
||||||
|
|
||||||
constructor(id: Abilities, generation: integer) {
|
constructor(id: Abilities, generation: integer) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
|
|
||||||
|
this.nameAppend = '';
|
||||||
this.generation = generation;
|
this.generation = generation;
|
||||||
this.attrs = [];
|
this.attrs = [];
|
||||||
this.conditions = [];
|
this.conditions = [];
|
||||||
|
@ -42,7 +46,7 @@ export class Ability implements Localizable {
|
||||||
localize(): void {
|
localize(): void {
|
||||||
const i18nKey = Abilities[this.id].split('_').filter(f => f).map((f, i) => i ? `${f[0]}${f.slice(1).toLowerCase()}` : f.toLowerCase()).join('') as string;
|
const i18nKey = Abilities[this.id].split('_').filter(f => f).map((f, i) => i ? `${f[0]}${f.slice(1).toLowerCase()}` : f.toLowerCase()).join('') as string;
|
||||||
|
|
||||||
this.name = this.id ? i18next.t(`ability:${i18nKey}.name`) as string : '';
|
this.name = this.id ? `${i18next.t(`ability:${i18nKey}.name`) as string}${this.nameAppend}` : '';
|
||||||
this.description = this.id ? i18next.t(`ability:${i18nKey}.description`) as string : '';
|
this.description = this.id ? i18next.t(`ability:${i18nKey}.description`) as string : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -86,12 +90,12 @@ export class Ability implements Localizable {
|
||||||
}
|
}
|
||||||
|
|
||||||
partial(): this {
|
partial(): this {
|
||||||
this.name += ' (P)';
|
this.nameAppend += ' (P)';
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
unimplemented(): this {
|
unimplemented(): this {
|
||||||
this.name += ' (N)';
|
this.nameAppend += ' (N)';
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue