mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 13:22:15 +00:00
33 lines
535 B
TypeScript
33 lines
535 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Unleashed'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Interviewer's Questions",
|
|
fr: "Questionnaire d'interview",
|
|
},
|
|
illustrator: "Kouki Saitou",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Vous ne pouvez jouer qu'une seule carte Supporter par tour. Lorsque vous jouez cette carte, placez-la près de votre Pokémon Actif. Une fois votre tour terminé, défaussez cette carte.",
|
|
},
|
|
trainerType: "Supporter",
|
|
|
|
}
|
|
|
|
export default card
|