import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Solosis", }, illustrator: "HiRON", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 577, ], hp: 30, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Rollout", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1 } export default card