1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00

33 lines
389 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Generations'
const card: Card = {
name: {
en: "Revitalizer",
fr: "Revitalisation",
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Ajoutez 2 Pokémon Grass de votre pile de défausse à votre main.",
},
trainerType: "Item",
}
export default card