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