1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

38 lines
1.7 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
set: Set,
name: {
en: "Arezu",
fr: "Marcia",
es: "Sera",
it: "Maru",
pt: "Areza",
de: "Hinatsu"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "Search your deck for up to 3 Evolution Pokémon that don't have a Rule Box, reveal them, and put them into your hand. Then, shuffle your deck. (Pokémon V, Pokémon-GX, etc. have Rule Boxes.)",
fr: "Cherchez dans votre deck jusqu'à 3 Pokémon Évolutifs n'ayant pas d'encadré Règle, montrez-les, puis placez-les dans votre main. Mélangez ensuite votre deck. (Les Pokémon-V, Pokémon-GX, etc. ont des encadrés Règle.)",
es: "Busca en tu baraja hasta 3 Pokémon Evolución que no tengan un recuadro de regla, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja. (Pokémon V, Pokémon-GX, etc. tienen recuadros de regla).",
it: "Cerca nel tuo mazzo fino a tre Pokémon Evoluzione che non hanno una regola speciale, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo. I Pokémon-V, i Pokémon-GX, ecc. hanno regole speciali.",
pt: "Procure por até 3 Pokémon de Evolução no seu baralho que não tenham uma Caixa de Regras, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho (Pokémon V, Pokémon-GX, etc. têm Caixas de Regras).",
de: "Durchsuche dein Deck nach bis zu 3 Entwicklungs-Pokémon, die kein Regelfeld haben, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck. (Pokémon-V, Pokémon-GX usw. haben Regelfelder.)"
},
trainerType: "Supporter",
regulationMark: "F",
variants: {
"normal": false,
"reverse": false,
"holo": true
}
}
export default card