1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

32 lines
402 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../BREAKpoint'
const card: Card = {
name: {
en: "Delinquent",
},
illustrator: "Megumi Mizutani",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Discard any Stadium card in play. If you do, your opponent discards 3 cards from his or her hand.",
},
trainerType: "Supporter",
}
export default card