mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 16:49:53 +00:00
32 lines
311 B
TypeScript
32 lines
311 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Champion\'s Path'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Potion",
|
|
},
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
en: "Heal 30 damage from 1 of your Pokémon.",
|
|
},
|
|
|
|
|
|
}
|
|
|
|
export default card
|