mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-02 04:19:53 +00:00
35 lines
927 B
TypeScript
35 lines
927 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Mythical Island"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Budding Expeditioner",
|
|
fr: "Jeune Explorateur",
|
|
es: "Explorador Novel",
|
|
it: "Esploratore in Erba",
|
|
de: "Abenteurer-Neuling",
|
|
'pt-br': "Expedicionário Principiante",
|
|
ko: "신출내기 조사원"
|
|
},
|
|
|
|
illustrator: "Yuu Nishida",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Put your Mew ex in the Active Spot into your hand.",
|
|
fr: "Ajoutez votre Mew-ex sur le Poste Actif à votre main.",
|
|
es: "Pon a tu Mew ex que esté en el Puesto Activo en tu mano.",
|
|
it: "Riprendi in mano il tuo Mew-ex in posizione attiva.",
|
|
de: "Nimm dein Mew-ex in der Aktiven Position auf deine Hand.",
|
|
'pt-br': "Coloque seu Mew ex do Campo Ativo na sua mão.",
|
|
ko: "자신의 배틀필드의 「뮤 ex」 패로 되돌린다."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
rarity: "Two Star"
|
|
}
|
|
|
|
export default card
|