1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

69 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 '../Battle Styles'
const card: Card = {
dexId: [125],
set: Set,
name: {
en: "Electabuzz",
fr: "Élektek",
es: "Electabuzz",
it: "Electabuzz",
pt: "Electabuzz",
de: "Elektek"
},
illustrator: "Hasuno",
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
attacks: [{
name: {
en: "Haymaker",
fr: "Coup de Poing Fracassant",
es: "Golpazo",
it: "Pugno Tremendo",
pt: "Golpe Arrasador",
de: "Schwinger"
},
effect: {
en: "During your next turn, this Pokémon can't use Haymaker.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup de Poing Fracassant.",
es: "Durante tu próximo turno, este Pokémon no puede usar Golpazo.",
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Pugno Tremendo.",
pt: "Durante o seu próximo turno, este Pokémon não poderá usar Golpe Arrasador.",
de: "Während deines nächsten Zuges kann dieses Pokémon Schwinger nicht einsetzen."
},
damage: 30,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "While it's often blamed for power outages, the truth is the cause of outages is more often an error on the part of the electric company."
}
}
export default card