mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
487 B
TypeScript
23 lines
487 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Expedition Base Set'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Potion",
|
|
fr: "Potion",
|
|
de: "Trank"
|
|
},
|
|
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Retirez 2 marqueurs de dégâts d'un de vos Pokémon (1 seul si ce Pokémon n'en a qu'un).",
|
|
de: "Entferne 2 Schadensmarken von einem deiner Pokémon (1, falls dieses Pokémon nur 1 hat)."
|
|
}
|
|
}
|
|
|
|
export default card
|