1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-10 15:19:55 +00:00

22 lines
343 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Lillie"
},
illustrator: "Atsushi Furusawa",
rarity: "Three Star",
category: "Trainer",
effect: {
en: "Heal 60 damage from 1 of your Two Pokémon."
},
trainerType: "Supporter"
}
export default card