mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
23 lines
417 B
TypeScript
23 lines
417 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Base Set'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Potion",
|
|
fr: "Potion",
|
|
de: "Trank"
|
|
},
|
|
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Retirez jusqu'à 2 marqueurs de dégâts d'1 de vos Pokémon.",
|
|
de: "Entferne bis zu 2 Schadensmarken von einem Deiner Pokémon."
|
|
}
|
|
}
|
|
|
|
export default card
|