import { Card } from "../../../interfaces" import Set from "../White Flare" const card: Card = { set: Set, name: { en: "Gothita", fr: "Scrutella", de: "Mollimorba", it: "Gothita", pt: "Gothita", es: "Gothita", 'es-mx': "Gothita" }, rarity: "Illustration rare", category: "Pokemon", hp: 70, types: ["Psychic"], stage: "Basic", attacks: [{ cost: ["Psychic"], name: { en: "Super Psy Bolt", fr: "Super Psy", de: "Super-Psischlag", it: "Superpsico", pt: "Super-raio Psíquico", es: "Superrayo Psi", 'es-mx': "Superpsicotrueno" }, damage: 20 }], retreat: 1, regulationMark: "I" } export default card