1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00
Florian Bouillon e21ea0646e
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>
2021-09-02 12:01:58 +02:00

86 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
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: [
{
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: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Double-Edge",
},
effect: {
en: "This Pokémon does 60 damage to itself.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3
}
export default card