1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

34 lines
485 B
TypeScript

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