import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Gothita", }, illustrator: "TOKIYA", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 574, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Hypnotic Gaze", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Double Slap", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1 } export default card