1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 04:19:53 +00:00

22 lines
364 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Guzma"
},
illustrator: "GOSSAN",
rarity: "Two 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