1 Star 0 Fork 81

韩帅/miao-plugin

forked from Kokomi/miao-plugin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 2.90 KB
一键复制 编辑 原始数据 按行查看 历史
Kokomi 提交于 2022-05-01 05:06 . 增加 \#雷神伤害 功能
import {
character,
getProfile,
wife,
wifeReg,
enemyLv,
getArtis,
getProfileAll,
profileHelp
} from "./apps/character.js";
import { consStat, abyssPct } from "./apps/stat.js";
import { wiki } from "./apps/wiki.js";
import { help, versionInfo } from "./apps/help.js";
import lodash from "lodash";
import common from "../../lib/common.js";
import { rule as adminRule, updateRes, sysCfg, updateMiaoPlugin } from "./apps/admin.js";
import { currentVersion, changelogs } from "./components/Changelog.js";
export {
character,
wife,
consStat,
abyssPct,
wiki,
updateRes,
updateMiaoPlugin,
sysCfg,
help,
versionInfo,
getProfile,
enemyLv,
getArtis,
getProfileAll,
profileHelp
};
let rule = {
character: {
reg: "^#(喵喵)?(更新)?(.*)(详情|详细|面板|面版|伤害[1-7]?)?(更新)?$",
describe: "【#角色】角色详情",
},
getArtis: {
reg: "#圣遗物列表",
describe: "【#角色】圣遗物列表",
},
getProfileAll: {
reg: "#(面板角色|角色面板)列表",
describe: "【#角色】查看当前已获取面板数据的角色列表",
},
profileHelp: {
reg: "#角色面板帮助",
describe: "【#角色】查看当前已获取面板数据的角色列表",
},
wife: {
reg: wifeReg,
describe: "【#角色】#老公 #老婆 查询",
},
consStat: {
reg: "^#(喵喵)?角色(持有|持有率|命座|命之座|.命)(分布|统计)?$",
describe: "【#统计】 #角色持有率 #角色5命统计",
},
abyssPct: {
reg: "^#(喵喵)?深渊(第?.{1,2}层)?(角色)?出场(率|统计)*$",
describe: "【#统计】 #深渊出场率 #深渊12层出场率",
},
wiki: {
reg: "^(#|喵喵)?.*(天赋|技能|命座|命之座|资料|照片|写真|图片|插画)$",
describe: "【#资料】 #神里天赋 #夜兰命座",
},
help: {
reg: "^#?(喵喵)?(命令|帮助|菜单|help|说明|功能|指令|使用说明)$",
describe: "【#帮助】 #喵喵帮助",
},
getProfile: {
reg: "^#(全部面板更新|更新全部面板|获取游戏角色详情)$",
describe: "【#角色】 获取游戏橱窗详情数据",
},
enemyLv: {
reg: "^#(敌人|怪物)等级\\s*\\d{1,3}\\s*$",
describe: "【#角色】 设置伤害计算中目标敌人的等级",
},
versionInfo: {
reg: "#喵喵版本",
describe: "【#帮助】 喵喵版本介绍",
},
...adminRule
};
lodash.forEach(rule, (r) => {
r.priority = r.priority || 50;
r.prehash = true;
r.hashMark = true;
});
export { rule };
console.log(`喵喵插件${currentVersion}初始化~`);
setTimeout(async function () {
let msgStr = await redis.get("miao:restart-msg");
if (msgStr) {
let msg = JSON.parse(msgStr);
await common.relpyPrivate(msg.qq, msg.msg);
await redis.del("miao:restart-msg");
let msgs = [`当前喵喵版本: ${currentVersion}`, ...changelogs];
await common.relpyPrivate(msg.qq, msgs.join("\n"));
}
}, 1000);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Evan-han/miao-plugin.git
[email protected]:Evan-han/miao-plugin.git
Evan-han
miao-plugin
miao-plugin
master

搜索帮助