mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 05:12:11 +00:00
69 lines
1.5 KiB
TypeScript
69 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Astral Radiance"
|
|
|
|
const card: Card = {
|
|
dexId: [480],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Uxie",
|
|
fr: "Créhelf",
|
|
es: "Uxie",
|
|
it: "Uxie",
|
|
pt: "Uxie",
|
|
de: "Selfe"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Wise Guidance",
|
|
fr: "Conseil Avisé",
|
|
es: "Guía de la Sabiduría",
|
|
it: "Guida Saggia",
|
|
pt: "Orientação Sábia",
|
|
de: "Weises Geleit"
|
|
},
|
|
|
|
effect: {
|
|
en: "Search your deck for a card and put it into your hand. Then, shuffle your deck.",
|
|
fr: "Cherchez une carte dans votre deck, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
|
es: "Busca en tu baraja 1 carta y ponla en tu mano. Después, baraja las cartas de tu baraja.",
|
|
it: "Cerca nel tuo mazzo una carta e aggiungila a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure por 1 carta no seu baralho e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
|
|
de: "Durchsuche dein Deck nach 1 Karte und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
|
}
|
|
}, {
|
|
cost: ["Psychic"],
|
|
|
|
name: {
|
|
en: "Psyshot",
|
|
fr: "Piqûre Psy",
|
|
es: "Disparo Psi",
|
|
it: "Psicosparo",
|
|
pt: "Tiro Psíquico",
|
|
de: "Psychoschuss"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |