1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

82 lines
1.7 KiB
TypeScript
Raw Permalink 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 '../Sandstorm'
const card: Card = {
name: {
en: "Electabuzz",
fr: "Elektek",
de: "Elektek"
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
125,
],
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Plasma",
fr: "Plasma",
de: "Plasma"
},
effect: {
en: "Flip a coin. If heads, search your discard pile for a Lightning Energy card and attach it to Electabuzz.",
fr: "Si vous avez des cartes Énergie dans votre pile de défausse, lancez une pièce. Si c'est face, attachez l'une d'elles à Elektek.",
de: "Wirf 1 Münze. Bei 'Kopf' durchsuche deinen Ablagestapel nach einer -Energiekarte und lege sie an Elektek an."
},
damage: 10,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Thunder Spear",
fr: "Lance-éclair",
de: "Donnerspeer"
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 40 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez un des Pokémon de votre adversaire. Cette attaque lui inflige 40 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon du Banc).",
de: "Wähle 1 Pokémon deines Gegners. Dieser Angriff fügt diesem Pokémon 40 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
}
export default card