mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 21:02:15 +00:00
33 lines
445 B
TypeScript
33 lines
445 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Supreme Victors'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "VS Seeker",
|
|
fr: "Cherche VS",
|
|
},
|
|
illustrator: "Wataru Kawahara",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Choisissez une carte Supporter dans votre pile de défausse, montrez-la à votre adversaire et placez-la dans votre main.",
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|