import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Duosion", }, illustrator: "Suwama Chiaki", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 578, ], hp: 60, types: [ "Psychic", ], evolveFrom: { en: "Solosis", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Rollout", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1 } export default card