1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00

32 lines
382 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
name: {
en: "Dan",
},
illustrator: "Hitoshi Ariga",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Draw 2 cards. You and your opponent play Rock-Paper-Scissors until someone wins. If you win, draw 2 more cards.",
},
}
export default card