1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-08 02:59:18 +00:00

Added BW translation (#65)

* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-09-02 12:01:58 +02:00
committed by GitHub
parent b46b2c4fb9
commit e21ea0646e
1290 changed files with 8757 additions and 1960 deletions

View File

@ -5,23 +5,32 @@ const card: Card = {
name: {
en: "Shedinja",
fr: "Munja",
es: "Shedinja",
it: "Shedinja",
pt: "Shedinja",
de: "Ninjatom"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
292,
],
hp: 60,
types: [
"Psychic",
],
evolveFrom: {
en: "Nincada",
fr: "Ningale",
},
stage: "Stage1",
abilities: [
@ -30,13 +39,22 @@ const card: Card = {
name: {
en: "Empty Shell",
fr: "Coquille Vide",
es: "Concha Vacía",
it: "Guscio Vuoto",
pt: "Casca Vazia",
de: "Leerer Panzer"
},
effect: {
en: "If this Pokémon is Knocked Out, your opponent can't take any Prize cards for it.",
en: "If this Pokémon is Knocked Out, your opponent cant take any Prize cards for it.",
fr: "Si ce Pokémon est mis K.O., votre adversaire ne peut pas récupérer de carte Récompense pour ce Pokémon.",
es: "Si este Pokémon queda Fuera de Combate, tu rival no puede coger ninguna carta de Premio por él.",
it: "Se questo Pokémon viene messo K.O., il tuo avversario non può pescare carte Premio per questo Pokémon.",
pt: "Se este Pokémon for Nocauteado, seu oponente não poderá receber cards de Prêmio por ele.",
de: "Wenn dieses Pokémon kampfunfähig wird, darf dein Gegner dafür keine der Preiskarten nehmen."
},
},
],
attacks: [
{
cost: [
@ -54,11 +72,7 @@ const card: Card = {
},
],
retreat: 0
}
export default card