mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
24 lines
284 B
TypeScript
24 lines
284 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Southern Islands"
|
|
},
|
|
expansionCode: "neo",
|
|
code: "si1",
|
|
|
|
cardCount: {
|
|
total: 18,
|
|
official: 18
|
|
},
|
|
|
|
releaseDate: "2001-07-31",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
}
|
|
}
|
|
|
|
export default set
|