1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

33 lines
386 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Generations'
const card: Card = {
name: {
en: "Red Card",
fr: "Carton Rouge",
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Votre adversaire mélange sa main avec son deck et pioche 4 cartes.",
},
trainerType: "Item",
}
export default card