1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

61 lines
1.2 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 = {
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 cant 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
}
}
export default card