mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-03 06:37:12 +00:00
0bc4f26b9d
* make postposition not to dynamic for localize * localize status-effect.ts * added test code, modified english postposition, modifed toxic_orb test to make it always fix in English. * Update src/locales/zh_CN/status-effect.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/fr/status-effect.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * Update src/locales/de/status-effect.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/de/status-effect.ts * added test code for check message key * remove multi-language tests (except english) * Update src/locales/pt_BR/status-effect.ts Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br> * remove language and change test code to check method call and parameter * Update src/locales/es/status-effect.ts Co-authored-by: GoldTra <162721984+GoldTra@users.noreply.github.com> * Update src/locales/en/status-effect.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * Apply review suggestion * Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> * Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> * Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> * add Test with empty string parameter * Update src/locales/es/status-effect.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> * Update src/locales/fr/status-effect.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> --------- Co-authored-by: 송지원 <jiwsong@gmarket.com> Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br> Co-authored-by: GoldTra <162721984+GoldTra@users.noreply.github.com> Co-authored-by: InnocentGameDev <asdargmng@gmail.com>
68 lines
2.6 KiB
TypeScript
68 lines
2.6 KiB
TypeScript
import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js";
|
|
|
|
export const statusEffect: StatusEffectTranslationEntries = {
|
|
none: {
|
|
name: "无",
|
|
description: "",
|
|
obtain: "",
|
|
obtainSource: "",
|
|
activation: "",
|
|
overlap: "",
|
|
heal: ""
|
|
},
|
|
poison: {
|
|
name: "中毒",
|
|
description: "中毒",
|
|
obtain: "{{pokemonNameWithAffix}}中毒了!",
|
|
obtainSource: "{{pokemonNameWithAffix}}因{{sourceText}}中毒了!",
|
|
activation: "{{pokemonNameWithAffix}}受到了毒的伤害!",
|
|
overlap: "{{pokemonNameWithAffix}}已经中毒了!",
|
|
heal: "{{pokemonNameWithAffix}}中的毒彻底清除了!"
|
|
},
|
|
toxic: {
|
|
name: "剧毒",
|
|
description: "中毒",
|
|
obtain: "{{pokemonNameWithAffix}}中了剧毒!",
|
|
obtainSource: "{{pokemonNameWithAffix}}因{{sourceText}}中了剧毒!",
|
|
activation: "{{pokemonNameWithAffix}}受到了毒的伤害!",
|
|
overlap: "{{pokemonNameWithAffix}}已经中毒了!",
|
|
heal: "{{pokemonNameWithAffix}}中的毒彻底清除了!"
|
|
},
|
|
paralysis: {
|
|
name: "麻痹",
|
|
description: "麻痹",
|
|
obtain: "{{pokemonNameWithAffix}}麻痹了,很难使出招式!",
|
|
obtainSource: "{{pokemonNameWithAffix}}被{{sourceText}}麻痹了,很难使出招式!",
|
|
activation: "{{pokemonNameWithAffix}}因身体麻痹而无法行动!",
|
|
overlap: "{{pokemonNameWithAffix}}已经麻痹了!",
|
|
heal: "{{pokemonNameWithAffix}}的麻痹治愈了!"
|
|
},
|
|
sleep: {
|
|
name: "睡眠",
|
|
description: "睡眠",
|
|
obtain: "{{pokemonNameWithAffix}}睡着了!",
|
|
obtainSource: "{{pokemonNameWithAffix}}因{{sourceText}}睡着了!",
|
|
activation: "{{pokemonNameWithAffix}}正在呼呼大睡。",
|
|
overlap: "{{pokemonNameWithAffix}}已经睡着了!",
|
|
heal: "{{pokemonNameWithAffix}}醒了!"
|
|
},
|
|
freeze: {
|
|
name: "冰冻",
|
|
description: "冰冻",
|
|
obtain: "{{pokemonNameWithAffix}}冻住了!",
|
|
obtainSource: "{{pokemonNameWithAffix}}因{{sourceText}}冻住了!",
|
|
activation: "{{pokemonNameWithAffix}}因冻住了而无法行动!",
|
|
overlap: "{{pokemonNameWithAffix}}已经冻住了!",
|
|
heal: "{{pokemonNameWithAffix}}治愈了冰冻状态!"
|
|
},
|
|
burn: {
|
|
name: "灼伤",
|
|
description: "灼伤",
|
|
obtain: "{{pokemonNameWithAffix}}被灼伤了!",
|
|
obtainSource: "{{pokemonNameWithAffix}}因{{sourceText}}被灼伤了!",
|
|
activation: "{{pokemonNameWithAffix}}受到了灼伤的伤害!",
|
|
overlap: "{{pokemonNameWithAffix}}已经被灼伤了!",
|
|
heal: "{{pokemonNameWithAffix}}的灼伤治愈了!"
|
|
},
|
|
} as const;
|