1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/XY/XY Black Star Promos/XY33.ts

34 lines
539 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../XY Black Star Promos'
const card: Card = {
name: {
en: "Trevor",
fr: "Trovato",
},
illustrator: "Ken Sugimori",
rarity: "None",
category: "Trainer",
set: Set,
effect: {
fr: "Cherchez un Pokémon dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
en: "Search your deck for a Pokémon, reveal it, and put it into your hand. Shuffle your deck afterward."
},
trainerType: "Supporter",
}
export default card