import { Card } from '../../../interfaces' import Set from '../Plasma Storm' const card: Card = { name: { en: "Ralts", fr: "Tarsal", es: "Ralts", it: "Ralts", pt: "Ralts", de: "Trasla" }, illustrator: "Kanako Eo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 280, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], 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é.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card