mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
40 lines
1.7 KiB
TypeScript
40 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Elesa's Sparkle",
|
|
fr: "Éclat d'Inezia",
|
|
es: "Brillo de Camila",
|
|
it: "Leggiadria di Camelia",
|
|
pt: "Brilho da Elesa",
|
|
de: "Kamillas Glanz"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Choose up to 2 of your Fusion Strike Pokémon. For each of those Pokémon, search your deck for a Fusion Strike Energy card and attach it to that Pokémon. Then, shuffle your deck.",
|
|
fr: "Choisissez jusqu'à 2 de vos Pokémon Poing de Fusion. Pour chacun de ces Pokémon, cherchez dans votre deck une carte Énergie Poing de Fusion, puis attachez-la à ce Pokémon-là. Mélangez ensuite votre deck.",
|
|
es: "Elige hasta 2 de tus Pokémon Golpe Fusión. Para cada uno de esos Pokémon, busca en tu baraja 1 carta de Energía Golpe Fusión y únela a ese Pokémon. Después, baraja las cartas de tu baraja.",
|
|
it: "Scegli fino a due dei tuoi Pokémon Colpo Fusione. Per ognuno di essi, cerca nel tuo mazzo una carta Energia Colpo Fusione e assegnala a quel Pokémon. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Escolha até 2 dos seus Pokémon Golpe Fusão. Para cada um daqueles Pokémon, procure por 1 carta de Energia Golpe Fusão no seu baralho e ligue-a àquele Pokémon. Em seguida, embaralhe o seu baralho.",
|
|
de: "Wähle bis zu 2 deiner Fusionsangriff-Pokémon. Durchsuche für jedes jener Pokémon dein Deck nach 1 Fusionsangriff-Energiekarte und lege sie an jenes Pokémon an. Mische anschließend dein Deck."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "E",
|
|
illustrator: "Ryuta Fuse",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |