mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
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>
12 lines
151 B
TypeScript
12 lines
151 B
TypeScript
import Expansion from "../interfaces/Expansion";
|
|
|
|
const tk: Expansion = {
|
|
name: {
|
|
en: "Trainer kit"
|
|
},
|
|
code: "tk",
|
|
sets: []
|
|
}
|
|
|
|
export default tk
|