import { Card } from '../../../interfaces' import Set from '../Next Destinies' const card: Card = { name: { en: "Elgyem", fr: "Lewsor", es: "Elgyem", it: "Elgyem", pt: "Elgyem", de: "Pygraulon" }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 605, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Psy Bolt", fr: "Choc Mental", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card