1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Burning Shadows'
const card: Card = {
name: {
en: "Acerola",
fr: "Margie",
es: "Zarala",
it: "Malpi",
pt: "Acerola",
de: "Lola"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Placez lun de vos Pokémon avec des marqueurs de dégâts et toutes les cartes qui lui sont attachées dans votre main.",
en: "Put 1 of your Pokémon that has any damage counters on it and all cards attached to it into your hand.",
es: "Pon 1 de tus Pokémon que tenga algún contador de daño sobre él y todas las cartas unidas a él en tu mano.",
it: "Riprendi in mano uno dei tuoi Pokémon che abbia dei segnalini danno e tutte le carte a esso assegnate.",
pt: "Coloque 1 dos seus Pokémon que tiver algum contador de dano nele e todas as cartas ligadas a ele na sua mão.",
de: "Nimm 1 deiner Pokémon, auf dem mindestens 1 Schadensmarke liegt, und alle an es angelegten Karten auf deine Hand."
},
trainerType: "Supporter",
}
export default card