import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Ralts", fr: "Tarsal", de: "Trasla" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 280, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Headbutt", fr: "Coup d'boule", de: "Headbutt" }, damage: 10, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Hypnoblast", fr: "Hypnoblast", de: "Hypnoblast" }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", de: "The Defending Pokémon is now Asleep." }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card