import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Kirlia" }, illustrator: "sowsow", category: "Pokemon", hp: 80, types: ["Psychic"], stage: "Stage1", evolveFrom: { en: "Ralts" }, attacks: [{ cost: ["Psychic", "Colorless"], name: { en: "Smack" }, damage: "30" }], weaknesses: [{ type: "Darkness", value: "+20" }], retreat: 1, rarity: "Two Diamond", description: { en: "It has a psychic power that enables it to distort the space around it and see into the future.", } } export default card