mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
34 lines
647 B
TypeScript
34 lines
647 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Hidden Fates'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Sabrina’s Suggestion",
|
||
fr: "Suggestion de Morgane",
|
||
},
|
||
illustrator: "Hitoshi Ariga",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Votre adversaire dévoile sa main. Vous pouvez choisir une carte Supporter que vous y trouvez et utiliser son effet en tant qu’effet de cette carte.",
|
||
en: "Your opponent reveals their hand. You may choose a Supporter card you find there and use the effect of that card as the effect of this card."
|
||
},
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|