mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
448 B
TypeScript
23 lines
448 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Expedition Base Set'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Full Heal",
|
|
fr: "Guérison totale",
|
|
de: "Hyperheiler"
|
|
},
|
|
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "Common",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Retirez tous les États spéciaux de votre Pokémon Actif.",
|
|
de: "Entferne alle Speziellen Zustände von deinem Aktiven Pokémon."
|
|
}
|
|
}
|
|
|
|
export default card
|