1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +00:00

fix: Add Base serie translations (#161)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 17:07:41 +01:00
committed by GitHub
parent 3b8e87e284
commit ffdd3b4656
337 changed files with 4395 additions and 2387 deletions

View File

@ -4,24 +4,29 @@ import Set from '../Jungle'
const card: Card = {
name: {
en: "Electrode",
fr: "Électrode"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
101,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Voltorb",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -31,6 +36,7 @@ const card: Card = {
],
name: {
en: "Tackle",
fr: "Charge"
},
damage: 20,
@ -44,14 +50,17 @@ const card: Card = {
],
name: {
en: "Chain Lightning",
fr: "Rafale de foudre"
},
effect: {
en: "If the Defending Pokémon isn't Colorless, this attack does 10 damage to each Benched Pokémon of the same type as the Defending Pokémon (including your own).",
fr: "Si le Pokémon Défenseur n'est pas de type Incolore, cette attaque inflige 10 dégâts à chacun des Pokémon du même type que le Pokémon Défenseur qui sont sur un Banc (y compris le vôtre)."
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
@ -59,10 +68,9 @@ const card: Card = {
},
],
description: {
fr: "Il emmagasine des quantités énormes de courant électrique sous pression pouvant exploser."
}
}
export default card