1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00

33 lines
417 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../BREAKpoint'
const card: Card = {
name: {
en: "Delinquent",
fr: "Terreur",
},
illustrator: "Yusuke Ohmura",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Défaussez toute carte Stade en jeu. Dans ce cas, votre adversaire défausse 3 cartes de sa main.",
},
trainerType: "Supporter",
}
export default card