1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
cards-database/sets/tk/tk-bw-e.ts
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
543 B
TypeScript

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: `HS trainer Kit (Excadrill)`,
fr: `HS Kit du dresseur (Minitaupe)`,
},
expansion: tk,
code: code,
cardCount: {
total: 30,
official: 30
},
releaseDate: `2011-09-01`,
legal: {
standard: false,
expanded: false,
},
images: {
symbol: `https://assets.tcgdex.net/univ/tk/${code}/symbol`
},
}
export default set