import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Kirlia", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 281, ], hp: 70, types: [ "Psychic", ], evolveFrom: { en: "Ralts", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", ], name: { en: "Removal Beam", }, effect: { en: "Flip a coin. If heads, discard 1 Energy card attached to the Defending Pokémon.", }, damage: 10, }, { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Super Psy", }, damage: 50, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card