mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
302 B
TypeScript
23 lines
302 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Black & White'
|
|
|
|
const bw11: Set = {
|
|
id: "bw11",
|
|
|
|
name: {
|
|
en: "Legendary Treasures",
|
|
fr: "Legendary Treasures"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "LTR",
|
|
|
|
cardCount: {
|
|
official: 113
|
|
},
|
|
|
|
releaseDate: "2013-11-06"
|
|
}
|
|
|
|
export default bw11
|