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

82 lines
1.4 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 '../Plasma Blast'
const card: Card = {
name: {
en: "Eelektross",
fr: "Ohmassacre",
es: "Eelektross",
it: "Eelektross",
pt: "Eelektross",
de: "Zapplarang"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
604,
],
hp: 140,
types: [
"Lightning",
],
evolveFrom: {
en: "Eelektrik",
fr: "Lampéroie",
},
stage: "Stage2",
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Crush and Burn",
fr: "Écra-Brûle",
},
effect: {
en: "Discard as many Energy attached to your Pokémon as you like. This attack does 30 damage times the number of Energy cards you discarded.",
fr: "Défaussez autant d'Énergies attachées à vos Pokémon que vous voulez. Cette attaque inflige 30 dégâts multipliés par le nombre de cartes Énergie que vous avez défaussées.",
},
damage: 30,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Thunder Tempest",
fr: "Tempête Foudre",
},
effect: {
en: "Flip 4 coins. This attack does 50 damage times the number of heads.",
fr: "Lancez 4 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
}
export default card