mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
Merge branch 'master' of git.delta-wings.net:tcgdex/db
This commit is contained in:
commit
d7b2fdaca4
@ -4,7 +4,15 @@ const set: Expansion = {
|
|||||||
name: {
|
name: {
|
||||||
en: "Base"
|
en: "Base"
|
||||||
},
|
},
|
||||||
code: "base"
|
code: "base",
|
||||||
|
sets: [
|
||||||
|
"base1",
|
||||||
|
"base2",
|
||||||
|
"base3",
|
||||||
|
"base4",
|
||||||
|
"base5",
|
||||||
|
"basep",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default set
|
||||||
|
@ -2,9 +2,27 @@ import Expansion from "../interfaces/Expansion";
|
|||||||
|
|
||||||
const set: Expansion = {
|
const set: Expansion = {
|
||||||
name: {
|
name: {
|
||||||
en: "Black & White"
|
en: "Black & White",
|
||||||
|
fr: "Noir & Blanc"
|
||||||
},
|
},
|
||||||
code: "bw"
|
code: "bw",
|
||||||
|
|
||||||
|
sets: [
|
||||||
|
"bw1",
|
||||||
|
"bw2",
|
||||||
|
"bw3",
|
||||||
|
"bw4",
|
||||||
|
"bw5",
|
||||||
|
"bw6",
|
||||||
|
"bw7",
|
||||||
|
"bw8",
|
||||||
|
"bw9",
|
||||||
|
"bw10",
|
||||||
|
"bw11",
|
||||||
|
"bwp",
|
||||||
|
"dv1",
|
||||||
|
"rc",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default set
|
||||||
|
@ -4,7 +4,11 @@ const set: Expansion = {
|
|||||||
name: {
|
name: {
|
||||||
en: "Call of Legends"
|
en: "Call of Legends"
|
||||||
},
|
},
|
||||||
code: "col"
|
code: "col",
|
||||||
|
|
||||||
|
sets: [
|
||||||
|
"col1"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default set
|
||||||
|
@ -2,9 +2,21 @@ import Expansion from "../interfaces/Expansion";
|
|||||||
|
|
||||||
const set: Expansion = {
|
const set: Expansion = {
|
||||||
name: {
|
name: {
|
||||||
en: "Diamond & Pearl"
|
en: "Diamond & Pearl",
|
||||||
|
fr: "Diamant & Perle"
|
||||||
},
|
},
|
||||||
code: "dp"
|
code: "dp",
|
||||||
|
|
||||||
|
sets: [
|
||||||
|
"dp1",
|
||||||
|
"dp2",
|
||||||
|
"dp3",
|
||||||
|
"dp4",
|
||||||
|
"dp5",
|
||||||
|
"dp6",
|
||||||
|
"dp7",
|
||||||
|
"dpp",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default set
|
||||||
|
16
expansions/ecard.ts
Normal file
16
expansions/ecard.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import Expansion from "../interfaces/Expansion";
|
||||||
|
|
||||||
|
const set: Expansion = {
|
||||||
|
name: {
|
||||||
|
en: "E-Card",
|
||||||
|
fr: "E-Card",
|
||||||
|
},
|
||||||
|
code: "ecard",
|
||||||
|
sets: [
|
||||||
|
"ecard1",
|
||||||
|
"ecard2",
|
||||||
|
"ecard3",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
@ -1,10 +1,28 @@
|
|||||||
import Expansion from "../interfaces/Expansion";
|
import Expansion from "../interfaces/Expansion";
|
||||||
|
|
||||||
const set: Expansion = {
|
const set: Expansion = {
|
||||||
name: {
|
name: "EX",
|
||||||
en: "EX"
|
code: "ex",
|
||||||
},
|
|
||||||
code: "ex"
|
sets: [
|
||||||
|
"ex1",
|
||||||
|
"ex2",
|
||||||
|
"ex3",
|
||||||
|
"ex4",
|
||||||
|
"ex5",
|
||||||
|
"ex6",
|
||||||
|
"ex7",
|
||||||
|
"ex8",
|
||||||
|
"ex9",
|
||||||
|
"ex10",
|
||||||
|
"ex11",
|
||||||
|
"ex12",
|
||||||
|
"ex13",
|
||||||
|
"ex14",
|
||||||
|
"ex15",
|
||||||
|
"ex16",
|
||||||
|
"exu",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default set
|
||||||
|
14
expansions/gym.ts
Normal file
14
expansions/gym.ts
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import Expansion from "../interfaces/Expansion";
|
||||||
|
|
||||||
|
const set: Expansion = {
|
||||||
|
name: {
|
||||||
|
en: "Sword & Shield"
|
||||||
|
},
|
||||||
|
code: "gym",
|
||||||
|
sets: [
|
||||||
|
"gym1",
|
||||||
|
"gym2",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
@ -1,10 +1,16 @@
|
|||||||
import Expansion from "../interfaces/Expansion";
|
import Expansion from "../interfaces/Expansion";
|
||||||
|
|
||||||
const set: Expansion = {
|
const set: Expansion = {
|
||||||
name: {
|
name: "HeartGold & SoulSilver",
|
||||||
en: "HeartGold SoulSilver"
|
code: "hgss",
|
||||||
},
|
|
||||||
code: "hsss"
|
sets: [
|
||||||
|
"hgss1",
|
||||||
|
"hgss2",
|
||||||
|
"hgss3",
|
||||||
|
"hgss4",
|
||||||
|
"hgssp",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default set
|
||||||
|
13
expansions/lc.ts
Normal file
13
expansions/lc.ts
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import Expansion from "../interfaces/Expansion";
|
||||||
|
|
||||||
|
const set: Expansion = {
|
||||||
|
name: {
|
||||||
|
en: "Legendary Collection",
|
||||||
|
},
|
||||||
|
code: "lc",
|
||||||
|
sets: [
|
||||||
|
"lc"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
22
expansions/mc.ts
Normal file
22
expansions/mc.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import Expansion from "../interfaces/Expansion";
|
||||||
|
|
||||||
|
const set: Expansion = {
|
||||||
|
name: {
|
||||||
|
en: "McDonald's Promo",
|
||||||
|
fr: "Promo McDonald's",
|
||||||
|
},
|
||||||
|
code: "mc",
|
||||||
|
sets: [
|
||||||
|
"2011bw",
|
||||||
|
"2012bw",
|
||||||
|
"2013bw",
|
||||||
|
"2014xy",
|
||||||
|
"2015xy",
|
||||||
|
"2016xy",
|
||||||
|
"2017sm",
|
||||||
|
"2018sm",
|
||||||
|
"2019sm",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
15
expansions/neo.ts
Normal file
15
expansions/neo.ts
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import Expansion from "../interfaces/Expansion";
|
||||||
|
|
||||||
|
const set: Expansion = {
|
||||||
|
name: "Neo",
|
||||||
|
code: "neo",
|
||||||
|
sets: [
|
||||||
|
"neo1",
|
||||||
|
"neo2",
|
||||||
|
"neo3",
|
||||||
|
"neo4",
|
||||||
|
"si1",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
@ -2,10 +2,18 @@ import Expansion from "../interfaces/Expansion";
|
|||||||
|
|
||||||
const set: Expansion = {
|
const set: Expansion = {
|
||||||
name: {
|
name: {
|
||||||
en: "Platinum",
|
en: "Platinium",
|
||||||
fr: "Platine"
|
fr: "Platine"
|
||||||
},
|
},
|
||||||
code: "pl"
|
code: "pl",
|
||||||
|
|
||||||
|
sets: [
|
||||||
|
"pl1",
|
||||||
|
"pl2",
|
||||||
|
"pl3",
|
||||||
|
"pl4",
|
||||||
|
"ru1",
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default set
|
||||||
|
21
expansions/pop.ts
Normal file
21
expansions/pop.ts
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
import Expansion from "../interfaces/Expansion";
|
||||||
|
|
||||||
|
const set: Expansion = {
|
||||||
|
name: "POP",
|
||||||
|
code: "pop",
|
||||||
|
|
||||||
|
sets: [
|
||||||
|
"np",
|
||||||
|
"pop1",
|
||||||
|
"pop2",
|
||||||
|
"pop3",
|
||||||
|
"pop4",
|
||||||
|
"pop5",
|
||||||
|
"pop6",
|
||||||
|
"pop7",
|
||||||
|
"pop8",
|
||||||
|
"pop9",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
@ -5,7 +5,27 @@ const set: Expansion = {
|
|||||||
en: "Sun & Moon",
|
en: "Sun & Moon",
|
||||||
fr: "Soleil & Lune",
|
fr: "Soleil & Lune",
|
||||||
},
|
},
|
||||||
code: "pl"
|
code: "sm",
|
||||||
|
sets: [
|
||||||
|
"det1",
|
||||||
|
"sm1",
|
||||||
|
"sm2",
|
||||||
|
"sm3",
|
||||||
|
"sm35",
|
||||||
|
"sm4",
|
||||||
|
"sm5",
|
||||||
|
"sm6",
|
||||||
|
"sm7",
|
||||||
|
"sm75",
|
||||||
|
"sm8",
|
||||||
|
"sm9",
|
||||||
|
"sm10",
|
||||||
|
"sm11",
|
||||||
|
"sm115",
|
||||||
|
"sm12",
|
||||||
|
"sma",
|
||||||
|
"smp",
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default set
|
||||||
|
@ -2,7 +2,27 @@ import Expansion from "../interfaces/Expansion";
|
|||||||
|
|
||||||
const set: Expansion = {
|
const set: Expansion = {
|
||||||
name: "XY",
|
name: "XY",
|
||||||
code: "xy"
|
code: "xy",
|
||||||
|
|
||||||
|
sets: [
|
||||||
|
"dc1",
|
||||||
|
"g1",
|
||||||
|
"xy0",
|
||||||
|
"xy1",
|
||||||
|
"xy2",
|
||||||
|
"xy3",
|
||||||
|
"xy4",
|
||||||
|
"xy5",
|
||||||
|
"xy6",
|
||||||
|
"xy7",
|
||||||
|
"xy8",
|
||||||
|
"xy9",
|
||||||
|
"xy10",
|
||||||
|
"xy11",
|
||||||
|
"xy12",
|
||||||
|
"xya",
|
||||||
|
"xyp",
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default set
|
||||||
|
@ -40,7 +40,10 @@ const en = [
|
|||||||
"Rare BREAK",
|
"Rare BREAK",
|
||||||
"Rainbow Rare",
|
"Rainbow Rare",
|
||||||
|
|
||||||
"LEGEND"
|
"LEGEND",
|
||||||
|
|
||||||
|
"V",
|
||||||
|
"VMax"
|
||||||
]
|
]
|
||||||
|
|
||||||
const fr = [
|
const fr = [
|
||||||
@ -59,7 +62,10 @@ const fr = [
|
|||||||
"Rare BREAK",
|
"Rare BREAK",
|
||||||
"Rainbow Rare",
|
"Rainbow Rare",
|
||||||
|
|
||||||
"LEGEND"
|
"LEGEND",
|
||||||
|
|
||||||
|
"V",
|
||||||
|
"VMax"
|
||||||
]
|
]
|
||||||
|
|
||||||
namespace Rarity {
|
namespace Rarity {
|
||||||
|
@ -9,7 +9,7 @@ export default interface Set {
|
|||||||
|
|
||||||
expansionCode?: string
|
expansionCode?: string
|
||||||
|
|
||||||
code?: string
|
code: string
|
||||||
tcgoCode?: string
|
tcgoCode?: string
|
||||||
|
|
||||||
cardCount?: {
|
cardCount?: {
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ecards/ecard1/symbol.png",
|
symbol: "https://assets.tcgdex.net/sets/ecard/ecard1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ecards/ecard1/logo.png"
|
logo: "https://assets.tcgdex.net/sets/ecard/ecard1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ecards/ecard2/symbol.png",
|
symbol: "https://assets.tcgdex.net/sets/ecard/ecard2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ecards/ecard2/logo.png"
|
logo: "https://assets.tcgdex.net/sets/ecard/ecard2/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ecards/ecard3/symbol.png",
|
symbol: "https://assets.tcgdex.net/sets/ecard/ecard3/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ecards/ecard3/logo.png"
|
logo: "https://assets.tcgdex.net/sets/ecard/ecard3/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user