mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
Updated Database
Added known swsh2 cards Update every sets to remove the images extension as it can be served as png, jpg and webp Added Trainer kits sets Added descriptions for set interface Added new fields see #6 Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
parent
66d8e43a43
commit
27ba2ef104
@ -11,6 +11,8 @@ const card: Card = {
|
|||||||
id: "swsh1-195",
|
id: "swsh1-195",
|
||||||
localId: 195,
|
localId: 195,
|
||||||
|
|
||||||
|
dexId: 888,
|
||||||
|
|
||||||
// Card informations
|
// Card informations
|
||||||
name: {
|
name: {
|
||||||
en: "Zacian V",
|
en: "Zacian V",
|
||||||
|
37
cards/swsh/swsh2/139.ts
Normal file
37
cards/swsh/swsh2/139.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
import path from 'path'
|
||||||
|
import swsh2 from '../../../sets/swsh/swsh2'
|
||||||
|
|
||||||
|
const localId = path.basename(__filename).split(".")[0]
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: `swsh2-${localId}`,
|
||||||
|
localId: isNaN(parseInt(localId)) ? localId : parseInt(localId),
|
||||||
|
|
||||||
|
dexId: 888,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Zacian",
|
||||||
|
fr: "Zacian",
|
||||||
|
},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.BASIC,
|
||||||
|
],
|
||||||
|
|
||||||
|
rarity: Rarity.RareHolo,
|
||||||
|
|
||||||
|
category: Category.POKEMON,
|
||||||
|
|
||||||
|
set: swsh2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
37
cards/swsh/swsh2/140.ts
Normal file
37
cards/swsh/swsh2/140.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import Card from '../../../interfaces/Card'
|
||||||
|
import Type from '../../../interfaces/Type'
|
||||||
|
import Tag from '../../../interfaces/Tag'
|
||||||
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
|
import Category from '../../../interfaces/Category'
|
||||||
|
import path from 'path'
|
||||||
|
import swsh2 from '../../../sets/swsh/swsh2'
|
||||||
|
|
||||||
|
const localId = path.basename(__filename).split(".")[0]
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
|
||||||
|
// ids
|
||||||
|
id: `swsh2-${localId}`,
|
||||||
|
localId: isNaN(parseInt(localId)) ? localId : parseInt(localId),
|
||||||
|
|
||||||
|
dexId: 889,
|
||||||
|
|
||||||
|
// Card informations
|
||||||
|
name: {
|
||||||
|
en: "Zamazenta",
|
||||||
|
fr: "Zamazenta",
|
||||||
|
},
|
||||||
|
|
||||||
|
tags: [
|
||||||
|
Tag.BASIC,
|
||||||
|
],
|
||||||
|
|
||||||
|
rarity: Rarity.RareHolo,
|
||||||
|
|
||||||
|
category: Category.POKEMON,
|
||||||
|
|
||||||
|
set: swsh2
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
@ -1,6 +1,6 @@
|
|||||||
import Expansion from "../interfaces/Expansion";
|
import Expansion from "../interfaces/Expansion";
|
||||||
|
|
||||||
const set: Expansion = {
|
const base: Expansion = {
|
||||||
name: {
|
name: {
|
||||||
en: "Base"
|
en: "Base"
|
||||||
},
|
},
|
||||||
@ -15,4 +15,4 @@ const set: Expansion = {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default base
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import Expansion from "../interfaces/Expansion";
|
import Expansion from "../interfaces/Expansion";
|
||||||
|
|
||||||
const set: Expansion = {
|
const ecard: Expansion = {
|
||||||
name: {
|
name: {
|
||||||
en: "E-Card",
|
en: "E-Card",
|
||||||
fr: "E-Card",
|
fr: "E-Card",
|
||||||
@ -13,4 +13,4 @@ const set: Expansion = {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
export default set
|
export default ecard
|
||||||
|
11
expansions/tk.ts
Normal file
11
expansions/tk.ts
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import Expansion from "../interfaces/Expansion";
|
||||||
|
|
||||||
|
const tk: Expansion = {
|
||||||
|
name: {
|
||||||
|
en: "Trainer kit"
|
||||||
|
},
|
||||||
|
code: "tk",
|
||||||
|
sets: []
|
||||||
|
}
|
||||||
|
|
||||||
|
export default tk
|
@ -60,6 +60,16 @@ interface Card {
|
|||||||
name: string
|
name: string
|
||||||
code: string
|
code: string
|
||||||
}| Set
|
}| Set
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Override Set defaults
|
||||||
|
*/
|
||||||
|
cardTypes?: {
|
||||||
|
normal: boolean
|
||||||
|
reverse: boolean
|
||||||
|
holo: boolean
|
||||||
|
firstEd: boolean
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Card
|
export default Card
|
||||||
|
@ -1,45 +1,120 @@
|
|||||||
import LangList from "./LangList";
|
import LangList from "./LangList";
|
||||||
import Expansion from "./Expansion";
|
import Expansion from "./Expansion";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set Interface containing all informations about the set
|
||||||
|
*/
|
||||||
export default interface Set {
|
export default interface Set {
|
||||||
// Display Name
|
/**
|
||||||
|
* Display Name
|
||||||
|
*/
|
||||||
name: LangList<string> | string
|
name: LangList<string> | string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expansion Object
|
||||||
|
*/
|
||||||
expansion?: Expansion
|
expansion?: Expansion
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expansion code
|
||||||
|
*/
|
||||||
expansionCode?: string
|
expansionCode?: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set code (Also used as the slug)
|
||||||
|
*/
|
||||||
code: string
|
code: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Trading card online code
|
||||||
|
*/
|
||||||
tcgoCode?: string
|
tcgoCode?: string
|
||||||
|
|
||||||
cardCount?: {
|
cardCount?: {
|
||||||
// total containing all secrets
|
/**
|
||||||
|
* total number of cards including secrets
|
||||||
|
*/
|
||||||
total: number
|
total: number
|
||||||
// official count on cards
|
/**
|
||||||
|
* number of card indicated at the bottom of each cards
|
||||||
|
*/
|
||||||
official: number
|
official: number
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cardTypes?: {
|
||||||
|
/**
|
||||||
|
* Default: true
|
||||||
|
*/
|
||||||
|
normal: boolean
|
||||||
|
/**
|
||||||
|
* Default: true
|
||||||
|
*/
|
||||||
|
reverse: boolean
|
||||||
|
/**
|
||||||
|
* Default: true
|
||||||
|
*/
|
||||||
|
holo: boolean
|
||||||
|
/**
|
||||||
|
* Default: false
|
||||||
|
*/
|
||||||
|
ed1: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Format of numbering
|
||||||
|
* ex: SWSH[000] mean that it has SWSH as prefix and start at 000 -> 001 -> 002 -> etc
|
||||||
|
*
|
||||||
|
* @type {string}
|
||||||
|
* @memberof Set
|
||||||
|
*/
|
||||||
format?: string
|
format?: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Release date of the set
|
||||||
|
* in format: yyyy-mm-dd
|
||||||
|
* ex: 2002-12-22
|
||||||
|
*
|
||||||
|
* @type {string}
|
||||||
|
* @memberof Set
|
||||||
|
*/
|
||||||
releaseDate?: string // date in format yyyy-mm-dd
|
releaseDate?: string // date in format yyyy-mm-dd
|
||||||
|
|
||||||
// api endpoint for scrapping
|
/**
|
||||||
|
* Aol Endpoint for scrapping
|
||||||
|
*/
|
||||||
api?: string
|
api?: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Competition usage
|
||||||
|
*/
|
||||||
legal?: {
|
legal?: {
|
||||||
standard: boolean
|
standard: boolean
|
||||||
expanded: boolean
|
expanded: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
images?: {
|
images?: {
|
||||||
// thingy on bottom of cards
|
/**
|
||||||
|
* Symbol icon on bottom of card
|
||||||
|
* available extensions [
|
||||||
|
* webp
|
||||||
|
* jpg
|
||||||
|
* png
|
||||||
|
* ]
|
||||||
|
*/
|
||||||
symbol?: string
|
symbol?: string
|
||||||
// Official logo of set
|
/**
|
||||||
|
* Official logo of set
|
||||||
|
* available extensions [
|
||||||
|
* webp
|
||||||
|
* jpg
|
||||||
|
* png
|
||||||
|
* ]
|
||||||
|
*/
|
||||||
logo?: string
|
logo?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
//temp
|
* Language in which the set is available
|
||||||
slug?: string
|
*/
|
||||||
subsets?: Array<Set>
|
availability?: LangList<boolean>
|
||||||
}
|
}
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/base/base1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/base/base1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/base/base1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/base/base1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/base/base2/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/base/base2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/base/base2/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/base/base2/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/base/base3/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/base/base3/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/base/base3/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/base/base3/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/base/base4/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/base/base4/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/base/base4/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/base/base4/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/base/base5/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/base/base5/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/base/base5/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/base/base5/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ import Set from '../../interfaces/Set'
|
|||||||
|
|
||||||
const set: Set = {
|
const set: Set = {
|
||||||
name: {
|
name: {
|
||||||
en: "Wizards of te Coast Promos"
|
en: "Wizards Black Star Promos"
|
||||||
},
|
},
|
||||||
code: "basep",
|
code: "basep",
|
||||||
expansionCode: "base",
|
expansionCode: "base",
|
||||||
@ -10,7 +10,7 @@ const set: Set = {
|
|||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
total: 53,
|
total: 53,
|
||||||
official: 52
|
official: 53
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "1999-07-01",
|
releaseDate: "1999-07-01",
|
||||||
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/base/basep/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/base/basep/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/base/basep/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/base/basep/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
28
sets/base/wp.ts
Normal file
28
sets/base/wp.ts
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
import Set from '../../interfaces/Set'
|
||||||
|
import base from '../../expansions/base'
|
||||||
|
|
||||||
|
const set: Set = {
|
||||||
|
name: {
|
||||||
|
en: "W Promotional"
|
||||||
|
},
|
||||||
|
code: "wp",
|
||||||
|
expansion: base,
|
||||||
|
|
||||||
|
cardCount: {
|
||||||
|
total: 53,
|
||||||
|
official: 53
|
||||||
|
},
|
||||||
|
|
||||||
|
releaseDate: "1999-09-01", // day not found
|
||||||
|
|
||||||
|
legal: {
|
||||||
|
standard: false,
|
||||||
|
expanded: false,
|
||||||
|
},
|
||||||
|
|
||||||
|
availability: {
|
||||||
|
fr: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bw1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bw1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bw1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bw1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bw10/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bw10/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bw10/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bw10/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bw11/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bw11/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bw11/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bw11/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bw2/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bw2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bw2/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bw2/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bw3/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bw3/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bw3/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bw3/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bw4/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bw4/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bw4/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bw4/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bw5/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bw5/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bw5/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bw5/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bw6/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bw6/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bw6/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bw6/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bw7/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bw7/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bw7/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bw7/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bw8/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bw8/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bw8/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bw8/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bw9/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bw9/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bw9/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bw9/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,8 +25,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/bwp/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/bwp/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/bwp/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/bwp/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/bw/dv1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/bw/dv1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/bw/dv1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/bw/dv1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/col/col1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/col/col1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/col/col1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/col/col1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/dp/dp1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/dp/dp1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/dp/dp1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/dp/dp1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/dp/dp2/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/dp/dp2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/dp/dp2/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/dp/dp2/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/dp/dp3/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/dp/dp3/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/dp/dp3/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/dp/dp3/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/dp/dp4/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/dp/dp4/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/dp/dp4/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/dp/dp4/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/dp/dp5/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/dp/dp5/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/dp/dp5/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/dp/dp5/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/dp/dp6/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/dp/dp6/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/dp/dp6/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/dp/dp6/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/dp/dp7/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/dp/dp7/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/dp/dp7/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/dp/dp7/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/dp/dpp/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/dp/dpp/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/dp/dpp/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/dp/dpp/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
34
sets/ecard/bog.ts
Normal file
34
sets/ecard/bog.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import Set from '../../interfaces/Set'
|
||||||
|
import ecard from '../../expansions/ecard'
|
||||||
|
|
||||||
|
const set: Set = {
|
||||||
|
name: {
|
||||||
|
en: "Best of game"
|
||||||
|
},
|
||||||
|
|
||||||
|
code: "bog",
|
||||||
|
|
||||||
|
expansion: ecard,
|
||||||
|
|
||||||
|
cardCount: {
|
||||||
|
total: 9,
|
||||||
|
official: 9
|
||||||
|
},
|
||||||
|
|
||||||
|
releaseDate: "2002-12-01", //day not found
|
||||||
|
|
||||||
|
legal: {
|
||||||
|
standard: false,
|
||||||
|
expanded: false,
|
||||||
|
},
|
||||||
|
|
||||||
|
images: {
|
||||||
|
symbol: "https://assets.tcgdex.net/univ/sets/ecard/sp/symbol"
|
||||||
|
},
|
||||||
|
|
||||||
|
availability: {
|
||||||
|
fr: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
@ -2,7 +2,8 @@ import Set from '../../interfaces/Set'
|
|||||||
|
|
||||||
const set: Set = {
|
const set: Set = {
|
||||||
name: {
|
name: {
|
||||||
en: "Expedition Base Set"
|
en: "Expedition Base Set",
|
||||||
|
fr: "Expedition"
|
||||||
},
|
},
|
||||||
code: "ecard1",
|
code: "ecard1",
|
||||||
expansionCode: "ecard",
|
expansionCode: "ecard",
|
||||||
@ -21,8 +22,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ecard/ecard1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ecard/ecard1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ecard/ecard1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ecard/ecard1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ecard/ecard2/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ecard/ecard2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ecard/ecard2/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ecard/ecard2/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ecard/ecard3/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ecard/ecard3/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ecard/ecard3/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ecard/ecard3/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
34
sets/ecard/sp.ts
Normal file
34
sets/ecard/sp.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import Set from '../../interfaces/Set'
|
||||||
|
import ecard from '../../expansions/ecard'
|
||||||
|
|
||||||
|
const set: Set = {
|
||||||
|
name: {
|
||||||
|
en: "Sample"
|
||||||
|
},
|
||||||
|
|
||||||
|
code: "sp",
|
||||||
|
|
||||||
|
expansion: ecard,
|
||||||
|
|
||||||
|
cardCount: {
|
||||||
|
total: 10,
|
||||||
|
official: 10
|
||||||
|
},
|
||||||
|
|
||||||
|
releaseDate: "2002-08-01", //day not found
|
||||||
|
|
||||||
|
legal: {
|
||||||
|
standard: false,
|
||||||
|
expanded: false,
|
||||||
|
},
|
||||||
|
|
||||||
|
images: {
|
||||||
|
symbol: "https://assets.tcgdex.net/univ/sets/ecard/sp/symbol"
|
||||||
|
},
|
||||||
|
|
||||||
|
availability: {
|
||||||
|
fr: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex10/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex10/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex10/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex10/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex11/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex11/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex11/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex11/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex12/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex12/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex12/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex12/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex13/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex13/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex13/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex13/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex14/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex14/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex14/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex14/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex15/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex15/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex15/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex15/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex16/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex16/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex16/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex16/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex2/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex2/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex2/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex3/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex3/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex3/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex3/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex4/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex4/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex4/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex4/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex5/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex5/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex5/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex5/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex6/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex6/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex6/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex6/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex7/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex7/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex7/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex7/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex8/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex8/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex8/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex8/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/ex/ex9/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/ex/ex9/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/ex/ex9/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/ex/ex9/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,12 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/gym/gym1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/gym/gym1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/gym/gym1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/gym/gym1/logo.png"
|
||||||
|
},
|
||||||
|
|
||||||
|
availability: {
|
||||||
|
fr: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,12 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/gym/gym2/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/gym/gym2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/gym/gym2/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/gym/gym2/logo.png"
|
||||||
|
},
|
||||||
|
|
||||||
|
availability: {
|
||||||
|
fr: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/hgss/hgss1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/hgss/hgss1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/hgss/hgss1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/hgss/hgss1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/hgss/hgss2/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/hgss/hgss2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/hgss/hgss2/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/hgss/hgss2/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/hgss/hgss3/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/hgss/hgss3/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/hgss/hgss3/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/hgss/hgss3/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/hgss/hgss4/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/hgss/hgss4/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/hgss/hgss4/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/hgss/hgss4/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/hgss/hgssp/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/hgss/hgssp/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/hgss/hgssp/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/hgss/hgssp/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,6 +18,10 @@ const set: Set = {
|
|||||||
legal: {
|
legal: {
|
||||||
standard: false,
|
standard: false,
|
||||||
expanded: false,
|
expanded: false,
|
||||||
|
},
|
||||||
|
|
||||||
|
availability: {
|
||||||
|
fr: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,6 +20,10 @@ const set: Set = {
|
|||||||
legal: {
|
legal: {
|
||||||
standard: false,
|
standard: false,
|
||||||
expanded: false,
|
expanded: false,
|
||||||
|
},
|
||||||
|
|
||||||
|
availability: {
|
||||||
|
en: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
26
sets/misc/jumbo.ts
Normal file
26
sets/misc/jumbo.ts
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import Set from '../../interfaces/Set'
|
||||||
|
|
||||||
|
// Card in maxi sizes
|
||||||
|
|
||||||
|
const set: Set = {
|
||||||
|
name: {
|
||||||
|
en: `Jumbo cards`,
|
||||||
|
fr: `Cartes Jumbo`,
|
||||||
|
},
|
||||||
|
expansionCode: "misc",
|
||||||
|
code: `jumbo`,
|
||||||
|
|
||||||
|
cardCount: {
|
||||||
|
total: 160,
|
||||||
|
official: 160
|
||||||
|
},
|
||||||
|
|
||||||
|
releaseDate: `2000-02-01`,
|
||||||
|
|
||||||
|
legal: {
|
||||||
|
standard: false,
|
||||||
|
expanded: false,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/neo/neo1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/neo/neo1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/neo/neo1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/neo/neo1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/neo/neo2/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/neo/neo2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/neo/neo2/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/neo/neo2/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/neo/neo3/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/neo/neo3/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/neo/neo3/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/neo/neo3/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/neo/neo4/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/neo/neo4/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/neo/neo4/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/neo/neo4/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,12 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/neo/si1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/neo/si1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/neo/si1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/neo/si1/logo.png"
|
||||||
|
},
|
||||||
|
|
||||||
|
availability: {
|
||||||
|
fr: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pl/pl1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pl/pl1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pl/pl1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pl/pl1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pl/pl2/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pl/pl2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pl/pl2/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pl/pl2/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pl/pl3/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pl/pl3/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pl/pl3/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pl/pl3/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,8 +22,12 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pl/pl4/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pl/pl4/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pl/pl4/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pl/pl4/logo.png"
|
||||||
|
},
|
||||||
|
|
||||||
|
availability: {
|
||||||
|
fr: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,12 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pl/ru1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pl/ru1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pl/ru1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pl/ru1/logo.png"
|
||||||
|
},
|
||||||
|
|
||||||
|
availability: {
|
||||||
|
fr: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pop/np/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pop/np/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pop/np/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pop/np/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pop/pop1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pop/pop1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pop/pop1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pop/pop1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pop/pop2/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pop/pop2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pop/pop2/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pop/pop2/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pop/pop3/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pop/pop3/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pop/pop3/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pop/pop3/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pop/pop4/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pop/pop4/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pop/pop4/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pop/pop4/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pop/pop5/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pop/pop5/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pop/pop5/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pop/pop5/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pop/pop6/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pop/pop6/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pop/pop6/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pop/pop6/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pop/pop7/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pop/pop7/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pop/pop7/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pop/pop7/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pop/pop8/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pop/pop8/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pop/pop8/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pop/pop8/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/pop/pop9/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/pop/pop9/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/pop/pop9/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/pop/pop9/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/det1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/det1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/det1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/det1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/sm1/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/sm1/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/sm1/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/sm1/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/sm10/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/sm10/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/sm10/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/sm10/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/sm11/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/sm11/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/sm11/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/sm11/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/sm115/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/sm115/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/sm115/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/sm115/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/sm12/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/sm12/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/sm12/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/sm12/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/sm2/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/sm2/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/sm2/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/sm2/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/sm3/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/sm3/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/sm3/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/sm3/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/sm35/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/sm35/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/sm35/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/sm35/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/sm4/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/sm4/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/sm4/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/sm4/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/sm5/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/sm5/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/sm5/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/sm5/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,8 @@ const set: Set = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
images: {
|
images: {
|
||||||
symbol: "https://assets.tcgdex.net/sets/sm/sm6/symbol.png",
|
symbol: "https://assets.tcgdex.net/univ/sets/sm/sm6/symbol.png",
|
||||||
logo: "https://assets.tcgdex.net/sets/sm/sm6/logo.png"
|
logo: "https://assets.tcgdex.net/en/sets/sm/sm6/logo.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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