mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
Made Variants mandatory
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
parent
79a11faaa6
commit
f8744ee6dd
@ -3,12 +3,13 @@ import serie from '../Base'
|
|||||||
|
|
||||||
const base4: Set = {
|
const base4: Set = {
|
||||||
id: "base4",
|
id: "base4",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Base Set 2",
|
en: "Base Set 2",
|
||||||
fr: "Base Set 2"
|
fr: "Base Set 2"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "B2",
|
tcgOnline: "B2",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -21,7 +22,14 @@ const base4: Set = {
|
|||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2000-02-24"
|
releaseDate: "2000-02-24",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default base4
|
export default base4
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Base'
|
|||||||
|
|
||||||
const base1: Set = {
|
const base1: Set = {
|
||||||
id: "base1",
|
id: "base1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Base Set",
|
en: "Base Set",
|
||||||
fr: "Set de Base"
|
fr: "Set de Base"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "BS",
|
tcgOnline: "BS",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 102,
|
total: 102,
|
||||||
official: 102
|
official: 102
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "1999-01-09"
|
|
||||||
|
releaseDate: "1999-01-09",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default base1
|
export default base1
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Base'
|
|||||||
|
|
||||||
const base3: Set = {
|
const base3: Set = {
|
||||||
id: "base3",
|
id: "base3",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Fossil",
|
en: "Fossil",
|
||||||
fr: "Fossile"
|
fr: "Fossile"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "FO",
|
tcgOnline: "FO",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 62,
|
total: 62,
|
||||||
official: 62
|
official: 62
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "1999-10-10"
|
|
||||||
|
releaseDate: "1999-10-10",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default base3
|
export default base3
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Base'
|
|||||||
|
|
||||||
const base2: Set = {
|
const base2: Set = {
|
||||||
id: "base2",
|
id: "base2",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Jungle",
|
en: "Jungle",
|
||||||
fr: "Jungle"
|
fr: "Jungle"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "JU",
|
tcgOnline: "JU",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 64,
|
total: 64,
|
||||||
official: 64
|
official: 64
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "1999-06-16"
|
|
||||||
|
releaseDate: "1999-06-16",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default base2
|
export default base2
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Base'
|
|||||||
|
|
||||||
const base5: Set = {
|
const base5: Set = {
|
||||||
id: "base5",
|
id: "base5",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Team Rocket",
|
en: "Team Rocket",
|
||||||
fr: "Team Rocket"
|
fr: "Team Rocket"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "TR",
|
tcgOnline: "TR",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 83,
|
total: 83,
|
||||||
official: 82
|
official: 82
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2000-04-24"
|
|
||||||
|
releaseDate: "2000-04-24",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default base5
|
export default base5
|
||||||
|
@ -3,22 +3,32 @@ import serie from '../Base'
|
|||||||
|
|
||||||
const wp: Set = {
|
const wp: Set = {
|
||||||
id: "wp",
|
id: "wp",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "W Promotional",
|
en: "W Promotional",
|
||||||
fr: "W Promotional"
|
fr: "W Promotional"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 53,
|
total: 53,
|
||||||
official: 53
|
official: 53
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "1999-09-01"
|
|
||||||
|
releaseDate: "1999-09-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default wp
|
export default wp
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Base'
|
|||||||
|
|
||||||
const basep: Set = {
|
const basep: Set = {
|
||||||
id: "basep",
|
id: "basep",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Wizards Black Star Promos",
|
en: "Wizards Black Star Promos",
|
||||||
fr: "Wizards Black Star Promos"
|
fr: "Wizards Black Star Promos"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "PR",
|
tcgOnline: "PR",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 53,
|
total: 53,
|
||||||
official: 53
|
official: 53
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "1999-07-01"
|
|
||||||
|
releaseDate: "1999-07-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default basep
|
export default basep
|
||||||
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bwp: Set = {
|
const bwp: Set = {
|
||||||
id: "bwp",
|
id: "bwp",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "BW Black Star Promos",
|
en: "BW Black Star Promos",
|
||||||
fr: "Promo BW"
|
fr: "Promo BW"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "PR-BLW",
|
tcgOnline: "PR-BLW",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bwp: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bwp
|
export default bwp
|
||||||
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bw1: Set = {
|
const bw1: Set = {
|
||||||
id: "bw1",
|
id: "bw1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Black & White",
|
en: "Black & White",
|
||||||
fr: "Noir & Blanc"
|
fr: "Noir & Blanc"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "BLW",
|
tcgOnline: "BLW",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bw1: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bw1
|
export default bw1
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bw7: Set = {
|
const bw7: Set = {
|
||||||
id: "bw7",
|
id: "bw7",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Boundaries Crossed",
|
en: "Boundaries Crossed",
|
||||||
fr: "Frontières Franchies"
|
fr: "Frontières Franchies"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "BCR",
|
tcgOnline: "BCR",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bw7: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bw7
|
export default bw7
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bw5: Set = {
|
const bw5: Set = {
|
||||||
id: "bw5",
|
id: "bw5",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Dark Explorers",
|
en: "Dark Explorers",
|
||||||
fr: "Explorateurs Obscurs"
|
fr: "Explorateurs Obscurs"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "DEX",
|
tcgOnline: "DEX",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bw5: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bw5
|
export default bw5
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const dv1: Set = {
|
const dv1: Set = {
|
||||||
id: "dv1",
|
id: "dv1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Dragon Vault",
|
en: "Dragon Vault",
|
||||||
fr: "Coffre des Dragons"
|
fr: "Coffre des Dragons"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "DRV",
|
tcgOnline: "DRV",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const dv1: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default dv1
|
export default dv1
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bw6: Set = {
|
const bw6: Set = {
|
||||||
id: "bw6",
|
id: "bw6",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Dragons Exalted",
|
en: "Dragons Exalted",
|
||||||
fr: "Dragons Éxaltés"
|
fr: "Dragons Éxaltés"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "DRX",
|
tcgOnline: "DRX",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bw6: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bw6
|
export default bw6
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bw2: Set = {
|
const bw2: Set = {
|
||||||
id: "bw2",
|
id: "bw2",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Emerging Powers",
|
en: "Emerging Powers",
|
||||||
fr: "Pouvoirs Émergents"
|
fr: "Pouvoirs Émergents"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "EPO",
|
tcgOnline: "EPO",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bw2: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bw2
|
export default bw2
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bw11: Set = {
|
const bw11: Set = {
|
||||||
id: "bw11",
|
id: "bw11",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Legendary Treasures",
|
en: "Legendary Treasures",
|
||||||
fr: "Legendary Treasures"
|
fr: "Legendary Treasures"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "LTR",
|
tcgOnline: "LTR",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bw11: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bw11
|
export default bw11
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bw4: Set = {
|
const bw4: Set = {
|
||||||
id: "bw4",
|
id: "bw4",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Next Destinies",
|
en: "Next Destinies",
|
||||||
fr: "Destinées Futures"
|
fr: "Destinées Futures"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "NXD",
|
tcgOnline: "NXD",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bw4: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bw4
|
export default bw4
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bw3: Set = {
|
const bw3: Set = {
|
||||||
id: "bw3",
|
id: "bw3",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Noble Victories",
|
en: "Noble Victories",
|
||||||
fr: "Nobles Victoires"
|
fr: "Nobles Victoires"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "NVI",
|
tcgOnline: "NVI",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bw3: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bw3
|
export default bw3
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bw10: Set = {
|
const bw10: Set = {
|
||||||
id: "bw10",
|
id: "bw10",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Plasma Blast",
|
en: "Plasma Blast",
|
||||||
fr: "Explosion Plasma"
|
fr: "Explosion Plasma"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "PLB",
|
tcgOnline: "PLB",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bw10: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bw10
|
export default bw10
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bw9: Set = {
|
const bw9: Set = {
|
||||||
id: "bw9",
|
id: "bw9",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Plasma Freeze",
|
en: "Plasma Freeze",
|
||||||
fr: "Glaciation Plasma"
|
fr: "Glaciation Plasma"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "PLF",
|
tcgOnline: "PLF",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bw9: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bw9
|
export default bw9
|
@ -3,12 +3,13 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const bw8: Set = {
|
const bw8: Set = {
|
||||||
id: "bw8",
|
id: "bw8",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Plasma Storm",
|
en: "Plasma Storm",
|
||||||
fr: "Tempète Plasma"
|
fr: "Tempète Plasma"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "PLS",
|
tcgOnline: "PLS",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -22,6 +23,13 @@ const bw8: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bw8
|
export default bw8
|
@ -3,22 +3,32 @@ import serie from '../Black & White'
|
|||||||
|
|
||||||
const rc: Set = {
|
const rc: Set = {
|
||||||
id: "rc",
|
id: "rc",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Radiant Collection",
|
en: "Radiant Collection",
|
||||||
fr: "Radiant Collection"
|
fr: "Radiant Collection"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 25,
|
total: 25,
|
||||||
official: 25
|
official: 25
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: true,
|
expanded: true,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2013-11-06"
|
|
||||||
|
releaseDate: "2013-11-06",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default rc
|
export default rc
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Call of Legends'
|
|||||||
|
|
||||||
const col1: Set = {
|
const col1: Set = {
|
||||||
id: "col1",
|
id: "col1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Call of Legends",
|
en: "Call of Legends",
|
||||||
fr: "L'appel des Légendes"
|
fr: "L'appel des Légendes"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "CL",
|
tcgOnline: "CL",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 106,
|
total: 106,
|
||||||
official: 95
|
official: 95
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2011-02-09"
|
|
||||||
|
releaseDate: "2011-02-09",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default col1
|
export default col1
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
|
|||||||
|
|
||||||
const dpp: Set = {
|
const dpp: Set = {
|
||||||
id: "dpp",
|
id: "dpp",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "DP Black Star Promos",
|
en: "DP Black Star Promos",
|
||||||
fr: "Promo DP"
|
fr: "Promo DP"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "PR-DPP",
|
tcgOnline: "PR-DPP",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 56,
|
total: 56,
|
||||||
official: 56
|
official: 56
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2007-05-01"
|
|
||||||
|
releaseDate: "2007-05-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default dpp
|
export default dpp
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
|
|||||||
|
|
||||||
const dp1: Set = {
|
const dp1: Set = {
|
||||||
id: "dp1",
|
id: "dp1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Diamond & Pearl",
|
en: "Diamond & Pearl",
|
||||||
fr: "Diamant & Perle"
|
fr: "Diamant & Perle"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "DP",
|
tcgOnline: "DP",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 130,
|
total: 130,
|
||||||
official: 130
|
official: 130
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2007-05-01"
|
|
||||||
|
releaseDate: "2007-05-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default dp1
|
export default dp1
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
|
|||||||
|
|
||||||
const dp4: Set = {
|
const dp4: Set = {
|
||||||
id: "dp4",
|
id: "dp4",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Great Encounters",
|
en: "Great Encounters",
|
||||||
fr: "Duels au Sommets"
|
fr: "Duels au Sommets"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "GE",
|
tcgOnline: "GE",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 106,
|
total: 106,
|
||||||
official: 106
|
official: 106
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2008-02-01"
|
|
||||||
|
releaseDate: "2008-02-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default dp4
|
export default dp4
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
|
|||||||
|
|
||||||
const dp6: Set = {
|
const dp6: Set = {
|
||||||
id: "dp6",
|
id: "dp6",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Legends Awakened",
|
en: "Legends Awakened",
|
||||||
fr: "Éveil des Légendes"
|
fr: "Éveil des Légendes"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "LA",
|
tcgOnline: "LA",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 146,
|
total: 146,
|
||||||
official: 146
|
official: 146
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2008-08-01"
|
|
||||||
|
releaseDate: "2008-08-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default dp6
|
export default dp6
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
|
|||||||
|
|
||||||
const dp5: Set = {
|
const dp5: Set = {
|
||||||
id: "dp5",
|
id: "dp5",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Majestic Dawn",
|
en: "Majestic Dawn",
|
||||||
fr: "Aube Majestueuse"
|
fr: "Aube Majestueuse"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "MD",
|
tcgOnline: "MD",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 100,
|
total: 100,
|
||||||
official: 100
|
official: 100
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2008-05-01"
|
|
||||||
|
releaseDate: "2008-05-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default dp5
|
export default dp5
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
|
|||||||
|
|
||||||
const dp2: Set = {
|
const dp2: Set = {
|
||||||
id: "dp2",
|
id: "dp2",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Mysterious Treasures",
|
en: "Mysterious Treasures",
|
||||||
fr: "Mysterious Treasures"
|
fr: "Mysterious Treasures"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "MT",
|
tcgOnline: "MT",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 123,
|
total: 123,
|
||||||
official: 122
|
official: 122
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2007-08-01"
|
|
||||||
|
releaseDate: "2007-08-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default dp2
|
export default dp2
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
|
|||||||
|
|
||||||
const dp3: Set = {
|
const dp3: Set = {
|
||||||
id: "dp3",
|
id: "dp3",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Secret Wonders",
|
en: "Secret Wonders",
|
||||||
fr: "Merveilles Secrètes"
|
fr: "Merveilles Secrètes"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "SW",
|
tcgOnline: "SW",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 132,
|
total: 132,
|
||||||
official: 132
|
official: 132
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2007-11-01"
|
|
||||||
|
releaseDate: "2007-11-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default dp3
|
export default dp3
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
|
|||||||
|
|
||||||
const dp7: Set = {
|
const dp7: Set = {
|
||||||
id: "dp7",
|
id: "dp7",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Stormfront",
|
en: "Stormfront",
|
||||||
fr: "Tempête"
|
fr: "Tempête"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "SF",
|
tcgOnline: "SF",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 106,
|
total: 106,
|
||||||
official: 100
|
official: 100
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2008-11-01"
|
|
||||||
|
releaseDate: "2008-11-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default dp7
|
export default dp7
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../E-Card'
|
|||||||
|
|
||||||
const ecard2: Set = {
|
const ecard2: Set = {
|
||||||
id: "ecard2",
|
id: "ecard2",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Aquapolis",
|
en: "Aquapolis",
|
||||||
fr: "Aquapolis"
|
fr: "Aquapolis"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "AQ",
|
tcgOnline: "AQ",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 182,
|
total: 182,
|
||||||
official: 147
|
official: 147
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2003-01-15"
|
|
||||||
|
releaseDate: "2003-01-15",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ecard2
|
export default ecard2
|
||||||
|
@ -3,22 +3,32 @@ import serie from '../E-Card'
|
|||||||
|
|
||||||
const bog: Set = {
|
const bog: Set = {
|
||||||
id: "bog",
|
id: "bog",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Best of game",
|
en: "Best of game",
|
||||||
fr: "Best of game"
|
fr: "Best of game"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 9,
|
total: 9,
|
||||||
official: 9
|
official: 9
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2002-12-01"
|
|
||||||
|
releaseDate: "2002-12-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default bog
|
export default bog
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../E-Card'
|
|||||||
|
|
||||||
const ecard1: Set = {
|
const ecard1: Set = {
|
||||||
id: "ecard1",
|
id: "ecard1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Expedition Base Set",
|
en: "Expedition Base Set",
|
||||||
fr: "Expedition"
|
fr: "Expedition"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "EX",
|
tcgOnline: "EX",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 165,
|
total: 165,
|
||||||
official: 165
|
official: 165
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2002-09-15"
|
|
||||||
|
releaseDate: "2002-09-15",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ecard1
|
export default ecard1
|
||||||
|
@ -3,22 +3,32 @@ import serie from '../E-Card'
|
|||||||
|
|
||||||
const sp: Set = {
|
const sp: Set = {
|
||||||
id: "sp",
|
id: "sp",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Sample",
|
en: "Sample",
|
||||||
fr: "Sample"
|
fr: "Sample"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 10,
|
total: 10,
|
||||||
official: 10
|
official: 10
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2002-08-01"
|
|
||||||
|
releaseDate: "2002-08-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default sp
|
export default sp
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../E-Card'
|
|||||||
|
|
||||||
const ecard3: Set = {
|
const ecard3: Set = {
|
||||||
id: "ecard3",
|
id: "ecard3",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Skyridge",
|
en: "Skyridge",
|
||||||
fr: "Skyridge"
|
fr: "Skyridge"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "SK",
|
tcgOnline: "SK",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 182,
|
total: 182,
|
||||||
official: 144
|
official: 144
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2003-05-12"
|
|
||||||
|
releaseDate: "2003-05-12",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ecard3
|
export default ecard3
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex14: Set = {
|
const ex14: Set = {
|
||||||
id: "ex14",
|
id: "ex14",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Crystal Guardians",
|
en: "Crystal Guardians",
|
||||||
fr: "Crystal Guardians"
|
fr: "Crystal Guardians"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "CG",
|
tcgOnline: "CG",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 100,
|
total: 100,
|
||||||
official: 100
|
official: 100
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2006-08-30"
|
|
||||||
|
releaseDate: "2006-08-30",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex14
|
export default ex14
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex11: Set = {
|
const ex11: Set = {
|
||||||
id: "ex11",
|
id: "ex11",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Delta Species",
|
en: "Delta Species",
|
||||||
fr: "Delta Species"
|
fr: "Delta Species"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "DS",
|
tcgOnline: "DS",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 114,
|
total: 114,
|
||||||
official: 113
|
official: 113
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2005-10-31"
|
|
||||||
|
releaseDate: "2005-10-31",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex11
|
export default ex11
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex8: Set = {
|
const ex8: Set = {
|
||||||
id: "ex8",
|
id: "ex8",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Deoxys",
|
en: "Deoxys",
|
||||||
fr: "Deoxys"
|
fr: "Deoxys"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "DX",
|
tcgOnline: "DX",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 108,
|
total: 108,
|
||||||
official: 107
|
official: 107
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2005-02-01"
|
|
||||||
|
releaseDate: "2005-02-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex8
|
export default ex8
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex15: Set = {
|
const ex15: Set = {
|
||||||
id: "ex15",
|
id: "ex15",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Dragon Frontiers",
|
en: "Dragon Frontiers",
|
||||||
fr: "Dragon Frontiers"
|
fr: "Dragon Frontiers"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "DF",
|
tcgOnline: "DF",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 101,
|
total: 101,
|
||||||
official: 101
|
official: 101
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2006-11-08"
|
|
||||||
|
releaseDate: "2006-11-08",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex15
|
export default ex15
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex3: Set = {
|
const ex3: Set = {
|
||||||
id: "ex3",
|
id: "ex3",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Dragon",
|
en: "Dragon",
|
||||||
fr: "Dragon"
|
fr: "Dragon"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "DR",
|
tcgOnline: "DR",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 100,
|
total: 100,
|
||||||
official: 97
|
official: 97
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2003-11-24"
|
|
||||||
|
releaseDate: "2003-11-24",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex3
|
export default ex3
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex9: Set = {
|
const ex9: Set = {
|
||||||
id: "ex9",
|
id: "ex9",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Emerald",
|
en: "Emerald",
|
||||||
fr: "Emerald"
|
fr: "Emerald"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "EM",
|
tcgOnline: "EM",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 107,
|
total: 107,
|
||||||
official: 106
|
official: 106
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2005-05-09"
|
|
||||||
|
releaseDate: "2005-05-09",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex9
|
export default ex9
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex6: Set = {
|
const ex6: Set = {
|
||||||
id: "ex6",
|
id: "ex6",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "FireRed & LeafGreen",
|
en: "FireRed & LeafGreen",
|
||||||
fr: "FireRed & LeafGreen"
|
fr: "FireRed & LeafGreen"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "RG",
|
tcgOnline: "RG",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 116,
|
total: 116,
|
||||||
official: 112
|
official: 112
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2004-09-01"
|
|
||||||
|
releaseDate: "2004-09-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex6
|
export default ex6
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex5: Set = {
|
const ex5: Set = {
|
||||||
id: "ex5",
|
id: "ex5",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Hidden Legends",
|
en: "Hidden Legends",
|
||||||
fr: "Hidden Legends"
|
fr: "Hidden Legends"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "HL",
|
tcgOnline: "HL",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 102,
|
total: 102,
|
||||||
official: 101
|
official: 101
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2004-06-01"
|
|
||||||
|
releaseDate: "2004-06-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex5
|
export default ex5
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex13: Set = {
|
const ex13: Set = {
|
||||||
id: "ex13",
|
id: "ex13",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Holon Phantoms",
|
en: "Holon Phantoms",
|
||||||
fr: "Holon Phantoms"
|
fr: "Holon Phantoms"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "HP",
|
tcgOnline: "HP",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 111,
|
total: 111,
|
||||||
official: 110
|
official: 110
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2006-05-03"
|
|
||||||
|
releaseDate: "2006-05-03",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex13
|
export default ex13
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex12: Set = {
|
const ex12: Set = {
|
||||||
id: "ex12",
|
id: "ex12",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Legend Maker",
|
en: "Legend Maker",
|
||||||
fr: "Legend Maker"
|
fr: "Legend Maker"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "LM",
|
tcgOnline: "LM",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 93,
|
total: 93,
|
||||||
official: 92
|
official: 92
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2006-02-13"
|
|
||||||
|
releaseDate: "2006-02-13",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex12
|
export default ex12
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex16: Set = {
|
const ex16: Set = {
|
||||||
id: "ex16",
|
id: "ex16",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Power Keepers",
|
en: "Power Keepers",
|
||||||
fr: "Power Keepers"
|
fr: "Power Keepers"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "PK",
|
tcgOnline: "PK",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 108,
|
total: 108,
|
||||||
official: 108
|
official: 108
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2007-02-17"
|
|
||||||
|
releaseDate: "2007-02-17",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex16
|
export default ex16
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex1: Set = {
|
const ex1: Set = {
|
||||||
id: "ex1",
|
id: "ex1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Ruby & Sapphire",
|
en: "Ruby & Sapphire",
|
||||||
fr: "Ruby & Sapphire"
|
fr: "Ruby & Sapphire"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "RS",
|
tcgOnline: "RS",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 109,
|
total: 109,
|
||||||
official: 109
|
official: 109
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2003-07-01"
|
|
||||||
|
releaseDate: "2003-07-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex1
|
export default ex1
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex2: Set = {
|
const ex2: Set = {
|
||||||
id: "ex2",
|
id: "ex2",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Sandstorm",
|
en: "Sandstorm",
|
||||||
fr: "Sandstorm"
|
fr: "Sandstorm"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "SS",
|
tcgOnline: "SS",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 100,
|
total: 100,
|
||||||
official: 100
|
official: 100
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2003-09-18"
|
|
||||||
|
releaseDate: "2003-09-18",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex2
|
export default ex2
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex4: Set = {
|
const ex4: Set = {
|
||||||
id: "ex4",
|
id: "ex4",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Team Magma vs Team Aqua",
|
en: "Team Magma vs Team Aqua",
|
||||||
fr: "Team Magma vs Team Aqua"
|
fr: "Team Magma vs Team Aqua"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "MA",
|
tcgOnline: "MA",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 97,
|
total: 97,
|
||||||
official: 95
|
official: 95
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2004-03-01"
|
|
||||||
|
releaseDate: "2004-03-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex4
|
export default ex4
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex7: Set = {
|
const ex7: Set = {
|
||||||
id: "ex7",
|
id: "ex7",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Team Rocket Returns",
|
en: "Team Rocket Returns",
|
||||||
fr: "Team Rocket Returns"
|
fr: "Team Rocket Returns"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "RR",
|
tcgOnline: "RR",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 111,
|
total: 111,
|
||||||
official: 109
|
official: 109
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2004-11-01"
|
|
||||||
|
releaseDate: "2004-11-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex7
|
export default ex7
|
||||||
|
@ -3,22 +3,32 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const exu: Set = {
|
const exu: Set = {
|
||||||
id: "exu",
|
id: "exu",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Unseen Forces Unown Collection",
|
en: "Unseen Forces Unown Collection",
|
||||||
fr: "Unseen Forces Unown Collection"
|
fr: "Unseen Forces Unown Collection"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 28,
|
total: 28,
|
||||||
official: 28
|
official: 28
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2005-08-22"
|
|
||||||
|
releaseDate: "2005-08-22",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default exu
|
export default exu
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../EX'
|
|||||||
|
|
||||||
const ex10: Set = {
|
const ex10: Set = {
|
||||||
id: "ex10",
|
id: "ex10",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Unseen Forces",
|
en: "Unseen Forces",
|
||||||
fr: "Unseen Forces"
|
fr: "Unseen Forces"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "UF",
|
tcgOnline: "UF",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 117,
|
total: 117,
|
||||||
official: 115
|
official: 115
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2005-08-22"
|
|
||||||
|
releaseDate: "2005-08-22",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ex10
|
export default ex10
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Gym'
|
|||||||
|
|
||||||
const gym2: Set = {
|
const gym2: Set = {
|
||||||
id: "gym2",
|
id: "gym2",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Gym Challenge",
|
en: "Gym Challenge",
|
||||||
fr: "Gym Challenge"
|
fr: "Gym Challenge"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "G2",
|
tcgOnline: "G2",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 132,
|
total: 132,
|
||||||
official: 132
|
official: 132
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2000-10-16"
|
|
||||||
|
releaseDate: "2000-10-16",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default gym2
|
export default gym2
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../Gym'
|
|||||||
|
|
||||||
const gym1: Set = {
|
const gym1: Set = {
|
||||||
id: "gym1",
|
id: "gym1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Gym Heroes",
|
en: "Gym Heroes",
|
||||||
fr: "Gym Heroes"
|
fr: "Gym Heroes"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "G1",
|
tcgOnline: "G1",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 132,
|
total: 132,
|
||||||
official: 132
|
official: 132
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2000-08-14"
|
|
||||||
|
releaseDate: "2000-08-14",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default gym1
|
export default gym1
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../HeartGold & SoulSilver'
|
|||||||
|
|
||||||
const hgssp: Set = {
|
const hgssp: Set = {
|
||||||
id: "hgssp",
|
id: "hgssp",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "HGSS Black Star Promos",
|
en: "HGSS Black Star Promos",
|
||||||
fr: "Promo HGSS"
|
fr: "Promo HGSS"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "PR-HS",
|
tcgOnline: "PR-HS",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 25,
|
total: 25,
|
||||||
official: 25
|
official: 25
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2010-02-11"
|
|
||||||
|
releaseDate: "2010-02-11",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default hgssp
|
export default hgssp
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../HeartGold & SoulSilver'
|
|||||||
|
|
||||||
const hgss1: Set = {
|
const hgss1: Set = {
|
||||||
id: "hgss1",
|
id: "hgss1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "HeartGold SoulSilver",
|
en: "HeartGold SoulSilver",
|
||||||
fr: "HeartGold SoulSilver"
|
fr: "HeartGold SoulSilver"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "HS",
|
tcgOnline: "HS",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 124,
|
total: 124,
|
||||||
official: 123
|
official: 123
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2010-02-10"
|
|
||||||
|
releaseDate: "2010-02-10",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default hgss1
|
export default hgss1
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../HeartGold & SoulSilver'
|
|||||||
|
|
||||||
const hgss4: Set = {
|
const hgss4: Set = {
|
||||||
id: "hgss4",
|
id: "hgss4",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Triumphant",
|
en: "Triumphant",
|
||||||
fr: "Triomphant"
|
fr: "Triomphant"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "TM",
|
tcgOnline: "TM",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 103,
|
total: 103,
|
||||||
official: 102
|
official: 102
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2010-11-03"
|
|
||||||
|
releaseDate: "2010-11-03",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default hgss4
|
export default hgss4
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../HeartGold & SoulSilver'
|
|||||||
|
|
||||||
const hgss3: Set = {
|
const hgss3: Set = {
|
||||||
id: "hgss3",
|
id: "hgss3",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Undaunted",
|
en: "Undaunted",
|
||||||
fr: "Indomptable"
|
fr: "Indomptable"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "UD",
|
tcgOnline: "UD",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 91,
|
total: 91,
|
||||||
official: 90
|
official: 90
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2010-08-18"
|
|
||||||
|
releaseDate: "2010-08-18",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default hgss3
|
export default hgss3
|
||||||
|
@ -3,23 +3,33 @@ import serie from '../HeartGold & SoulSilver'
|
|||||||
|
|
||||||
const hgss2: Set = {
|
const hgss2: Set = {
|
||||||
id: "hgss2",
|
id: "hgss2",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Unleashed",
|
en: "Unleashed",
|
||||||
fr: "Déchaînement"
|
fr: "Déchaînement"
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "UL",
|
tcgOnline: "UL",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 96,
|
total: 96,
|
||||||
official: 95
|
official: 95
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2010-05-12"
|
|
||||||
|
releaseDate: "2010-05-12",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default hgss2
|
export default hgss2
|
||||||
|
@ -3,22 +3,32 @@ import serie from '../Legendary Collection'
|
|||||||
|
|
||||||
const lc: Set = {
|
const lc: Set = {
|
||||||
id: "lc",
|
id: "lc",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Legendary Collection",
|
en: "Legendary Collection",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "LC",
|
tcgOnline: "LC",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 110,
|
total: 110,
|
||||||
official: 110
|
official: 110
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2002-05-24"
|
|
||||||
|
releaseDate: "2002-05-24",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default lc
|
export default lc
|
||||||
|
@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
|
|||||||
|
|
||||||
const s2011bw: Set = {
|
const s2011bw: Set = {
|
||||||
id: "2011bw",
|
id: "2011bw",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Macdonald's Collection 2011",
|
en: "Macdonald's Collection 2011",
|
||||||
fr: "Collection Macdonald 2011"
|
fr: "Collection Macdonald 2011"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 12,
|
total: 12,
|
||||||
official: 12
|
official: 12
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2011-06-17"
|
releaseDate: "2011-06-17",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default s2011bw
|
export default s2011bw
|
@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
|
|||||||
|
|
||||||
const s2012bw: Set = {
|
const s2012bw: Set = {
|
||||||
id: "2012bw",
|
id: "2012bw",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Macdonald's Collection 2012",
|
en: "Macdonald's Collection 2012",
|
||||||
fr: "Collection Macdonald 2012"
|
fr: "Collection Macdonald 2012"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 12,
|
total: 12,
|
||||||
official: 12
|
official: 12
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2012-06-15"
|
releaseDate: "2012-06-15",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default s2012bw
|
export default s2012bw
|
@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
|
|||||||
|
|
||||||
const s2013bw: Set = {
|
const s2013bw: Set = {
|
||||||
id: "2013bw",
|
id: "2013bw",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
// en: Not Available outer France
|
// en: Not Available outer France
|
||||||
fr: "Collection Macdonald 2013"
|
fr: "Collection Macdonald 2013"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 12,
|
total: 12,
|
||||||
official: 12
|
official: 12
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2013-11-01"
|
releaseDate: "2013-11-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default s2013bw
|
export default s2013bw
|
||||||
|
@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
|
|||||||
|
|
||||||
const s2014xy: Set = {
|
const s2014xy: Set = {
|
||||||
id: "2014xy",
|
id: "2014xy",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Macdonald's Collection 2014",
|
en: "Macdonald's Collection 2014",
|
||||||
fr: "Collection Macdonald 2014"
|
fr: "Collection Macdonald 2014"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 12,
|
total: 12,
|
||||||
official: 12
|
official: 12
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2014-05-23"
|
releaseDate: "2014-05-23",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default s2014xy
|
export default s2014xy
|
@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
|
|||||||
|
|
||||||
const s2015xy: Set = {
|
const s2015xy: Set = {
|
||||||
id: "2015xy",
|
id: "2015xy",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Macdonald's Collection 2015",
|
en: "Macdonald's Collection 2015",
|
||||||
fr: "Collection Macdonald 2015"
|
fr: "Collection Macdonald 2015"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 12,
|
total: 12,
|
||||||
official: 12
|
official: 12
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2015-11-27"
|
releaseDate: "2015-11-27",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default s2015xy
|
export default s2015xy
|
@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
|
|||||||
|
|
||||||
const s2016xy: Set = {
|
const s2016xy: Set = {
|
||||||
id: "2016xy",
|
id: "2016xy",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Macdonald's Collection 2016",
|
en: "Macdonald's Collection 2016",
|
||||||
fr: "Collection Macdonald 2016"
|
fr: "Collection Macdonald 2016"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 12,
|
total: 12,
|
||||||
official: 12
|
official: 12
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2016-08-20"
|
releaseDate: "2016-08-20",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default s2016xy
|
export default s2016xy
|
@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
|
|||||||
|
|
||||||
const s2017sm: Set = {
|
const s2017sm: Set = {
|
||||||
id: "2017sm",
|
id: "2017sm",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Macdonald's Collection 2017",
|
en: "Macdonald's Collection 2017",
|
||||||
fr: "Collection Macdonald 2017"
|
fr: "Collection Macdonald 2017"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 12,
|
total: 12,
|
||||||
official: 12
|
official: 12
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2017-08-03"
|
releaseDate: "2017-08-03",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default s2017sm
|
export default s2017sm
|
@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
|
|||||||
|
|
||||||
const s2018sm: Set = {
|
const s2018sm: Set = {
|
||||||
id: "2018sm",
|
id: "2018sm",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Macdonald's Collection 2018",
|
en: "Macdonald's Collection 2018",
|
||||||
fr: "Collection Macdonald 2018"
|
fr: "Collection Macdonald 2018"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 12,
|
total: 12,
|
||||||
official: 12
|
official: 12
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2018-10-19"
|
releaseDate: "2018-10-19",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default s2018sm
|
export default s2018sm
|
@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
|
|||||||
|
|
||||||
const s2019sm: Set = {
|
const s2019sm: Set = {
|
||||||
id: "2019sm",
|
id: "2019sm",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Macdonald's Collection 2019",
|
en: "Macdonald's Collection 2019",
|
||||||
fr: "Collection Macdonald 2019"
|
fr: "Collection Macdonald 2019"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 12,
|
total: 12,
|
||||||
official: 12
|
official: 12
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2019-10-15"
|
releaseDate: "2019-10-15",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default s2019sm
|
export default s2019sm
|
@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
|
|||||||
|
|
||||||
const s2021swsh: Set = {
|
const s2021swsh: Set = {
|
||||||
id: "2021swsh",
|
id: "2021swsh",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Macdonald's Collection 2021",
|
en: "Macdonald's Collection 2021",
|
||||||
fr: "Collection Macdonald 2021"
|
fr: "Collection Macdonald 2021"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 25,
|
total: 25,
|
||||||
official: 25
|
official: 25
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "2021-02-09"
|
releaseDate: "2021-02-09",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default s2021swsh
|
export default s2021swsh
|
@ -3,23 +3,33 @@ import serie from '../Miscellaneous'
|
|||||||
|
|
||||||
const jumbo: Set = {
|
const jumbo: Set = {
|
||||||
id: "jumbo",
|
id: "jumbo",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Jumbo cards",
|
en: "Jumbo cards",
|
||||||
fr: "Cartes Jumbo"
|
fr: "Cartes Jumbo"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 160,
|
total: 160,
|
||||||
official: 160
|
official: 160
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2000-02-01"
|
|
||||||
|
releaseDate: "2000-02-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default jumbo
|
export default jumbo
|
||||||
|
@ -3,22 +3,32 @@ import serie from '../Neo'
|
|||||||
|
|
||||||
const neo4: Set = {
|
const neo4: Set = {
|
||||||
id: "neo4",
|
id: "neo4",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Neo Destiny",
|
en: "Neo Destiny",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "N4",
|
tcgOnline: "N4",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 113,
|
total: 113,
|
||||||
official: 105
|
official: 105
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2002-02-28"
|
|
||||||
|
releaseDate: "2002-02-28",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default neo4
|
export default neo4
|
||||||
|
@ -3,22 +3,32 @@ import serie from '../Neo'
|
|||||||
|
|
||||||
const neo2: Set = {
|
const neo2: Set = {
|
||||||
id: "neo2",
|
id: "neo2",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Neo Discovery",
|
en: "Neo Discovery",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "N2",
|
tcgOnline: "N2",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 75,
|
total: 75,
|
||||||
official: 75
|
official: 75
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2001-06-01"
|
|
||||||
|
releaseDate: "2001-06-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default neo2
|
export default neo2
|
||||||
|
@ -3,22 +3,32 @@ import serie from '../Neo'
|
|||||||
|
|
||||||
const neo1: Set = {
|
const neo1: Set = {
|
||||||
id: "neo1",
|
id: "neo1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Neo Genesis",
|
en: "Neo Genesis",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "N1",
|
tcgOnline: "N1",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 111,
|
total: 111,
|
||||||
official: 111
|
official: 111
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2000-12-16"
|
|
||||||
|
releaseDate: "2000-12-16",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default neo1
|
export default neo1
|
||||||
|
@ -3,22 +3,32 @@ import serie from '../Neo'
|
|||||||
|
|
||||||
const neo3: Set = {
|
const neo3: Set = {
|
||||||
id: "neo3",
|
id: "neo3",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Neo Revelation",
|
en: "Neo Revelation",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "N3",
|
tcgOnline: "N3",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 66,
|
total: 66,
|
||||||
official: 64
|
official: 64
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2001-09-21"
|
|
||||||
|
releaseDate: "2001-09-21",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default neo3
|
export default neo3
|
||||||
|
@ -3,21 +3,31 @@ import serie from '../Neo'
|
|||||||
|
|
||||||
const si1: Set = {
|
const si1: Set = {
|
||||||
id: "si1",
|
id: "si1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Southern Islands",
|
en: "Southern Islands",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 18,
|
total: 18,
|
||||||
official: 18
|
official: 18
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2001-07-31"
|
|
||||||
|
releaseDate: "2001-07-31",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default si1
|
export default si1
|
||||||
|
@ -3,24 +3,34 @@ import serie from '../Platinum'
|
|||||||
|
|
||||||
const pl4: Set = {
|
const pl4: Set = {
|
||||||
id: "pl4",
|
id: "pl4",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Arceus",
|
en: "Arceus",
|
||||||
fr: "Arceus"
|
fr: "Arceus"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "AR",
|
tcgOnline: "AR",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 111,
|
total: 111,
|
||||||
official: 99
|
official: 99
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2009-11-04"
|
|
||||||
|
releaseDate: "2009-11-04",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pl4
|
export default pl4
|
||||||
|
@ -3,24 +3,34 @@ import serie from '../Platinum'
|
|||||||
|
|
||||||
const pl1: Set = {
|
const pl1: Set = {
|
||||||
id: "pl1",
|
id: "pl1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Platinum",
|
en: "Platinum",
|
||||||
fr: "Platine"
|
fr: "Platine"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "PL",
|
tcgOnline: "PL",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 133,
|
total: 133,
|
||||||
official: 127
|
official: 127
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2009-02-11"
|
|
||||||
|
releaseDate: "2009-02-11",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pl1
|
export default pl1
|
||||||
|
@ -3,21 +3,31 @@ import serie from '../Platinum'
|
|||||||
|
|
||||||
const ru1: Set = {
|
const ru1: Set = {
|
||||||
id: "ru1",
|
id: "ru1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Pokémon Rumble",
|
en: "Pokémon Rumble",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 16,
|
total: 16,
|
||||||
official: 16
|
official: 16
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2009-12-02"
|
|
||||||
|
releaseDate: "2009-12-02",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ru1
|
export default ru1
|
||||||
|
@ -3,24 +3,34 @@ import serie from '../Platinum'
|
|||||||
|
|
||||||
const pl2: Set = {
|
const pl2: Set = {
|
||||||
id: "pl2",
|
id: "pl2",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Rising Rivals",
|
en: "Rising Rivals",
|
||||||
fr: "Rivaux Émergeants"
|
fr: "Rivaux Émergeants"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "RR",
|
tcgOnline: "RR",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 120,
|
total: 120,
|
||||||
official: 111
|
official: 111
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2009-05-16"
|
|
||||||
|
releaseDate: "2009-05-16",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pl2
|
export default pl2
|
||||||
|
@ -3,24 +3,34 @@ import serie from '../Platinum'
|
|||||||
|
|
||||||
const pl3: Set = {
|
const pl3: Set = {
|
||||||
id: "pl3",
|
id: "pl3",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Supreme Victors",
|
en: "Supreme Victors",
|
||||||
fr: "Vainqueurs Suprêmes"
|
fr: "Vainqueurs Suprêmes"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "SV",
|
tcgOnline: "SV",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 153,
|
total: 153,
|
||||||
official: 147
|
official: 147
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2009-08-19"
|
|
||||||
|
releaseDate: "2009-08-19",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pl3
|
export default pl3
|
||||||
|
@ -3,22 +3,32 @@ import serie from '../Pop'
|
|||||||
|
|
||||||
const np: Set = {
|
const np: Set = {
|
||||||
id: "np",
|
id: "np",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Nintendo Black Star Promos",
|
en: "Nintendo Black Star Promos",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "PR-NP",
|
tcgOnline: "PR-NP",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 40,
|
total: 40,
|
||||||
official: 40
|
official: 40
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2003-10-01"
|
|
||||||
|
releaseDate: "2003-10-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default np
|
export default np
|
||||||
|
@ -3,21 +3,31 @@ import serie from '../Pop'
|
|||||||
|
|
||||||
const pop1: Set = {
|
const pop1: Set = {
|
||||||
id: "pop1",
|
id: "pop1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "POP Series 1",
|
en: "POP Series 1",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 17,
|
total: 17,
|
||||||
official: 17
|
official: 17
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2004-09-01"
|
|
||||||
|
releaseDate: "2004-09-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pop1
|
export default pop1
|
||||||
|
@ -3,21 +3,31 @@ import serie from '../Pop'
|
|||||||
|
|
||||||
const pop2: Set = {
|
const pop2: Set = {
|
||||||
id: "pop2",
|
id: "pop2",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "POP Series 2",
|
en: "POP Series 2",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 17,
|
total: 17,
|
||||||
official: 17
|
official: 17
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2005-08-01"
|
|
||||||
|
releaseDate: "2005-08-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pop2
|
export default pop2
|
||||||
|
@ -3,21 +3,31 @@ import serie from '../Pop'
|
|||||||
|
|
||||||
const pop3: Set = {
|
const pop3: Set = {
|
||||||
id: "pop3",
|
id: "pop3",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "POP Series 3",
|
en: "POP Series 3",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 17,
|
total: 17,
|
||||||
official: 17
|
official: 17
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2006-04-01"
|
|
||||||
|
releaseDate: "2006-04-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pop3
|
export default pop3
|
||||||
|
@ -3,21 +3,31 @@ import serie from '../Pop'
|
|||||||
|
|
||||||
const pop4: Set = {
|
const pop4: Set = {
|
||||||
id: "pop4",
|
id: "pop4",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "POP Series 4",
|
en: "POP Series 4",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 17,
|
total: 17,
|
||||||
official: 17
|
official: 17
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2006-08-01"
|
|
||||||
|
releaseDate: "2006-08-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pop4
|
export default pop4
|
||||||
|
@ -3,21 +3,31 @@ import serie from '../Pop'
|
|||||||
|
|
||||||
const pop5: Set = {
|
const pop5: Set = {
|
||||||
id: "pop5",
|
id: "pop5",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "POP Series 5",
|
en: "POP Series 5",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 17,
|
total: 17,
|
||||||
official: 17
|
official: 17
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2007-03-01"
|
|
||||||
|
releaseDate: "2007-03-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pop5
|
export default pop5
|
||||||
|
@ -3,21 +3,31 @@ import serie from '../Pop'
|
|||||||
|
|
||||||
const pop6: Set = {
|
const pop6: Set = {
|
||||||
id: "pop6",
|
id: "pop6",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "POP Series 6",
|
en: "POP Series 6",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 17,
|
total: 17,
|
||||||
official: 17
|
official: 17
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2007-09-01"
|
|
||||||
|
releaseDate: "2007-09-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pop6
|
export default pop6
|
||||||
|
@ -3,21 +3,31 @@ import serie from '../Pop'
|
|||||||
|
|
||||||
const pop7: Set = {
|
const pop7: Set = {
|
||||||
id: "pop7",
|
id: "pop7",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "POP Series 7",
|
en: "POP Series 7",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 17,
|
total: 17,
|
||||||
official: 17
|
official: 17
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2008-03-01"
|
|
||||||
|
releaseDate: "2008-03-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pop7
|
export default pop7
|
||||||
|
@ -3,21 +3,31 @@ import serie from '../Pop'
|
|||||||
|
|
||||||
const pop8: Set = {
|
const pop8: Set = {
|
||||||
id: "pop8",
|
id: "pop8",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "POP Series 8",
|
en: "POP Series 8",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 17,
|
total: 17,
|
||||||
official: 17
|
official: 17
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2008-09-01"
|
|
||||||
|
releaseDate: "2008-09-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pop8
|
export default pop8
|
||||||
|
@ -3,21 +3,31 @@ import serie from '../Pop'
|
|||||||
|
|
||||||
const pop9: Set = {
|
const pop9: Set = {
|
||||||
id: "pop9",
|
id: "pop9",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "POP Series 9",
|
en: "POP Series 9",
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 17,
|
total: 17,
|
||||||
official: 17
|
official: 17
|
||||||
},
|
},
|
||||||
|
|
||||||
legal: {
|
legal: {
|
||||||
expanded: false,
|
expanded: false,
|
||||||
standard: false
|
standard: false
|
||||||
},
|
},
|
||||||
releaseDate: "2009-03-01"
|
|
||||||
|
releaseDate: "2009-03-01",
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default pop9
|
export default pop9
|
||||||
|
@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
|
|||||||
|
|
||||||
const sm3: Set = {
|
const sm3: Set = {
|
||||||
id: "sm3",
|
id: "sm3",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Burning Shadows",
|
en: "Burning Shadows",
|
||||||
fr: "Ombres Ardentes"
|
fr: "Ombres Ardentes"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "BUS",
|
tcgOnline: "BUS",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -23,6 +24,13 @@ const sm3: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default sm3
|
export default sm3
|
@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
|
|||||||
|
|
||||||
const sm7: Set = {
|
const sm7: Set = {
|
||||||
id: "sm7",
|
id: "sm7",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Celestial Storm",
|
en: "Celestial Storm",
|
||||||
fr: "Tempête Céleste"
|
fr: "Tempête Céleste"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "CES",
|
tcgOnline: "CES",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -23,6 +24,13 @@ const sm7: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default sm7
|
export default sm7
|
||||||
|
@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
|
|||||||
|
|
||||||
const sm12: Set = {
|
const sm12: Set = {
|
||||||
id: "sm12",
|
id: "sm12",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Cosmic Eclipse",
|
en: "Cosmic Eclipse",
|
||||||
fr: "Éclipse Cosmique"
|
fr: "Éclipse Cosmique"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "CEC",
|
tcgOnline: "CEC",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -23,6 +24,13 @@ const sm12: Set = {
|
|||||||
standard: true,
|
standard: true,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default sm12
|
export default sm12
|
@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
|
|||||||
|
|
||||||
const sm4: Set = {
|
const sm4: Set = {
|
||||||
id: "sm4",
|
id: "sm4",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Crimson Invasion",
|
en: "Crimson Invasion",
|
||||||
fr: "Invasion Carmin"
|
fr: "Invasion Carmin"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "CIN",
|
tcgOnline: "CIN",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -23,6 +24,13 @@ const sm4: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default sm4
|
export default sm4
|
@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
|
|||||||
|
|
||||||
const det1: Set = {
|
const det1: Set = {
|
||||||
id: "det1",
|
id: "det1",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Detective Pikachu",
|
en: "Detective Pikachu",
|
||||||
fr: "Détective Pikachu"
|
fr: "Détective Pikachu"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "DET",
|
tcgOnline: "DET",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -23,6 +24,13 @@ const det1: Set = {
|
|||||||
standard: true,
|
standard: true,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default det1
|
export default det1
|
@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
|
|||||||
|
|
||||||
const sm75: Set = {
|
const sm75: Set = {
|
||||||
id: "sm7.5",
|
id: "sm7.5",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Dragon Majesty",
|
en: "Dragon Majesty",
|
||||||
fr: "Majesté Des Dragons"
|
fr: "Majesté Des Dragons"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "DRM",
|
tcgOnline: "DRM",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -23,6 +24,13 @@ const sm75: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default sm75
|
export default sm75
|
||||||
|
@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
|
|||||||
|
|
||||||
const sm6: Set = {
|
const sm6: Set = {
|
||||||
id: "sm6",
|
id: "sm6",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Forbidden Light",
|
en: "Forbidden Light",
|
||||||
fr: "Lumière Interdite"
|
fr: "Lumière Interdite"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "FLI",
|
tcgOnline: "FLI",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -23,6 +24,13 @@ const sm6: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default sm6
|
export default sm6
|
||||||
|
@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
|
|||||||
|
|
||||||
const sm2: Set = {
|
const sm2: Set = {
|
||||||
id: "sm2",
|
id: "sm2",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Guardians Rising",
|
en: "Guardians Rising",
|
||||||
fr: "Gardiens Ascendants"
|
fr: "Gardiens Ascendants"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "GRI",
|
tcgOnline: "GRI",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -23,6 +24,13 @@ const sm2: Set = {
|
|||||||
standard: false,
|
standard: false,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default sm2
|
export default sm2
|
@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
|
|||||||
|
|
||||||
const sm115: Set = {
|
const sm115: Set = {
|
||||||
id: "sm115",
|
id: "sm115",
|
||||||
|
|
||||||
name: {
|
name: {
|
||||||
en: "Hidden Fates",
|
en: "Hidden Fates",
|
||||||
fr: "Destinnées Occultes"
|
fr: "Destinnées Occultes"
|
||||||
,
|
,
|
||||||
},
|
},
|
||||||
serie: serie,
|
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
tcgOnline: "HIF",
|
tcgOnline: "HIF",
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
@ -23,6 +24,13 @@ const sm115: Set = {
|
|||||||
standard: true,
|
standard: true,
|
||||||
expanded: true
|
expanded: true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
normal: true,
|
||||||
|
reverse: true,
|
||||||
|
holo: false,
|
||||||
|
firstEdition: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default sm115
|
export default sm115
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user