mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
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 l’un 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
|