mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
92 lines
1.3 KiB
TypeScript
92 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Ultra Prism'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Electabuzz",
|
||
fr: "Élektek",
|
||
es: "Electabuzz",
|
||
it: "Electabuzz",
|
||
pt: "Electabuzz",
|
||
de: "Elektek"
|
||
},
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
125,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Low Kick",
|
||
fr: "Balayage",
|
||
es: "Patada Baja",
|
||
it: "Colpo Basso",
|
||
pt: "Rasteira",
|
||
de: "Fußkick"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Thunder",
|
||
fr: "Fatal-Foudre",
|
||
es: "Trueno",
|
||
it: "Tuono",
|
||
pt: "Trovão",
|
||
de: "Donner"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon does 30 damage to itself.",
|
||
fr: "Ce Pokémon s’inflige 30 dégâts.",
|
||
es: "Este Pokémon se hace 30 puntos de daño a sí mismo.",
|
||
it: "Questo Pokémon infligge 30 danni a se stesso.",
|
||
pt: "Este Pokémon causa 30 pontos de dano a si mesmo.",
|
||
de: "Dieses Pokémon fügt sich selbst 30 Schadenspunkte zu."
|
||
},
|
||
damage: 90,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|