Committing language changes (i18n function)

pull/765/head
Tiduzz 2024-05-13 00:09:55 -03:00
parent ef052aab6d
commit 2a3152003b
3 changed files with 313 additions and 2 deletions

View File

@ -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

View File

@ -23,7 +23,8 @@ export interface MoveTranslationEntries {
export interface AbilityTranslationEntry {
name: string,
description: string
description: string,
sceneMessage: string
}
export interface AbilityTranslationEntries {