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

54 lines
766 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Twilight Masquerade"
const card: Card = {
set: Set,
name: {
en: "Tadbulb",
fr: "Têtampoule",
es: "Tadbulb",
it: "Tadbulb",
pt: "Tadbulb",
de: "Blipp"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Lightning"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 10
}, {
cost: ["Lightning", "Colorless"],
name: {
en: "Electro Ball",
fr: "Boule Élek",
es: "Bola Voltio",
it: "Energisfera",
pt: "Bola Elétrica",
de: "Elektroball"
},
damage: 20
}],
retreat: 1,
regulationMark: "H"
}
export default card