mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-27 18:39:54 +00:00
33 lines
649 B
TypeScript
33 lines
649 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../HeartGold SoulSilver'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Full Heal",
|
|
fr: "Énergie guérisseuse",
|
|
de: "Hyperheiler"
|
|
},
|
|
|
|
illustrator: "Takashi Yamaguchi",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Retirez tous les États spéciaux de votre Pokémon actif.",
|
|
en: "Remove all Special Conditions from your Active Pokémon.",
|
|
de: "Alle Speziellen Zustände auf deinen Aktiven Pokémon verlieren ihre Wirkung."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|