mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 16:42:10 +00:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Lost Thunder'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Mina",
|
||
fr: "Oléa",
|
||
es: "Rika",
|
||
it: "Rika",
|
||
pt: "Yasmin",
|
||
de: "Matsurika"
|
||
},
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Cherchez une carte Énergie Fairy dans votre deck et attachez-la à l’un de vos Pokémon. Mélangez ensuite votre deck.",
|
||
en: "Search your deck for a Fairy Energy card and attach it to 1 of your Pokémon. Then, shuffle your deck.",
|
||
es: "Busca en tu baraja 1 carta de Energía Fairy y únela a 1 de tus Pokémon. Después, baraja las cartas de tu baraja.",
|
||
it: "Cerca nel tuo mazzo una carta Energia Fairy e assegnala a uno dei tuoi Pokémon. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Procure por 1 carta de Energia Fairy no seu baralho e ligue-a a 1 dos seus Pokémon. Em seguida, embaralhe o seu baralho.",
|
||
de: "Durchsuche dein Deck nach 1 Fairy-Energiekarte und lege sie an 1 deiner Pokémon an. Mische anschließend dein Deck."
|
||
},
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|