mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
32 lines
427 B
TypeScript
32 lines
427 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../XY'
|
|
|
|
const xy11: Set = {
|
|
id: "xy11",
|
|
|
|
name: {
|
|
en: "Steam Siege",
|
|
fr: "Offensive Vapeur",
|
|
es: "Asedio de Vapor",
|
|
it: "Vapori Accesi",
|
|
de: "Dampfkessel",
|
|
pt: "Cerco de Vapor"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "STS",
|
|
|
|
cardCount: {
|
|
official: 114
|
|
},
|
|
|
|
releaseDate: "2016-08-03",
|
|
|
|
abbreviations: {
|
|
official: "STS",
|
|
fr: "OFV"
|
|
}
|
|
}
|
|
|
|
export default xy11
|