mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
32 lines
457 B
TypeScript
32 lines
457 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Sun & Moon'
|
|
|
|
const sm11: Set = {
|
|
id: "sm11",
|
|
|
|
name: {
|
|
en: "Unified Minds",
|
|
fr: "Harmonie des Esprits",
|
|
es: "Mentes Unidas",
|
|
it: "Sintonia Mentale",
|
|
de: "Bund der Gleichgesinnten",
|
|
pt: "Sintonia Mental "
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "UNM",
|
|
|
|
cardCount: {
|
|
official: 236
|
|
},
|
|
|
|
releaseDate: "2019-08-02",
|
|
|
|
abbreviations: {
|
|
official: "UNM",
|
|
fr: "HES"
|
|
}
|
|
}
|
|
|
|
export default sm11
|