1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00

37 lines
1.6 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Stellar Crown"
const card: Card = {
set: Set,
name: {
en: "Crispin",
fr: "Rubépin",
es: "Denis",
it: "Piros",
pt: "Plínio",
de: "Matt"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Search your deck for up to 2 Basic Energy cards of different types, reveal them, and put 1 of them into your hand. Attach the other to 1 of your Pokémon. Then, shuffle your deck.",
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base de types différents, montrez-les, puis ajoutez l'une d'elles à votre main. Attachez l'autre à l'un de vos Pokémon. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 2 cartas de Energía Básica de diferentes tipos, enséñalas y pon 1 de ellas en tu mano. Une la otra a uno de tus Pokémon. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a due carte Energia base di tipo diverso, mostrale e aggiungine una alle carte che hai in mano. Assegna l'altra a uno dei tuoi Pokémon. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 2 cartas de Energia Básica de tipos diferentes no seu baralho, revele-as e coloque 1 delas na sua mão. Ligue a outra a 1 dos seus Pokémon. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten verschiedenen Typs, zeige sie deinem Gegner und nimm 1 von ihnen auf deine Hand. Lege die andere an 1 deiner Pokémon an. Mische anschließend dein Deck."
},
trainerType: "Supporter",
regulationMark: "H",
variants: {
holo: false
}
}
export default card