mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
24 lines
479 B
TypeScript
24 lines
479 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Emerald'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Double Full Heal",
|
|
fr: "Double guérison totale",
|
|
de: "Doppel Hyperheiler"
|
|
},
|
|
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Item",
|
|
|
|
effect: {
|
|
fr: "Retirez à chacun de vos Pokémon Actifs tous leurs États Spéciaux.",
|
|
de: "Remove all Special Conditions from each of your Pokémon."
|
|
}
|
|
}
|
|
|
|
export default card
|