import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Charjabug", fr: "Chrysapile" }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, evolveFrom: { en: "Grubbin", fr: "Larvibule" }, attacks: [ { cost: [ "Colorless", ], name: { en: "Charge", fr: "Chargeur" }, effect: { en: "Search your deck for up to 2 Lightning Energy cards and attach them to this Pokémon. Then, shuffle your deck.", fr: "Cherchez jusqu’à 2 cartes Énergie Lightning dans votre deck, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck." }, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Lightning Ball", fr: "Boule Éclair" }, damage: 70, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, hp: 90, types: ["Lightning"] } export default card