import { character, wife, wifeReg } from "./apps/character.js"; import { consStat, abyssPct } from "./apps/stat.js"; import { wiki } from "./apps/wiki.js"; import { help } from "./apps/help.js"; import lodash from "lodash"; import { rule as adminRule, updateRes, sysCfg } from "./apps/admin.js"; export { character, wife, consStat, abyssPct, wiki, updateRes, sysCfg, help }; let rule = { character: { reg: "^#(喵喵)?(.*)?$", describe: "【#刻晴】角色详情", }, wife: { reg: wifeReg, describe: "【#老婆,#老公,#女儿】角色详情", }, consStat: { reg: "^#(喵喵)?角色(持有|持有率|命座|命之座|.命)(分布|统计)?$", }, abyssPct: { reg: "^#(喵喵)?深渊(第?.{1,2}层)?(角色)?出场(率|统计)*$", }, wiki: { reg: "^#(喵喵)?.*(天赋|技能|命座|命之座|资料|照片|写真|图片|插画)$", }, help: { reg: "#?(喵喵)?(命令|帮助|菜单|help|说明|功能|指令|使用说明)$" }, ...adminRule }; lodash.forEach(rule, (r) => { r.priority = r.priority || 50; r.prehash = true; r.hashMark = true; }); export { rule };