mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 16:49:53 +00:00
32 lines
465 B
TypeScript
32 lines
465 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Champion\'s Path'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Marnie",
|
|
},
|
|
illustrator: "kirisAki",
|
|
rarity: "Rare",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
en: "Each player shuffles their hand and puts it on the bottom of their deck. If either player put any cards on the bottom of their deck in this way, you draw 5 cards, and your opponent draws 4 cards.",
|
|
},
|
|
|
|
|
|
}
|
|
|
|
export default card
|