mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
26 lines
349 B
TypeScript
26 lines
349 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"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "STS",
|
|
|
|
cardCount: {
|
|
official: 114
|
|
},
|
|
|
|
releaseDate: "2016-08-03"
|
|
}
|
|
|
|
export default xy11
|