mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Irida",
|
|
fr: "Nacchara",
|
|
es: "Nákara",
|
|
it: "Perula",
|
|
pt: "Irida",
|
|
de: "Perla"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Search your deck for a Water Pokémon and an Item card, reveal them, and put them into your hand. Then, shuffle your deck.",
|
|
fr: "Cherchez dans votre deck un Pokémon Water et une carte Objet, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
|
es: "Busca en tu baraja 1 carta de Pokémon Water y 1 carta de Objeto, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
|
|
it: "Cerca nel tuo mazzo un Pokémon Water e una carta Strumento, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure por 1 Pokémon Water e 1 carta de Item no seu baralho, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.",
|
|
de: "Durchsuche dein Deck nach 1 Water-Pokémon und 1 Itemkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |