1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

84 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: "Empoleon",
fr: "Pingoléon",
es: "Empoleon",
it: "Empoleon",
pt: "Empoleon",
de: "Impoleon"
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
395,
],
hp: 140,
types: [
"Water",
],
evolveFrom: {
en: "Prinplup",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Diving Draw",
fr: "Plonge et Pioche",
es: "Robo Buceo",
it: "Pescafonda",
pt: "Saque Mergulho",
de: "Unterwasserzieher"
},
effect: {
en: "Once during your turn (before your attack), you may discard a card from your hand. If you do, draw 2 cards.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une carte de votre main. Dans ce cas, piochez 2 cartes.",
es: "Una vez durante tu turno (antes de tu ataque), puedes descartar una carta de tu mano. Si lo haces, roba 2 cartas.",
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi scartare una delle carte che hai in mano. Se lo fai, pesca due carte.",
pt: "Uma vez na sua vez de jogar (antes de atacar), você pode descartar um card da sua mão. Se fizer isso, compre 2 cards.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du 1 Karte von deiner Hand auf deinen Ablagestapel legen. Wenn du das machst, ziehe 2 Karten."
},
},
],
attacks: [
{
cost: [
"Water",
],
name: {
en: "Attack Command",
},
effect: {
en: "Does 10 damage times the number of Pokémon in play (both yours and your opponent's).",
},
damage: 10,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 2
}
export default card