1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 13:59:55 +00:00

22 lines
408 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Mars"
},
illustrator: "Yuu Nishida",
rarity: "Two Star",
category: "Trainer",
effect: {
en: "Your opponent shuffles their hand into their deck and draws a card for each of their remaining points needed to win."
},
trainerType: "Supporter"
}
export default card