1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

Made Variants mandatory

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bwp: Set = {
id: "bwp",
name: {
en: "BW Black Star Promos",
fr: "Promo BW"
},
serie: serie,
serie: serie,
tcgOnline: "PR-BLW",
cardCount: {
@ -22,6 +23,13 @@ const bwp: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bwp

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bw1: Set = {
id: "bw1",
name: {
en: "Black & White",
fr: "Noir & Blanc"
},
serie: serie,
serie: serie,
tcgOnline: "BLW",
cardCount: {
@ -22,6 +23,13 @@ const bw1: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw1

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bw7: Set = {
id: "bw7",
name: {
en: "Boundaries Crossed",
fr: "Frontières Franchies"
},
serie: serie,
serie: serie,
tcgOnline: "BCR",
cardCount: {
@ -22,6 +23,13 @@ const bw7: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw7

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bw5: Set = {
id: "bw5",
name: {
en: "Dark Explorers",
fr: "Explorateurs Obscurs"
},
serie: serie,
serie: serie,
tcgOnline: "DEX",
cardCount: {
@ -22,6 +23,13 @@ const bw5: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw5

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const dv1: Set = {
id: "dv1",
name: {
en: "Dragon Vault",
fr: "Coffre des Dragons"
},
serie: serie,
serie: serie,
tcgOnline: "DRV",
cardCount: {
@ -22,6 +23,13 @@ const dv1: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default dv1

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bw6: Set = {
id: "bw6",
name: {
en: "Dragons Exalted",
fr: "Dragons Éxaltés"
},
serie: serie,
serie: serie,
tcgOnline: "DRX",
cardCount: {
@ -22,6 +23,13 @@ const bw6: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw6

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bw2: Set = {
id: "bw2",
name: {
en: "Emerging Powers",
fr: "Pouvoirs Émergents"
},
serie: serie,
serie: serie,
tcgOnline: "EPO",
cardCount: {
@ -22,6 +23,13 @@ const bw2: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw2

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bw11: Set = {
id: "bw11",
name: {
en: "Legendary Treasures",
fr: "Legendary Treasures"
},
serie: serie,
serie: serie,
tcgOnline: "LTR",
cardCount: {
@ -22,6 +23,13 @@ const bw11: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw11

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bw4: Set = {
id: "bw4",
name: {
en: "Next Destinies",
fr: "Destinées Futures"
},
serie: serie,
serie: serie,
tcgOnline: "NXD",
cardCount: {
@ -22,6 +23,13 @@ const bw4: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw4

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bw3: Set = {
id: "bw3",
name: {
en: "Noble Victories",
fr: "Nobles Victoires"
},
serie: serie,
serie: serie,
tcgOnline: "NVI",
cardCount: {
@ -22,6 +23,13 @@ const bw3: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw3

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bw10: Set = {
id: "bw10",
name: {
en: "Plasma Blast",
fr: "Explosion Plasma"
},
serie: serie,
serie: serie,
tcgOnline: "PLB",
cardCount: {
@ -22,6 +23,13 @@ const bw10: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw10

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bw9: Set = {
id: "bw9",
name: {
en: "Plasma Freeze",
fr: "Glaciation Plasma"
},
serie: serie,
serie: serie,
tcgOnline: "PLF",
cardCount: {
@ -22,6 +23,13 @@ const bw9: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw9

View File

@ -3,12 +3,13 @@ import serie from '../Black & White'
const bw8: Set = {
id: "bw8",
name: {
en: "Plasma Storm",
fr: "Tempète Plasma"
},
serie: serie,
serie: serie,
tcgOnline: "PLS",
cardCount: {
@ -22,6 +23,13 @@ const bw8: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bw8

View File

@ -3,22 +3,32 @@ import serie from '../Black & White'
const rc: Set = {
id: "rc",
name: {
en: "Radiant Collection",
fr: "Radiant Collection"
},
serie: serie,
serie: serie,
cardCount: {
total: 25,
official: 25
},
legal: {
expanded: true,
standard: false
},
releaseDate: "2013-11-06"
releaseDate: "2013-11-06",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default rc

View File

@ -3,23 +3,33 @@ import serie from '../Call of Legends'
const col1: Set = {
id: "col1",
name: {
en: "Call of Legends",
fr: "L'appel des Légendes"
},
serie: serie,
serie: serie,
tcgOnline: "CL",
cardCount: {
total: 106,
official: 95
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2011-02-09"
releaseDate: "2011-02-09",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default col1

View File

@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
const dpp: Set = {
id: "dpp",
name: {
en: "DP Black Star Promos",
fr: "Promo DP"
},
serie: serie,
serie: serie,
tcgOnline: "PR-DPP",
cardCount: {
total: 56,
official: 56
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2007-05-01"
releaseDate: "2007-05-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default dpp

View File

@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
const dp1: Set = {
id: "dp1",
name: {
en: "Diamond & Pearl",
fr: "Diamant & Perle"
},
serie: serie,
serie: serie,
tcgOnline: "DP",
cardCount: {
total: 130,
official: 130
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2007-05-01"
releaseDate: "2007-05-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default dp1

View File

@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
const dp4: Set = {
id: "dp4",
name: {
en: "Great Encounters",
fr: "Duels au Sommets"
},
serie: serie,
serie: serie,
tcgOnline: "GE",
cardCount: {
total: 106,
official: 106
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2008-02-01"
releaseDate: "2008-02-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default dp4

View File

@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
const dp6: Set = {
id: "dp6",
name: {
en: "Legends Awakened",
fr: "Éveil des Légendes"
},
serie: serie,
serie: serie,
tcgOnline: "LA",
cardCount: {
total: 146,
official: 146
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2008-08-01"
releaseDate: "2008-08-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default dp6

View File

@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
const dp5: Set = {
id: "dp5",
name: {
en: "Majestic Dawn",
fr: "Aube Majestueuse"
},
serie: serie,
serie: serie,
tcgOnline: "MD",
cardCount: {
total: 100,
official: 100
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2008-05-01"
releaseDate: "2008-05-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default dp5

View File

@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
const dp2: Set = {
id: "dp2",
name: {
en: "Mysterious Treasures",
fr: "Mysterious Treasures"
},
serie: serie,
serie: serie,
tcgOnline: "MT",
cardCount: {
total: 123,
official: 122
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2007-08-01"
releaseDate: "2007-08-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default dp2

View File

@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
const dp3: Set = {
id: "dp3",
name: {
en: "Secret Wonders",
fr: "Merveilles Secrètes"
},
serie: serie,
serie: serie,
tcgOnline: "SW",
cardCount: {
total: 132,
official: 132
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2007-11-01"
releaseDate: "2007-11-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default dp3

View File

@ -3,23 +3,33 @@ import serie from '../Diamond & Pearl'
const dp7: Set = {
id: "dp7",
name: {
en: "Stormfront",
fr: "Tempête"
},
serie: serie,
serie: serie,
tcgOnline: "SF",
cardCount: {
total: 106,
official: 100
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2008-11-01"
releaseDate: "2008-11-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default dp7

View File

@ -3,23 +3,33 @@ import serie from '../E-Card'
const ecard2: Set = {
id: "ecard2",
name: {
en: "Aquapolis",
fr: "Aquapolis"
},
serie: serie,
serie: serie,
tcgOnline: "AQ",
cardCount: {
total: 182,
official: 147
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2003-01-15"
releaseDate: "2003-01-15",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ecard2

View File

@ -3,22 +3,32 @@ import serie from '../E-Card'
const bog: Set = {
id: "bog",
name: {
en: "Best of game",
fr: "Best of game"
},
serie: serie,
serie: serie,
cardCount: {
total: 9,
official: 9
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2002-12-01"
releaseDate: "2002-12-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default bog

View File

@ -3,23 +3,33 @@ import serie from '../E-Card'
const ecard1: Set = {
id: "ecard1",
name: {
en: "Expedition Base Set",
fr: "Expedition"
},
serie: serie,
serie: serie,
tcgOnline: "EX",
cardCount: {
total: 165,
official: 165
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2002-09-15"
releaseDate: "2002-09-15",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ecard1

View File

@ -3,22 +3,32 @@ import serie from '../E-Card'
const sp: Set = {
id: "sp",
name: {
en: "Sample",
fr: "Sample"
},
serie: serie,
serie: serie,
cardCount: {
total: 10,
official: 10
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2002-08-01"
releaseDate: "2002-08-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default sp

View File

@ -3,23 +3,33 @@ import serie from '../E-Card'
const ecard3: Set = {
id: "ecard3",
name: {
en: "Skyridge",
fr: "Skyridge"
},
serie: serie,
serie: serie,
tcgOnline: "SK",
cardCount: {
total: 182,
official: 144
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2003-05-12"
releaseDate: "2003-05-12",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ecard3

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex14: Set = {
id: "ex14",
name: {
en: "Crystal Guardians",
fr: "Crystal Guardians"
},
serie: serie,
serie: serie,
tcgOnline: "CG",
cardCount: {
total: 100,
official: 100
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2006-08-30"
releaseDate: "2006-08-30",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex14

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex11: Set = {
id: "ex11",
name: {
en: "Delta Species",
fr: "Delta Species"
},
serie: serie,
serie: serie,
tcgOnline: "DS",
cardCount: {
total: 114,
official: 113
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2005-10-31"
releaseDate: "2005-10-31",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex11

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex8: Set = {
id: "ex8",
name: {
en: "Deoxys",
fr: "Deoxys"
},
serie: serie,
serie: serie,
tcgOnline: "DX",
cardCount: {
total: 108,
official: 107
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2005-02-01"
releaseDate: "2005-02-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex8

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex15: Set = {
id: "ex15",
name: {
en: "Dragon Frontiers",
fr: "Dragon Frontiers"
},
serie: serie,
serie: serie,
tcgOnline: "DF",
cardCount: {
total: 101,
official: 101
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2006-11-08"
releaseDate: "2006-11-08",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex15

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex3: Set = {
id: "ex3",
name: {
en: "Dragon",
fr: "Dragon"
},
serie: serie,
serie: serie,
tcgOnline: "DR",
cardCount: {
total: 100,
official: 97
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2003-11-24"
releaseDate: "2003-11-24",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex3

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex9: Set = {
id: "ex9",
name: {
en: "Emerald",
fr: "Emerald"
},
serie: serie,
serie: serie,
tcgOnline: "EM",
cardCount: {
total: 107,
official: 106
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2005-05-09"
releaseDate: "2005-05-09",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex9

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex6: Set = {
id: "ex6",
name: {
en: "FireRed & LeafGreen",
fr: "FireRed & LeafGreen"
},
serie: serie,
serie: serie,
tcgOnline: "RG",
cardCount: {
total: 116,
official: 112
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2004-09-01"
releaseDate: "2004-09-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex6

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex5: Set = {
id: "ex5",
name: {
en: "Hidden Legends",
fr: "Hidden Legends"
},
serie: serie,
serie: serie,
tcgOnline: "HL",
cardCount: {
total: 102,
official: 101
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2004-06-01"
releaseDate: "2004-06-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex5

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex13: Set = {
id: "ex13",
name: {
en: "Holon Phantoms",
fr: "Holon Phantoms"
},
serie: serie,
serie: serie,
tcgOnline: "HP",
cardCount: {
total: 111,
official: 110
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2006-05-03"
releaseDate: "2006-05-03",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex13

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex12: Set = {
id: "ex12",
name: {
en: "Legend Maker",
fr: "Legend Maker"
},
serie: serie,
serie: serie,
tcgOnline: "LM",
cardCount: {
total: 93,
official: 92
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2006-02-13"
releaseDate: "2006-02-13",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex12

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex16: Set = {
id: "ex16",
name: {
en: "Power Keepers",
fr: "Power Keepers"
},
serie: serie,
serie: serie,
tcgOnline: "PK",
cardCount: {
total: 108,
official: 108
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2007-02-17"
releaseDate: "2007-02-17",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex16

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex1: Set = {
id: "ex1",
name: {
en: "Ruby & Sapphire",
fr: "Ruby & Sapphire"
},
serie: serie,
serie: serie,
tcgOnline: "RS",
cardCount: {
total: 109,
official: 109
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2003-07-01"
releaseDate: "2003-07-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex1

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex2: Set = {
id: "ex2",
name: {
en: "Sandstorm",
fr: "Sandstorm"
},
serie: serie,
serie: serie,
tcgOnline: "SS",
cardCount: {
total: 100,
official: 100
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2003-09-18"
releaseDate: "2003-09-18",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex2

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex4: Set = {
id: "ex4",
name: {
en: "Team Magma vs Team Aqua",
fr: "Team Magma vs Team Aqua"
},
serie: serie,
serie: serie,
tcgOnline: "MA",
cardCount: {
total: 97,
official: 95
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2004-03-01"
releaseDate: "2004-03-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex4

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex7: Set = {
id: "ex7",
name: {
en: "Team Rocket Returns",
fr: "Team Rocket Returns"
},
serie: serie,
serie: serie,
tcgOnline: "RR",
cardCount: {
total: 111,
official: 109
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2004-11-01"
releaseDate: "2004-11-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex7

View File

@ -3,22 +3,32 @@ import serie from '../EX'
const exu: Set = {
id: "exu",
name: {
en: "Unseen Forces Unown Collection",
fr: "Unseen Forces Unown Collection"
},
serie: serie,
serie: serie,
cardCount: {
total: 28,
official: 28
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2005-08-22"
releaseDate: "2005-08-22",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default exu

View File

@ -3,23 +3,33 @@ import serie from '../EX'
const ex10: Set = {
id: "ex10",
name: {
en: "Unseen Forces",
fr: "Unseen Forces"
},
serie: serie,
serie: serie,
tcgOnline: "UF",
cardCount: {
total: 117,
official: 115
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2005-08-22"
releaseDate: "2005-08-22",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ex10

View File

@ -3,23 +3,33 @@ import serie from '../Gym'
const gym2: Set = {
id: "gym2",
name: {
en: "Gym Challenge",
fr: "Gym Challenge"
},
serie: serie,
serie: serie,
tcgOnline: "G2",
cardCount: {
total: 132,
official: 132
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2000-10-16"
releaseDate: "2000-10-16",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default gym2

View File

@ -3,23 +3,33 @@ import serie from '../Gym'
const gym1: Set = {
id: "gym1",
name: {
en: "Gym Heroes",
fr: "Gym Heroes"
},
serie: serie,
serie: serie,
tcgOnline: "G1",
cardCount: {
total: 132,
official: 132
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2000-08-14"
releaseDate: "2000-08-14",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default gym1

View File

@ -3,23 +3,33 @@ import serie from '../HeartGold & SoulSilver'
const hgssp: Set = {
id: "hgssp",
name: {
en: "HGSS Black Star Promos",
fr: "Promo HGSS"
},
serie: serie,
serie: serie,
tcgOnline: "PR-HS",
cardCount: {
total: 25,
official: 25
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2010-02-11"
releaseDate: "2010-02-11",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default hgssp

View File

@ -3,23 +3,33 @@ import serie from '../HeartGold & SoulSilver'
const hgss1: Set = {
id: "hgss1",
name: {
en: "HeartGold SoulSilver",
fr: "HeartGold SoulSilver"
},
serie: serie,
serie: serie,
tcgOnline: "HS",
cardCount: {
total: 124,
official: 123
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2010-02-10"
releaseDate: "2010-02-10",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default hgss1

View File

@ -3,23 +3,33 @@ import serie from '../HeartGold & SoulSilver'
const hgss4: Set = {
id: "hgss4",
name: {
en: "Triumphant",
fr: "Triomphant"
},
serie: serie,
serie: serie,
tcgOnline: "TM",
cardCount: {
total: 103,
official: 102
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2010-11-03"
releaseDate: "2010-11-03",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default hgss4

View File

@ -3,23 +3,33 @@ import serie from '../HeartGold & SoulSilver'
const hgss3: Set = {
id: "hgss3",
name: {
en: "Undaunted",
fr: "Indomptable"
},
serie: serie,
serie: serie,
tcgOnline: "UD",
cardCount: {
total: 91,
official: 90
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2010-08-18"
releaseDate: "2010-08-18",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default hgss3

View File

@ -3,23 +3,33 @@ import serie from '../HeartGold & SoulSilver'
const hgss2: Set = {
id: "hgss2",
name: {
en: "Unleashed",
fr: "Déchaînement"
},
serie: serie,
serie: serie,
tcgOnline: "UL",
cardCount: {
total: 96,
official: 95
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2010-05-12"
releaseDate: "2010-05-12",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default hgss2

View File

@ -3,22 +3,32 @@ import serie from '../Legendary Collection'
const lc: Set = {
id: "lc",
name: {
en: "Legendary Collection",
},
serie: serie,
serie: serie,
tcgOnline: "LC",
cardCount: {
total: 110,
official: 110
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2002-05-24"
releaseDate: "2002-05-24",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default lc

View File

@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
const s2011bw: Set = {
id: "2011bw",
name: {
en: "Macdonald's Collection 2011",
fr: "Collection Macdonald 2011"
,
},
serie: serie,
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2011-06-17"
releaseDate: "2011-06-17",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default s2011bw

View File

@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
const s2012bw: Set = {
id: "2012bw",
name: {
en: "Macdonald's Collection 2012",
fr: "Collection Macdonald 2012"
,
},
serie: serie,
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2012-06-15"
releaseDate: "2012-06-15",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default s2012bw

View File

@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
const s2013bw: Set = {
id: "2013bw",
name: {
// en: Not Available outer France
fr: "Collection Macdonald 2013"
,
},
serie: serie,
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2013-11-01"
releaseDate: "2013-11-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default s2013bw

View File

@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
const s2014xy: Set = {
id: "2014xy",
name: {
en: "Macdonald's Collection 2014",
fr: "Collection Macdonald 2014"
,
},
serie: serie,
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2014-05-23"
releaseDate: "2014-05-23",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default s2014xy

View File

@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
const s2015xy: Set = {
id: "2015xy",
name: {
en: "Macdonald's Collection 2015",
fr: "Collection Macdonald 2015"
,
},
serie: serie,
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2015-11-27"
releaseDate: "2015-11-27",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default s2015xy

View File

@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
const s2016xy: Set = {
id: "2016xy",
name: {
en: "Macdonald's Collection 2016",
fr: "Collection Macdonald 2016"
,
},
serie: serie,
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2016-08-20"
releaseDate: "2016-08-20",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default s2016xy

View File

@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
const s2017sm: Set = {
id: "2017sm",
name: {
en: "Macdonald's Collection 2017",
fr: "Collection Macdonald 2017"
,
},
serie: serie,
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2017-08-03"
releaseDate: "2017-08-03",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default s2017sm

View File

@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
const s2018sm: Set = {
id: "2018sm",
name: {
en: "Macdonald's Collection 2018",
fr: "Collection Macdonald 2018"
,
},
serie: serie,
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2018-10-19"
releaseDate: "2018-10-19",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default s2018sm

View File

@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
const s2019sm: Set = {
id: "2019sm",
name: {
en: "Macdonald's Collection 2019",
fr: "Collection Macdonald 2019"
,
},
serie: serie,
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2019-10-15"
releaseDate: "2019-10-15",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default s2019sm

View File

@ -3,20 +3,28 @@ import serie from '../McDonald\'s Collection'
const s2021swsh: Set = {
id: "2021swsh",
name: {
en: "Macdonald's Collection 2021",
fr: "Collection Macdonald 2021"
,
},
serie: serie,
serie: serie,
cardCount: {
total: 25,
official: 25
},
releaseDate: "2021-02-09"
releaseDate: "2021-02-09",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default s2021swsh

View File

@ -3,23 +3,33 @@ import serie from '../Miscellaneous'
const jumbo: Set = {
id: "jumbo",
name: {
en: "Jumbo cards",
fr: "Cartes Jumbo"
,
},
serie: serie,
serie: serie,
cardCount: {
total: 160,
official: 160
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2000-02-01"
releaseDate: "2000-02-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default jumbo

View File

@ -3,22 +3,32 @@ import serie from '../Neo'
const neo4: Set = {
id: "neo4",
name: {
en: "Neo Destiny",
},
serie: serie,
serie: serie,
tcgOnline: "N4",
cardCount: {
total: 113,
official: 105
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2002-02-28"
releaseDate: "2002-02-28",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default neo4

View File

@ -3,22 +3,32 @@ import serie from '../Neo'
const neo2: Set = {
id: "neo2",
name: {
en: "Neo Discovery",
},
serie: serie,
serie: serie,
tcgOnline: "N2",
cardCount: {
total: 75,
official: 75
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2001-06-01"
releaseDate: "2001-06-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default neo2

View File

@ -3,22 +3,32 @@ import serie from '../Neo'
const neo1: Set = {
id: "neo1",
name: {
en: "Neo Genesis",
},
serie: serie,
serie: serie,
tcgOnline: "N1",
cardCount: {
total: 111,
official: 111
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2000-12-16"
releaseDate: "2000-12-16",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default neo1

View File

@ -3,22 +3,32 @@ import serie from '../Neo'
const neo3: Set = {
id: "neo3",
name: {
en: "Neo Revelation",
},
serie: serie,
serie: serie,
tcgOnline: "N3",
cardCount: {
total: 66,
official: 64
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2001-09-21"
releaseDate: "2001-09-21",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default neo3

View File

@ -3,21 +3,31 @@ import serie from '../Neo'
const si1: Set = {
id: "si1",
name: {
en: "Southern Islands",
},
serie: serie,
serie: serie,
cardCount: {
total: 18,
official: 18
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2001-07-31"
releaseDate: "2001-07-31",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default si1

View File

@ -3,24 +3,34 @@ import serie from '../Platinum'
const pl4: Set = {
id: "pl4",
name: {
en: "Arceus",
fr: "Arceus"
,
},
serie: serie,
serie: serie,
tcgOnline: "AR",
cardCount: {
total: 111,
official: 99
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2009-11-04"
releaseDate: "2009-11-04",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pl4

View File

@ -3,24 +3,34 @@ import serie from '../Platinum'
const pl1: Set = {
id: "pl1",
name: {
en: "Platinum",
fr: "Platine"
,
},
serie: serie,
serie: serie,
tcgOnline: "PL",
cardCount: {
total: 133,
official: 127
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2009-02-11"
releaseDate: "2009-02-11",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pl1

View File

@ -3,21 +3,31 @@ import serie from '../Platinum'
const ru1: Set = {
id: "ru1",
name: {
en: "Pokémon Rumble",
},
serie: serie,
serie: serie,
cardCount: {
total: 16,
official: 16
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2009-12-02"
releaseDate: "2009-12-02",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default ru1

View File

@ -3,24 +3,34 @@ import serie from '../Platinum'
const pl2: Set = {
id: "pl2",
name: {
en: "Rising Rivals",
fr: "Rivaux Émergeants"
,
},
serie: serie,
serie: serie,
tcgOnline: "RR",
cardCount: {
total: 120,
official: 111
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2009-05-16"
releaseDate: "2009-05-16",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pl2

View File

@ -3,24 +3,34 @@ import serie from '../Platinum'
const pl3: Set = {
id: "pl3",
name: {
en: "Supreme Victors",
fr: "Vainqueurs Suprêmes"
,
},
serie: serie,
serie: serie,
tcgOnline: "SV",
cardCount: {
total: 153,
official: 147
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2009-08-19"
releaseDate: "2009-08-19",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pl3

View File

@ -3,22 +3,32 @@ import serie from '../Pop'
const np: Set = {
id: "np",
name: {
en: "Nintendo Black Star Promos",
},
serie: serie,
serie: serie,
tcgOnline: "PR-NP",
cardCount: {
total: 40,
official: 40
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2003-10-01"
releaseDate: "2003-10-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default np

View File

@ -3,21 +3,31 @@ import serie from '../Pop'
const pop1: Set = {
id: "pop1",
name: {
en: "POP Series 1",
},
serie: serie,
serie: serie,
cardCount: {
total: 17,
official: 17
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2004-09-01"
releaseDate: "2004-09-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pop1

View File

@ -3,21 +3,31 @@ import serie from '../Pop'
const pop2: Set = {
id: "pop2",
name: {
en: "POP Series 2",
},
serie: serie,
serie: serie,
cardCount: {
total: 17,
official: 17
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2005-08-01"
releaseDate: "2005-08-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pop2

View File

@ -3,21 +3,31 @@ import serie from '../Pop'
const pop3: Set = {
id: "pop3",
name: {
en: "POP Series 3",
},
serie: serie,
serie: serie,
cardCount: {
total: 17,
official: 17
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2006-04-01"
releaseDate: "2006-04-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pop3

View File

@ -3,21 +3,31 @@ import serie from '../Pop'
const pop4: Set = {
id: "pop4",
name: {
en: "POP Series 4",
},
serie: serie,
serie: serie,
cardCount: {
total: 17,
official: 17
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2006-08-01"
releaseDate: "2006-08-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pop4

View File

@ -3,21 +3,31 @@ import serie from '../Pop'
const pop5: Set = {
id: "pop5",
name: {
en: "POP Series 5",
},
serie: serie,
serie: serie,
cardCount: {
total: 17,
official: 17
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2007-03-01"
releaseDate: "2007-03-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pop5

View File

@ -3,21 +3,31 @@ import serie from '../Pop'
const pop6: Set = {
id: "pop6",
name: {
en: "POP Series 6",
},
serie: serie,
serie: serie,
cardCount: {
total: 17,
official: 17
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2007-09-01"
releaseDate: "2007-09-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pop6

View File

@ -3,21 +3,31 @@ import serie from '../Pop'
const pop7: Set = {
id: "pop7",
name: {
en: "POP Series 7",
},
serie: serie,
serie: serie,
cardCount: {
total: 17,
official: 17
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2008-03-01"
releaseDate: "2008-03-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pop7

View File

@ -3,21 +3,31 @@ import serie from '../Pop'
const pop8: Set = {
id: "pop8",
name: {
en: "POP Series 8",
},
serie: serie,
serie: serie,
cardCount: {
total: 17,
official: 17
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2008-09-01"
releaseDate: "2008-09-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pop8

View File

@ -3,21 +3,31 @@ import serie from '../Pop'
const pop9: Set = {
id: "pop9",
name: {
en: "POP Series 9",
},
serie: serie,
serie: serie,
cardCount: {
total: 17,
official: 17
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2009-03-01"
releaseDate: "2009-03-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pop9

View File

@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
const sm3: Set = {
id: "sm3",
name: {
en: "Burning Shadows",
fr: "Ombres Ardentes"
,
},
serie: serie,
serie: serie,
tcgOnline: "BUS",
cardCount: {
@ -23,6 +24,13 @@ const sm3: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default sm3

View File

@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
const sm7: Set = {
id: "sm7",
name: {
en: "Celestial Storm",
fr: "Tempête Céleste"
,
},
serie: serie,
serie: serie,
tcgOnline: "CES",
cardCount: {
@ -23,6 +24,13 @@ const sm7: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default sm7

View File

@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
const sm12: Set = {
id: "sm12",
name: {
en: "Cosmic Eclipse",
fr: "Éclipse Cosmique"
,
},
serie: serie,
serie: serie,
tcgOnline: "CEC",
cardCount: {
@ -23,6 +24,13 @@ const sm12: Set = {
standard: true,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default sm12

View File

@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
const sm4: Set = {
id: "sm4",
name: {
en: "Crimson Invasion",
fr: "Invasion Carmin"
,
},
serie: serie,
serie: serie,
tcgOnline: "CIN",
cardCount: {
@ -23,6 +24,13 @@ const sm4: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default sm4

View File

@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
const det1: Set = {
id: "det1",
name: {
en: "Detective Pikachu",
fr: "Détective Pikachu"
,
},
serie: serie,
serie: serie,
tcgOnline: "DET",
cardCount: {
@ -23,6 +24,13 @@ const det1: Set = {
standard: true,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default det1

View File

@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
const sm75: Set = {
id: "sm7.5",
name: {
en: "Dragon Majesty",
fr: "Majesté Des Dragons"
,
},
serie: serie,
serie: serie,
tcgOnline: "DRM",
cardCount: {
@ -23,6 +24,13 @@ const sm75: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default sm75

View File

@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
const sm6: Set = {
id: "sm6",
name: {
en: "Forbidden Light",
fr: "Lumière Interdite"
,
},
serie: serie,
serie: serie,
tcgOnline: "FLI",
cardCount: {
@ -23,6 +24,13 @@ const sm6: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default sm6

View File

@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
const sm2: Set = {
id: "sm2",
name: {
en: "Guardians Rising",
fr: "Gardiens Ascendants"
,
},
serie: serie,
serie: serie,
tcgOnline: "GRI",
cardCount: {
@ -23,6 +24,13 @@ const sm2: Set = {
standard: false,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default sm2

View File

@ -3,13 +3,14 @@ import serie from '../Sun & Moon'
const sm115: Set = {
id: "sm115",
name: {
en: "Hidden Fates",
fr: "Destinnées Occultes"
,
},
serie: serie,
serie: serie,
tcgOnline: "HIF",
cardCount: {
@ -23,6 +24,13 @@ const sm115: Set = {
standard: true,
expanded: true
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default sm115

Some files were not shown because too many files have changed in this diff Show More