import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Ralts", fr: "Tarsal" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 280, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Hypnotic Ray", fr: "Onde hypnotique" }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi." }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card