huaanglimeng/data/tarot/index.js

17 lines
343 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const cups = require('./cups');
const wands = require('./wands');
const swords = require('./swords');
const pentacles = require('./pentacles');
// 注意Major Arcana 目前仍在 index.js 中,未来可提取至此
const minorArcana = [
...cups,
...wands,
...swords,
...pentacles
];
module.exports = {
minorArcana
};