mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-03 08:02:10 +00:00
33 lines
482 B
TypeScript
33 lines
482 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Yellow A Alternate'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Guzma",
|
||
fr: "Guzma",
|
||
},
|
||
illustrator: "Hitoshi Ariga",
|
||
rarity: "Common",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Échangez l’un des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Dans ce cas, échangez votre Pokémon Actif avec l’un de vos Pokémon de Banc.",
|
||
},
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|