Fix move implementation indicators
parent
15b5afd630
commit
703f8c43c2
|
@ -91,6 +91,7 @@ export default class Move implements Localizable {
|
||||||
public attrs: MoveAttr[];
|
public attrs: MoveAttr[];
|
||||||
private conditions: MoveCondition[];
|
private conditions: MoveCondition[];
|
||||||
private flags: integer;
|
private flags: integer;
|
||||||
|
private nameAppend: string;
|
||||||
|
|
||||||
constructor(id: Moves, type: Type, category: MoveCategory, defaultMoveTarget: MoveTarget, power: integer, accuracy: integer, pp: integer, chance: integer, priority: integer, generation: integer) {
|
constructor(id: Moves, type: Type, category: MoveCategory, defaultMoveTarget: MoveTarget, power: integer, accuracy: integer, pp: integer, chance: integer, priority: integer, generation: integer) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
|
@ -98,6 +99,7 @@ export default class Move implements Localizable {
|
||||||
const i18nKey = Moves[id].split('_').filter(f => f).map((f, i) => i ? `${f[0]}${f.slice(1).toLowerCase()}` : f.toLowerCase()).join('') as unknown as string;
|
const i18nKey = Moves[id].split('_').filter(f => f).map((f, i) => i ? `${f[0]}${f.slice(1).toLowerCase()}` : f.toLowerCase()).join('') as unknown as string;
|
||||||
|
|
||||||
this.name = id ? i18next.t(`move:${i18nKey}.name`).toString() : '';
|
this.name = id ? i18next.t(`move:${i18nKey}.name`).toString() : '';
|
||||||
|
this.nameAppend = '';
|
||||||
this.type = type;
|
this.type = type;
|
||||||
this.category = category;
|
this.category = category;
|
||||||
this.moveTarget = defaultMoveTarget;
|
this.moveTarget = defaultMoveTarget;
|
||||||
|
@ -122,8 +124,8 @@ export default class Move implements Localizable {
|
||||||
localize() {
|
localize() {
|
||||||
const i18nKey = Moves[this.id].split('_').filter(f => f).map((f, i) => i ? `${f[0]}${f.slice(1).toLowerCase()}` : f.toLowerCase()).join('') as unknown as string;
|
const i18nKey = Moves[this.id].split('_').filter(f => f).map((f, i) => i ? `${f[0]}${f.slice(1).toLowerCase()}` : f.toLowerCase()).join('') as unknown as string;
|
||||||
|
|
||||||
this.name = this.id ? i18next.t(`move:${i18nKey}.name`).toString() : '';
|
this.name = this.id ? `${i18next.t(`move:${i18nKey}.name`).toString()}${this.nameAppend}` : '';
|
||||||
this.effect = this.id ? i18next.t(`move:${i18nKey}.effect`).toString() : '';
|
this.effect = this.id ? `${i18next.t(`move:${i18nKey}.effect`).toString()}${this.nameAppend}` : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
getAttrs(attrType: { new(...args: any[]): MoveAttr }): MoveAttr[] {
|
getAttrs(attrType: { new(...args: any[]): MoveAttr }): MoveAttr[] {
|
||||||
|
@ -203,12 +205,12 @@ export default class Move 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