mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
62 lines
756 B
TypeScript
62 lines
756 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKpoint'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Electabuzz",
|
||
fr: "Élektek",
|
||
es: "Electabuzz",
|
||
it: "Electabuzz",
|
||
pt: "Electabuzz",
|
||
de: "Elektek"
|
||
},
|
||
illustrator: "Shin Nagasawa",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
125,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Knuckle Punch",
|
||
fr: "Coud’Phalange",
|
||
es: "Puño con Nudillos",
|
||
it: "Nocca-Pugno",
|
||
pt: "Soco com Punho",
|
||
de: "Knöchelhieb"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|