1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

31 lines
605 B
TypeScript

import Card from "@tcgdex/sdk/interfaces/Card";
import Tag from "@tcgdex/sdk/interfaces/Tag";
import Category from "@tcgdex/sdk/interfaces/Category";
import Rarity from "@tcgdex/sdk/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
}
export default card