1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00

35 lines
943 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Ilima",
fr: "Althéo",
es: "Liam",
it: "Liam",
de: "Elima",
'pt-br': "Luan",
ko: "일리마"
},
illustrator: "Teeziro",
rarity: "Two Diamond",
category: "Trainer",
effect: {
en: "Put 1 of your {C} Pokémon that has damage on it into your hand.",
fr: "Placez l'un de vos Pokémon {C} ayant subi des dégâts dans votre main.",
es: "Pon 1 de tus Pokémon {C} que ya tenga daño en tu mano.",
it: "Riprendi in mano uno dei tuoi Pokémon {C} danneggiati.",
de: "Nimm 1 deiner {C}-Pokémon, dem bereits Schaden zugefügt wurde, auf deine Hand.",
'pt-br': "Coloque 1 dos seus Pokémon {C} que estiver danificado na sua mão.",
ko: "데미지를 받고 있는 자신의 {C}포켓몬을 1마리 선택해서 패로 되돌린다."
},
trainerType: "Supporter"
}
export default card