import { Card } from '../../../interfaces' import Set from '../Furious Fists' const card: Card = { name: { en: "Gothita", fr: "Scrutella", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 574, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Slap", fr: "Gifle", }, damage: 10, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Psy Bolt", fr: "Choc Mental", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card