Committing language changes (i18n function)
This commit is contained in:
parent
ef052aab6d
commit
2a3152003b
|
@ -3015,7 +3015,7 @@ export function initAbilities() {
|
|||
.ignorable(),
|
||||
new Ability(Abilities.AIR_LOCK, 3)
|
||||
.attr(SuppressWeatherEffectAbAttr, true)
|
||||
.attr(PostSummonUnnamedMessageAbAttr, "The effects of the weather disappeared."),
|
||||
.attr(PostSummonUnnamedMessageAbAttr, ability.airLock.sceneMessage),
|
||||
new Ability(Abilities.TANGLED_FEET, 4)
|
||||
.conditionalAttr(pokemon => !!pokemon.getTag(BattlerTagType.CONFUSED), BattleStatMultiplierAbAttr, BattleStat.EVA, 2)
|
||||
.ignorable(),
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -23,7 +23,8 @@ export interface MoveTranslationEntries {
|
|||
|
||||
export interface AbilityTranslationEntry {
|
||||
name: string,
|
||||
description: string
|
||||
description: string,
|
||||
sceneMessage: string
|
||||
}
|
||||
|
||||
export interface AbilityTranslationEntries {
|
||||
|
|
Loading…
Reference in New Issue