import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Scrafty", }, illustrator: "Kagemaru Himeno", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 560, ], hp: 100, types: [ "Darkness", ], evolveFrom: { en: "Scraggy", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Headbutt", }, damage: 30, }, { cost: [ "Darkness", "Darkness", "Colorless", ], name: { en: "Crushing Blow", }, effect: { en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.", }, damage: 70, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], } export default card