mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
42 lines
824 B
TypeScript
42 lines
824 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Evolutions'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Full Heal",
|
|
fr: "Total Soin",
|
|
es: "Cura Total",
|
|
it: "Cura Totale",
|
|
pt: "Cura Total",
|
|
de: "Hyperheiler"
|
|
},
|
|
illustrator: "Keiji Kinebuchi",
|
|
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.",
|
|
es: "Elimina todas las Condiciones Especiales de tu Pokémon Activo.",
|
|
it: "Rimuovi tutte le condizioni speciali dal tuo Pokémon attivo.",
|
|
pt: "Remova todas as Condições Especiais do seu Pokémon Ativo.",
|
|
de: "Alle Speziellen Zustände auf deinem Aktiven Pokémon verlieren ihre Wirkung."
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|