mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-02 12:19:53 +00:00
36 lines
804 B
TypeScript
36 lines
804 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Erika",
|
|
fr: "Erika",
|
|
es: "Erika",
|
|
it: "Erika",
|
|
de: "Erika",
|
|
'pt-br': "Érica",
|
|
ko: "민화"
|
|
},
|
|
|
|
illustrator: "saino misaki",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Heal 50 damage from 1 of your {G} Pokémon.",
|
|
fr: "Soignez 50 dégâts d'un de vos Pokémon {G}.",
|
|
es: "Cura 50 puntos de daño a 1 de tus Pokémon {G}.",
|
|
it: "Cura uno dei tuoi Pokémon {G} da 50 danni.",
|
|
de: "Heile 50 Schadenspunkte bei 1 deiner\n{G}-Pokémon.",
|
|
'pt-br': "Cure 50 pontos de dano de 1 dos seus Pokémon {G}.",
|
|
ko: "자신의 {G}포켓몬 1마리의 HP를 50회복."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
rarity: "Two Star",
|
|
boosters: ["charizard"]
|
|
}
|
|
|
|
export default card
|