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

33 lines
363 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Boundaries Crossed'
const card: Card = {
name: {
en: "Gold Potion",
fr: "Potion d'Or",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez 90 dégâts à votre Pokémon Actif.",
},
trainerType: "Item",
}
export default card