1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

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