mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-03 20:39:55 +00:00
36 lines
857 B
TypeScript
36 lines
857 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lillie",
|
|
fr: "Lilie",
|
|
es: "Lylia",
|
|
it: "Lylia",
|
|
de: "Lilly",
|
|
'pt-br': "Lílian",
|
|
ko: "릴리에"
|
|
},
|
|
|
|
illustrator: "hechima",
|
|
rarity: "Two Star",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Heal 60 damage from 1 of your Stage 2 Pokémon.",
|
|
fr: "Soignez 60 dégâts d'un de vos Pokémon de Niveau 2.",
|
|
es: "Cura 60 puntos de daño a 1 de tus Pokémon de Fase[C:Nbsp ]2.",
|
|
it: "Cura uno dei tuoi Pokémon di Fase 2 da 60 danni.",
|
|
de: "Heile 60 Schadenspunkte bei 1 deiner Phase-2-Pokémon.",
|
|
'pt-br': "Cure 60 pontos de dano de 1 dos seus Pokémon Estágio 2.",
|
|
ko: "자신의 2진화 포켓몬 1마리의 HP를 60회복."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
boosters: ["solgaleo"]
|
|
}
|
|
|
|
export default card
|