import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Team Flare Grunt", fr: "Sbire de la Team Flare", }, illustrator: "Yusuke Ohmura", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Défaussez une Énergie attachée au Pokémon Actif de votre adversaire.", en: "Discard an Energy attached to your opponent’s Active Pokémon." }, trainerType: "Supporter", } export default card