1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 12:19:53 +00:00

22 lines
357 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Red Card"
},
illustrator: "5ban Graphics",
rarity: "One Diamond",
category: "Trainer",
description: {
en: "Your opponent shuffles their hand into their deck and draws 3 cards."
},
trainerType: "Item"
}
export default card