import { Card } from '../../../interfaces' import Set from '../POP Series 3' const card: Card = { name: { en: "Ditto", }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 132, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Psybeam", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card