mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
feat: Add Astral Radiance (#305)
This commit is contained in:
68
data/Sword & Shield/Astral Radiance/065.ts
Normal file
68
data/Sword & Shield/Astral Radiance/065.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
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
|
Reference in New Issue
Block a user