mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-13 04:17:49 +00:00
24 lines
499 B
TypeScript
24 lines
499 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Champion\'s Path'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Team Yell Grunt",
|
||
fr: "Sbire de la Team Yell"
|
||
},
|
||
|
||
illustrator: "nagimiso",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "Put an Energy attached to 1 of your opponent’s Pokémon into their hand.",
|
||
fr: "Ajoutez à la main de votre adversaire une Énergie attachée à l’un de ses Pokémon."
|
||
},
|
||
|
||
trainerType: "Supporter"
|
||
}
|
||
|
||
export default card
|