import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Charjabug", }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, evolveFrom: { en: "Grubbin", }, attacks: [ { cost: [ "Colorless", ], name: { en: "Charge", }, effect: { en: "Search your deck for up to 2 Lightning Energy cards and attach them to this Pokémon. Then, shuffle your deck.", }, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Lightning Ball", }, damage: 70, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, } export default card