1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

33 lines
356 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Potion",
fr: "Potion",
},
illustrator: "Keiji Kinebuchi",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez 30 dégâts à l'un de vos Pokémon.",
},
trainerType: "Item",
}
export default card