1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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,35 +4,44 @@ import Set from '../Base Set'
const card: Card = {
name: {
en: "Electrode",
fr: "Électrode"
},
illustrator: "Keiji Kinebuchi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
101,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Voltorb",
},
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
type: "Pokemon Power",
name: {
en: "Buzzap",
fr: "Buzzap"
},
effect: {
en: "At any time during your turn (before your attack) you may Knock Out Electrode and attach it to 1 of your other Pokémon. If you do, chose a type of Energy. Electrode is now an Energy card (instead of a Pokémon) that provides 2 energy of that type. This power can't be used if Electrode is Asleep, Confused, or Paralyzed.",
fr: "N'importe quand durant votre tour (avant votre attaque), vous pouvez mettre Électrode K.O. et l'attacher à 1 de vos autres Pokémon. Si vous le faites, choisissez un type d'Énergie. Électrode est maintenant une carte Énergie (au lieu d'un Pokémon) qui fournit 2 Énergies de ce type. Ce pouvoir ne peut être utilisé si Électrode est Endormi, Confus ou Paralysé."
},
},
],
attacks: [
{
cost: [
@ -42,14 +51,17 @@ const card: Card = {
],
name: {
en: "Electric Shock",
fr: "Choc Électrique"
},
effect: {
en: "Flip a coin. If tails, Electrode does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, Électrode s'inflige 10 dégâts."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
@ -57,10 +69,9 @@ const card: Card = {
},
],
description: {
fr: "Il emmagasine des quantités énormes de courant électrique sous pression pouvant exploser."
}
}
export default card