1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

23 lines
434 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Neo Genesis'
const card: Card = {
name: {
en: "Mary",
fr: "Lula",
de: "Margit"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Piochez 2 cartes. Ensuite, mélangez 2 cartes de votre main avec votre deck.",
de: "Draw 2 cards. Then, shuffle 2 cards from your hand into your deck."
}
}
export default card