1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon c8a7068da5
Added missing Sun & Moon sets translations (#57)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-14 11:25:05 +00:00

26 lines
345 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Sun & Moon'
const sm1: Set = {
id: "sm1",
name: {
en: "Sun & Moon",
fr: "Soleil et Lune",
es: "Sol y Luna",
it: "Sole e Luna",
de: "Sonne & Mond"
},
serie: serie,
tcgOnline: "SUM",
cardCount: {
official: 149
},
releaseDate: "2017-02-03"
}
export default sm1