mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* feat: Add status Dashboard Still need some polishing like using the compiler instead of the live DB Signed-off-by: Avior <github@avior.me> * refactor: Simplified compiler files generators Signed-off-by: Avior <florian.bouillon@delta-wings.net> * chore: Add step to compiler for stats and optimize Signed-off-by: Avior <github@avior.me> * refactor: Remove unused variable Signed-off-by: Avior <github@avior.me>
24 lines
350 B
TypeScript
24 lines
350 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bw11: Set = {
|
|
id: "bw11",
|
|
|
|
name: {
|
|
en: "Legendary Treasures",
|
|
// fr: "Trésors Légendaires", // ONLY PTCGO
|
|
pt: "Tesouros Lendários"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "LTR",
|
|
|
|
cardCount: {
|
|
official: 113
|
|
},
|
|
|
|
releaseDate: "2013-11-06"
|
|
}
|
|
|
|
export default bw11
|