mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 23:09:18 +00:00
34 lines
509 B
TypeScript
34 lines
509 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sword & Shield'
|
||
|
||
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
|