mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 12:09:53 +00:00
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Triumphant Light"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Celestic Town Elder",
|
|
fr: "Doyenne de Célestia",
|
|
es: "Anciana de Pueblo Caelestis",
|
|
it: "Anziana di Memoride",
|
|
de: "Älteste von Elyses",
|
|
'pt-br': "Anciã da Cidade Celestic",
|
|
ko: "봉신마을의 장로"
|
|
},
|
|
|
|
illustrator: "Yuu Nishida",
|
|
rarity: "Two Star",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Put 1 random Basic Pokémon from your discard pile into your hand.",
|
|
fr: "Ajoutez au hasard à votre main un Pokémon de base de votre pile de défausse.",
|
|
es: "Pon 1 Pokémon Básico aleatorio de tu pila de descartes en tu mano.",
|
|
it: "Prendi un Pokémon Base a caso dalla tua pila degli scarti e aggiungilo alle carte che hai in mano.",
|
|
de: "Nimm 1 zufälliges Basis-Pokémon aus deinem Ablagestapel auf deine Hand.",
|
|
'pt-br': "Coloque 1 Pokémon Básico aleatório da sua pilha de descarte na sua mão.",
|
|
ko: "자신의 트래쉬에서 기본 포켓몬eul_reul 랜덤으로 1장 패로 가져온다."
|
|
},
|
|
|
|
trainerType: "Supporter"
|
|
}
|
|
|
|
export default card |