mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-18 14:29:55 +00:00
22 lines
379 B
TypeScript
22 lines
379 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../DP trainer Kit (Manaphy)'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Potion"
|
|
},
|
|
|
|
illustrator: "Shin-ichi Yoshikawa",
|
|
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
|
|
|
|
|