1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon df23371cb4
fix: Add most POP series French translations (#170)
* fix: Added most of the translations

Some translations aren't available or are user made without a card image depicted

Signed-off-by: Avior <github@avior.me>

* fix: Add sets French translations

Signed-off-by: Avior <github@avior.me>
2021-11-16 10:08:20 +01:00

29 lines
680 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 4'
const card: Card = {
name: {
en: "Heal Energy",
fr: "Énergie guérisseuse"
},
illustrator: "Takumi Akabane",
rarity: "Uncommon",
category: "Energy",
set: Set,
energyType: "Special",
effect: {
en: "Heal Energy provides Colorless Energy. When you attach this card from your hand to 1 of your Pokémon, remove 1 damage counter and all Special Conditions from that Pokémon. If Heal Energy is attached to Pokémon-ex, Heal Energy has no effect other than providing Energy."
},
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card