1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13: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: "Crobat",
fr: "Nostenfer",
es: "Crobat",
it: "Crobat",
pt: "Crobat",
de: "Iksbat"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
169,
],
hp: 130,
types: [
"Psychic",
],
evolveFrom: {
en: "Golbat",
fr: "Nosferalto",
},
stage: "Stage2",
abilities: [
@ -30,13 +39,22 @@ const card: Card = {
name: {
en: "Night Sight",
fr: "Vision de Nuit",
es: "Vista Nocturna",
it: "Vista Notturna",
pt: "Visão Noturna",
de: "Nachtblick"
},
effect: {
en: "Once during your turn (before your attack), you may draw a card.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez piocher une carte.",
es: "Una vez durante tu turno (antes de tu ataque), puedes robar una carta.",
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi pescare una carta.",
pt: "Uma vez durante sua vez de jogar (antes de atacar), você pode comprar um card.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du 1 Karte ziehen."
},
},
],
attacks: [
{
cost: [
@ -56,12 +74,14 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
@ -69,9 +89,7 @@ const card: Card = {
},
],
retreat: 0
}
export default card