import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Shuckle", }, illustrator: "HYOGONOSUKE", rarity: "Uncommon", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Berry Picking", }, effect: { en: "Shuffle up to 5 basic Energy cards from your discard pile into your deck.", }, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Bind", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card