1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 04:17:49 +00:00
Florian Bouillon c4c294af00
Mass editing
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-04-24 23:22:58 +02:00

55 lines
668 B
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "xyp-XY211",
localId: "XY211",
// Card informations
name: {
en: "Lucario Spirit Link",
},
evolveFrom: {},
tags: [
Tag.TOOL,
],
illustrator: "5ban Graphics",
rarity: Rarity.Common,
category: Category.TRAINER,
set: {
name: "XY Black Star Promos",
code: "xyp"
}
}
export default card