import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Shuckle", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 213, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Withdraw", }, effect: { en: "Flip a coin. If heads, prevent all damage done to Shuckle during your opponent's next turn. (Any other effects of attacks still happen.)", }, }, { cost: [ "Grass", "Grass", ], name: { en: "Wrap", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card