import { Card } from '../../../interfaces' import Set from '../Boundaries Crossed' const card: Card = { name: { en: "Gothorita", fr: "Mesmérella", es: "Gothorita", it: "Gothorita", pt: "Gothorita", de: "Hypnomorba" }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 575, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Gothita", fr: "Scrutella", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Psypunch", fr: "Coup de Poing Psy", }, damage: 30, }, { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Destructive Beam", fr: "Rayon Désintégrateur", }, effect: { en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.", }, damage: 50, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card