1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +00:00

Made Variants mandatory

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-02 17:04:19 +02:00
parent 79a11faaa6
commit f8744ee6dd
155 changed files with 3114 additions and 255 deletions

View File

@ -3,12 +3,13 @@ import serie from '../Base'
const base4: Set = {
id: "base4",
name: {
en: "Base Set 2",
fr: "Base Set 2"
},
serie: serie,
serie: serie,
tcgOnline: "B2",
cardCount: {
@ -21,7 +22,14 @@ const base4: Set = {
standard: false
},
releaseDate: "2000-02-24"
releaseDate: "2000-02-24",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default base4

View File

@ -3,23 +3,33 @@ import serie from '../Base'
const base1: Set = {
id: "base1",
name: {
en: "Base Set",
fr: "Set de Base"
},
serie: serie,
serie: serie,
tcgOnline: "BS",
cardCount: {
total: 102,
official: 102
},
legal: {
expanded: false,
standard: false
},
releaseDate: "1999-01-09"
releaseDate: "1999-01-09",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default base1

View File

@ -3,23 +3,33 @@ import serie from '../Base'
const base3: Set = {
id: "base3",
name: {
en: "Fossil",
fr: "Fossile"
},
serie: serie,
serie: serie,
tcgOnline: "FO",
cardCount: {
total: 62,
official: 62
},
legal: {
expanded: false,
standard: false
},
releaseDate: "1999-10-10"
releaseDate: "1999-10-10",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default base3

View File

@ -3,23 +3,33 @@ import serie from '../Base'
const base2: Set = {
id: "base2",
name: {
en: "Jungle",
fr: "Jungle"
},
serie: serie,
serie: serie,
tcgOnline: "JU",
cardCount: {
total: 64,
official: 64
},
legal: {
expanded: false,
standard: false
},
releaseDate: "1999-06-16"
releaseDate: "1999-06-16",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default base2

View File

@ -3,23 +3,33 @@ import serie from '../Base'
const base5: Set = {
id: "base5",
name: {
en: "Team Rocket",
fr: "Team Rocket"
},
serie: serie,
serie: serie,
tcgOnline: "TR",
cardCount: {
total: 83,
official: 82
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2000-04-24"
releaseDate: "2000-04-24",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default base5

View File

@ -3,22 +3,32 @@ import serie from '../Base'
const wp: Set = {
id: "wp",
name: {
en: "W Promotional",
fr: "W Promotional"
},
serie: serie,
serie: serie,
cardCount: {
total: 53,
official: 53
},
legal: {
expanded: false,
standard: false
},
releaseDate: "1999-09-01"
releaseDate: "1999-09-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default wp

View File

@ -3,23 +3,33 @@ import serie from '../Base'
const basep: Set = {
id: "basep",
name: {
en: "Wizards Black Star Promos",
fr: "Wizards Black Star Promos"
},
serie: serie,
serie: serie,
tcgOnline: "PR",
cardCount: {
total: 53,
official: 53
},
legal: {
expanded: false,
standard: false
},
releaseDate: "1999-07-01"
releaseDate: "1999-07-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default basep