mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
19 lines
217 B
TypeScript
19 lines
217 B
TypeScript
import Expansion from "../interfaces/Expansion";
|
|
|
|
const set: Expansion = {
|
|
name: {
|
|
en: "Base"
|
|
},
|
|
code: "base",
|
|
sets: [
|
|
"base1",
|
|
"base2",
|
|
"base3",
|
|
"base4",
|
|
"base5",
|
|
"basep",
|
|
],
|
|
}
|
|
|
|
export default set
|