1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 12:29:54 +00:00

22 lines
367 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Guzma"
},
illustrator: "danciao",
rarity: "Three Star",
category: "Trainer",
effect: {
en: "Discard all Pokémon Tool cards attached to each of your opponent's Pokémon."
},
trainerType: "Supporter"
}
export default card