import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Smeargle", }, illustrator: "Hironobu Yoshida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 235, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Sketch", }, effect: { en: "If the Defending Pokémon attacked last turn, and Smeargle was in play during that attack, Smeargle copies that attack except for its Energy costs and anything else required in order to use that attack.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card