1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 142310c539
Most data added (#106)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:53:03 +02:00

31 lines
1.0 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../XY trainer Kit (Bisharp)'
const card: Card = {
set: Set,
name: {
en: "Trevor",
fr: "Trovato",
es: "Trovato",
it: "Trovato",
pt: "Trevor",
de: "Trovato"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Search your deck for a Pokémon, reveal it, and put it into your hand. Shuffle your deck afterward.",
fr: "Cherchez un Pokémon dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
es: "Busca en tu baraja un Pokémon, enséñalo y ponlo en tu mano. Baraja las cartas de tu baraja después.",
it: "Cerca nel tuo mazzo un Pokémon, mostralo e aggiungilo alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure um Pokémon em seu baralho, revele-o e coloque-o em sua mão. Em seguida, embaralhe seus cards.",
de: "Durchsuche dein Deck nach 1 Pokémon, zeige es deinem Gegner und nimm es auf deine Hand. Mische anschließend dein Deck."
},
trainerType: "Supporter"
}
export default card