mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-03 15:02:16 +02:00
* Fix strong winds calculation * add unit test * Add strong winds effect message * Update src/locales/de/weather.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/es/weather.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/fr/weather.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/it/weather.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/ko/weather.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> --------- Co-authored-by: torranx <torranicles@gmail.com> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com>
46 lines
2.0 KiB
TypeScript
46 lines
2.0 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
||
/**
|
||
* The weather namespace holds text displayed when weather is active during a battle
|
||
*/
|
||
export const weather: SimpleTranslationEntries = {
|
||
"sunnyStartMessage": "La luce solare è intensa!",
|
||
"sunnyLapseMessage": "La luce solare è forte.",
|
||
"sunnyClearMessage": "La luce solare si sta attenuando.",
|
||
|
||
"rainStartMessage": "Ha iniziato a piovere!",
|
||
"rainLapseMessage": "La pioggia continua.",
|
||
"rainClearMessage": "Ha smesso di piovere.",
|
||
|
||
"sandstormStartMessage": "Si è scatenata una tempesta di sabbia!",
|
||
"sandstormLapseMessage": "La tempesta di sabbia infuria.",
|
||
"sandstormClearMessage": "La tempesta di sabbia si è placata.",
|
||
"sandstormDamageMessage": "{{pokemonNameWithAffix}} è stato colpito\ndalla tempesta di sabbia!",
|
||
|
||
"hailStartMessage": "Ha iniziato a grandinare!",
|
||
"hailLapseMessage": "La grandine continua a cadere.",
|
||
"hailClearMessage": "Ha smesso di grandinare.",
|
||
"hailDamageMessage": "{{pokemonNameWithAffix}} è stato colpito\ndalla grandine!",
|
||
|
||
"snowStartMessage": "Ha iniziato a nevicare!",
|
||
"snowLapseMessage": "La neve sta continuando a cadere.",
|
||
"snowClearMessage": "Ha smesso di nevicare!.",
|
||
|
||
"fogStartMessage": "È emersa una fitta nebbia!",
|
||
"fogLapseMessage": "La nebbia continua.",
|
||
"fogClearMessage": "La nebbia è scomparsa.",
|
||
|
||
"heavyRainStartMessage": "Ha iniziato a piovere forte!",
|
||
"heavyRainLapseMessage": "La pioggia battente continua.",
|
||
"heavyRainClearMessage": "La pioggia battente è cessata.",
|
||
|
||
"harshSunStartMessage": "La luce solare è molto intensa!",
|
||
"harshSunLapseMessage": "La luce solare è estremamente calda.",
|
||
"harshSunClearMessage": "La luce solare si sta attenuando.",
|
||
|
||
"strongWindsStartMessage": "È apparsa una corrente d'aria misteriosa!",
|
||
"strongWindsLapseMessage": "La corrente d'aria soffia intensamente.",
|
||
"strongWindsEffectMessage": "La corrente misteriosa indebolisce l’attacco!",
|
||
"strongWindsClearMessage": "La corrente d'aria è cessata."
|
||
};
|