1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 27ba2ef104
Updated Database
Added known swsh2 cards
Update every sets to remove the images
extension as it can be served as png, jpg and webp
Added Trainer kits sets
Added descriptions for set interface
Added new fields see #6

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-23 18:47:32 +01:00

35 lines
449 B
TypeScript

import Set from '../../interfaces/Set'
import ecard from '../../expansions/ecard'
const set: Set = {
name: {
en: "Best of game"
},
code: "bog",
expansion: ecard,
cardCount: {
total: 9,
official: 9
},
releaseDate: "2002-12-01", //day not found
legal: {
standard: false,
expanded: false,
},
images: {
symbol: "https://assets.tcgdex.net/univ/sets/ecard/sp/symbol"
},
availability: {
fr: false
}
}
export default set