import { Card } from '../../../interfaces' import Set from '../Promo' const card: Card = { name: { en: "Scraggy", fr: "Baggiguane", }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 559, ], hp: 50, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Paralyzing Gaze", fr: "Regard Paralysant", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "High Jump Kick", fr: "Pied Voltige", }, damage: 30, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card