import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Scrafty", }, illustrator: "tetsuya koizumi", rarity: "Rare", category: "Pokemon", set: Set, hp: 120, types: [ "Darkness", ], evolveFrom: { en: "Scraggy", }, attacks: [ { cost: [ "Darkness", ], name: { en: "Corner", }, effect: { en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.", }, damage: 30, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Bad Brawl", }, effect: { en: "If you played Piers from your hand during this turn, this attack does 90 more damage.", }, damage: "90+", }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, } export default card