mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
31 lines
435 B
TypeScript
31 lines
435 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Scarlet & Violet'
|
|
|
|
const set: Set = {
|
|
id: "sv06.5",
|
|
|
|
name: {
|
|
de: "Nebel der Sagen",
|
|
en: "Shrouded Fable",
|
|
es: "Fabula Sombría",
|
|
fr: "Fable Nébuleuse",
|
|
it: "Segreto Fiabesco",
|
|
pt: "Fábulas Nebulosas"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 64
|
|
},
|
|
|
|
releaseDate: "2024-08-02",
|
|
|
|
abbreviations: {
|
|
official: "SFA",
|
|
fr: "FNE"
|
|
}
|
|
}
|
|
|
|
export default set
|