2024-06-17 17:05:33 -04:00
|
|
|
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
2024-05-15 19:31:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The weather namespace holds text displayed when weather is active during a battle
|
|
|
|
*/
|
|
|
|
export const weather: SimpleTranslationEntries = {
|
2024-05-23 17:03:10 +02:00
|
|
|
"sunnyStartMessage": "The sunlight got bright!",
|
|
|
|
"sunnyLapseMessage": "The sunlight is strong.",
|
|
|
|
"sunnyClearMessage": "The sunlight faded.",
|
|
|
|
|
|
|
|
"rainStartMessage": "A downpour started!",
|
|
|
|
"rainLapseMessage": "The downpour continues.",
|
|
|
|
"rainClearMessage": "The rain stopped.",
|
|
|
|
|
|
|
|
"sandstormStartMessage": "A sandstorm brewed!",
|
|
|
|
"sandstormLapseMessage": "The sandstorm rages.",
|
|
|
|
"sandstormClearMessage": "The sandstorm subsided.",
|
2024-06-06 15:36:12 +02:00
|
|
|
"sandstormDamageMessage": "{{pokemonNameWithAffix}} is buffeted\nby the sandstorm!",
|
2024-05-23 17:03:10 +02:00
|
|
|
|
|
|
|
"hailStartMessage": "It started to hail!",
|
|
|
|
"hailLapseMessage": "Hail continues to fall.",
|
|
|
|
"hailClearMessage": "The hail stopped.",
|
2024-06-06 15:36:12 +02:00
|
|
|
"hailDamageMessage": "{{pokemonNameWithAffix}} is pelted\nby the hail!",
|
2024-05-23 17:03:10 +02:00
|
|
|
|
|
|
|
"snowStartMessage": "It started to snow!",
|
|
|
|
"snowLapseMessage": "The snow is falling down.",
|
|
|
|
"snowClearMessage": "The snow stopped.",
|
|
|
|
|
|
|
|
"fogStartMessage": "A thick fog emerged!",
|
|
|
|
"fogLapseMessage": "The fog continues.",
|
|
|
|
"fogClearMessage": "The fog disappeared.",
|
|
|
|
|
|
|
|
"heavyRainStartMessage": "A heavy downpour started!",
|
|
|
|
"heavyRainLapseMessage": "The heavy downpour continues.",
|
|
|
|
"heavyRainClearMessage": "The heavy rain stopped.",
|
2024-05-24 01:45:04 +02:00
|
|
|
|
2024-05-23 17:03:10 +02:00
|
|
|
"harshSunStartMessage": "The sunlight got hot!",
|
|
|
|
"harshSunLapseMessage": "The sun is scorching hot.",
|
|
|
|
"harshSunClearMessage": "The harsh sunlight faded.",
|
|
|
|
|
|
|
|
"strongWindsStartMessage": "A heavy wind began!",
|
|
|
|
"strongWindsLapseMessage": "The wind blows intensely.",
|
2024-07-05 14:59:53 -04:00
|
|
|
"strongWindsEffectMessage": "The mysterious air current weakened the attack!",
|
2024-05-23 17:03:10 +02:00
|
|
|
"strongWindsClearMessage": "The heavy wind stopped."
|
|
|
|
};
|
2024-07-08 23:16:55 +09:00
|
|
|
|
|
|
|
export const terrain: SimpleTranslationEntries = {
|
|
|
|
"misty": "Misty",
|
|
|
|
"mistyStartMessage": "Mist swirled around the battlefield!",
|
|
|
|
"mistyClearMessage": "The mist disappeared from the battlefield.",
|
|
|
|
"mistyBlockMessage": "{{pokemonNameWithAffix}} surrounds itself with a protective mist!",
|
|
|
|
|
|
|
|
"electric": "Electric",
|
|
|
|
"electricStartMessage": "An electric current ran across the battlefield!",
|
|
|
|
"electricClearMessage": "The electricity disappeared from the battlefield.",
|
|
|
|
|
|
|
|
"grassy": "Grassy",
|
|
|
|
"grassyStartMessage": "Grass grew to cover the battlefield!",
|
|
|
|
"grassyClearMessage": "The grass disappeared from the battlefield.",
|
|
|
|
|
|
|
|
"psychic": "Psychic",
|
|
|
|
"psychicStartMessage": "The battlefield got weird!",
|
|
|
|
"psychicClearMessage": "The weirdness disappeared from the battlefield!",
|
|
|
|
|
|
|
|
"defaultBlockMessage": "{{pokemonNameWithAffix}} is protected by the {{terrainName}} Terrain!"
|
|
|
|
};
|