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

23 lines
322 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Potion"
},
illustrator: "5ban Graphics",
rarity: "One Diamond",
category: "Trainer",
effect: {
en: "Heal 20 damage from 1 of your Pokémon."
},
trainerType: "Item"
}
export default card