mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 16:49:53 +00:00
20 lines
374 B
TypeScript
20 lines
374 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../EX trainer Kit 2 (Plusle)'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Potion"
|
|
},
|
|
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "None",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
en: "Remove 2 damage counters from 1 of your Pokémon (remove 1 damage counter if that Pokémon has only 1)."
|
|
}
|
|
}
|
|
|
|
export default card
|