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: "Blissey",
fr: "Leuphorie",
es: "Blissey",
it: "Blissey",
pt: "Blissey",
de: "Heiteira"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
242,
],
hp: 130,
types: [
"Colorless",
],
evolveFrom: {
en: "Chansey",
},
stage: "Stage1",
abilities: [
@ -27,12 +37,23 @@ const card: Card = {
type: "Ability",
name: {
en: "Softboiled",
fr: "E-Coque",
es: "Amortiguador",
it: "Covauova",
pt: "Cozidos",
de: "Weichei"
},
effect: {
en: "Once during your turn (before your attack), you may flip a coin. If heads, heal 30 damage from your Active Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si cest face, soignez 30 dégâts à votre Pokémon Actif.",
es: "Una vez durante tu turno (antes de tu ataque), puedes lanzar una moneda. Si sale cara, cura 30 puntos de daño a tu Pokémon Activo.",
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi lanciare una moneta. Se esce testa, cura il tuo Pokémon attivo da 30 danni.",
pt: "Uma vez durante sua vez de jogar (antes de atacar), você pode jogar uma moeda. Se sair cara, cure 30 de danos do seu Pokémon Ativo.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du 1 Münze werfen. Heile bei „Kopf“ 30 Schadenspunkte bei deinem Aktiven Pokémon."
},
},
],
attacks: [
{
cost: [
@ -50,6 +71,7 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Fighting",
@ -57,10 +79,7 @@ const card: Card = {
},
],
retreat: 3
}
export default card