mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-24 08:59:55 +00:00
32 lines
357 B
TypeScript
32 lines
357 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Champion\'s Path'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Team Yell Grunt",
|
||
},
|
||
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.",
|
||
},
|
||
|
||
|
||
}
|
||
|
||
export default card
|