1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 8ef099273e
fix: Add E-Card French Translations (#166)
* fix: Add E-Card French Translations

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

* fix: Fixed Cards without rarity

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-11-22 19:07:35 +00:00

21 lines
738 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Aquapolis'
const card: Card = {
name: {
en: "Memory Berry",
fr: "Baie de mémoire"
},
illustrator: "Shin-ichi Yoshikawa",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Attachez Baie de mémoire à un de vos Pokémon qui n'a pas d'Outil Pokémon attaché à lui. Si ce Pokémon est mis K.O., défaussez-vous de cette carte.\n\nLe Pokémon auquel cette carte est attachée peut utiliser n'importe quelle attaque de la carte Pokémon de base ou de la carte Évolution dont ce Pokémon a évolué. (You still have to pay for that attack's Energy cost.) Discard this card at the end of any turn the Pokémon attacks."
}
}
export default card