1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

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