mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
28 lines
341 B
TypeScript
28 lines
341 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Steam Siege",
|
|
fr: "Offensive Vapeur",
|
|
},
|
|
code: "xy11",
|
|
expansionCode: "xy",
|
|
tcgoCode: "STS",
|
|
|
|
cardCount: {
|
|
total: 116,
|
|
official: 114
|
|
},
|
|
|
|
api: "11-xy",
|
|
|
|
releaseDate: "2016-08-03",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true,
|
|
}
|
|
}
|
|
|
|
export default set
|