mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 22:09:54 +00:00
22 lines
578 B
TypeScript
22 lines
578 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Team Galactic Grunt"
|
|
},
|
|
|
|
illustrator: "GOSSAN",
|
|
rarity: "Two Diamond",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Put 1 random <a class=\"localized-string__link\" href=\"/pokemon/glameow/\">Glameow</a>, <a class=\"localized-string__link\" href=\"/pokemon/stunky/\">Stunky</a>, or <a class=\"localized-string__link\" href=\"/pokemon/croagunk/\">Croagunk</a> from your deck into your hand."
|
|
},
|
|
|
|
trainerType: "Supporter"
|
|
}
|
|
|
|
export default card |