1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +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

@ -4,22 +4,32 @@ import Set from '../Dark Explorers'
const card: Card = {
name: {
en: "Slowbro",
fr: "Flagadoss",
es: "Slowbro",
it: "Slowbro",
pt: "Slowbro",
de: "Lahmus"
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
80,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Slowpoke",
},
stage: "Stage1",
abilities: [
@ -27,12 +37,23 @@ const card: Card = {
type: "Ability",
name: {
en: "Airhead",
fr: "Corniaud",
es: "Cabeza Hueca",
it: "Zuccavuota",
pt: "Cabeça Oca",
de: "Tagträumerei"
},
effect: {
en: "If you have 2, 4, or 6 Prize cards left, this Pokémon can't attack.",
en: "If you have 2, 4, or 6 Prize cards left, this Pokémon cant attack.",
fr: "Sil vous reste 2, 4 ou 6 cartes Récompense, ce Pokémon ne peut pas attaquer.",
es: "Si te quedan 2, 4 o 6 cartas de Premio, este Pokémon no puede atacar.",
it: "Se ti rimangono due, quattro o sei carte Premio, questo Pokémon non può attaccare.",
pt: "Se você possuir 2, 4 ou 6 cards de Prêmio restantes, este Pokémon não poderá atacar.",
de: "Wenn du 2, 4 oder 6 Preiskarten übrig hast, kann dieses Pokémon nicht angreifen."
},
},
],
attacks: [
{
cost: [
@ -49,6 +70,7 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Lightning",
@ -56,10 +78,7 @@ const card: Card = {
},
],
retreat: 3
}
export default card