mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
15 lines
179 B
TypeScript
15 lines
179 B
TypeScript
import Expansion from "../interfaces/Expansion";
|
|
|
|
const set: Expansion = {
|
|
name: {
|
|
en: "Sword & Shield"
|
|
},
|
|
code: "gym",
|
|
sets: [
|
|
"gym1",
|
|
"gym2",
|
|
]
|
|
}
|
|
|
|
export default set
|