mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-09 02:37:50 +00:00
* Update Signed-off-by: Avior <github@avior.me> * Update datas Signed-off-by: Avior <github@avior.me> * Finished fix Signed-off-by: Avior <github@avior.me> * Updated some more Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more updates Signed-off-by: Avior <florian.bouillon@delta-wings.net>
31 lines
542 B
TypeScript
31 lines
542 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../HeartGold SoulSilver'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Full Heal",
|
|
fr: "Énergie guérisseuse",
|
|
},
|
|
|
|
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."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|