mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
33 lines
468 B
TypeScript
33 lines
468 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../XY'
|
|
|
|
const xy3: Set = {
|
|
id: "xy3",
|
|
|
|
name: {
|
|
en: "Furious Fists",
|
|
fr: "Poings Furieux",
|
|
es: "Puños Furiosos",
|
|
it: "Colpi Furiosi",
|
|
de: "Fliegende Fäuste",
|
|
pt: "Punhos Furiosos",
|
|
ru: "Яростный Кулак"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "FFI",
|
|
|
|
cardCount: {
|
|
official: 111
|
|
},
|
|
|
|
releaseDate: "2014-08-13",
|
|
|
|
abbreviations: {
|
|
official: "FFI",
|
|
fr: "PFU"
|
|
}
|
|
}
|
|
|
|
export default xy3
|