import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Gothorita", }, illustrator: "kirisAki", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 575, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Gothita", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Double Slap", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Psybeam", }, effect: { en: "The Defending Pokémon is now Confused.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1 } export default card