1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

30 lines
573 B
TypeScript

import Card from "../../../interfaces/Card";
import Tag from "../../../interfaces/Tag";
import Category from "../../../interfaces/Category";
import Rarity from "../../../interfaces/Rarity";
import xy9 from "../../../sets/xy/xy9"
const card: Card = {
id: "xy9-98a",
localId: "98a",
name: {
en: "Delinquent",
},
tags: [
Tag.SUPPORTER
],
effect: {
en: "Discard any Stadium card in play. If you do, your opponent discards 3 cards from his or her hand."
},
illustrator: "Megumi Mizutani",
rarity: Rarity.Uncommon,
category: Category.TRAINER,
set: xy9
}