1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 16:19:54 +00:00

32 lines
358 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
name: {
en: "Milo",
},
illustrator: "take",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Discard up to 2 cards from your hand, and draw 2 cards for each card you discarded in this way.",
},
}
export default card