1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 13:29:55 +00:00
TCGdex 🤖 e03d66e150
feat: Variants for sv10 (#774)
Co-authored-by: Avior <git@avior.me>
2025-05-30 21:31:14 +00:00

47 lines
709 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Destined Rivals"
const card: Card = {
set: Set,
name: {
en: "Electabuzz",
fr: "Élektek",
de: "Elektek",
it: "Electabuzz",
es: "Electabuzz",
pt: "Electabuzz",
'es-mx': "Electabuzz"
},
rarity: "Common",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
stage: "Basic",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
en: "Electroslug",
fr: "Électro Frappe",
de: "Elektroschuss",
it: "Elettropugno",
es: "Electropuñetazo",
pt: "Soco Elétrico",
'es-mx': "Electropuñetazo"
},
damage: 50
}],
retreat: 2,
regulationMark: "I",
variants: {
holo: false
}
}
export default card