miao-plugin/index.js

38 lines
812 B
JavaScript
Raw Normal View History

import { character, wife, wifeReg } from "./apps/character.js";
import { consStat, abyssPct } from "./apps/stat.js";
2022-04-04 05:36:24 +00:00
//import { wiki } from "./apps/wiki.js";
export { character, wife, consStat, abyssPct };
2022-03-26 08:21:44 +00:00
export const rule = {
character: {
prehash: true,
reg: "^#(.*)?$",
priority: 203,
2022-03-26 08:21:44 +00:00
describe: "【#刻晴】角色详情",
2022-03-26 21:34:33 +00:00
},
wife: {
prehash: true,
reg: wifeReg,
priority: 203,
describe: "【#老婆,#老公,#女儿】角色详情",
},
consStat: {
hrehash: true,
reg: "^#角色(持有|持有率|命座|命之座|.命)(分布|统计)?$",
priority: 200
},
abyssPct: {
prehash: true,
reg: "^#深渊(第?.{1,2}层)?(角色)?出场(率|统计)*$",
priority: 200
}
2022-04-04 05:36:24 +00:00
/*
2022-04-03 22:06:03 +00:00
wiki: {
2022-04-03 22:47:06 +00:00
reg: "^#*.*(缓存)$",
2022-04-03 22:06:03 +00:00
priority: 300
2022-04-04 05:36:24 +00:00
}*/
2022-03-26 21:34:33 +00:00
};
2022-03-26 08:21:44 +00:00