1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

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>
This commit is contained in:
2020-02-23 18:47:32 +01:00
parent 66d8e43a43
commit 27ba2ef104
145 changed files with 1272 additions and 237 deletions

34
sets/tk/tk-xy-su.ts Normal file
View File

@ -0,0 +1,34 @@
import Set from '../../interfaces/Set'
import tk from '../../expansions/tk'
import path from 'path'
// Card in maxi sizes
const code = path.basename(__filename).split(".")[0]
const set: Set = {
name: {
en: `XY trainer Kit (Suicune)`,
fr: `XY Kit du dresseur (Suicune)`,
},
expansion: tk,
code: code,
cardCount: {
total: 30,
official: 30
},
releaseDate: `2016-04-27`,
legal: {
standard: false,
expanded: false,
},
images: {
symbol: `https://assets.tcgdex.net/univ/tk/${code}/symbol`
},
}
export default set