mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
312b8bd728
`#上传深渊数据`命令会展示角色排名及总记录排名
136 lines
3.8 KiB
JavaScript
136 lines
3.8 KiB
JavaScript
export {
|
|
character,
|
|
getProfile,
|
|
wife,
|
|
pokeWife,
|
|
enemyLv,
|
|
profileArtisList,
|
|
getProfileAll,
|
|
profileHelp,
|
|
getOriginalPicture,
|
|
uploadCharacterImg
|
|
} from "./apps/character.js";
|
|
|
|
import { wifeReg } from "./apps/character.js";
|
|
|
|
import { consStat, abyssPct, abyssTeam, uploadData } from "./apps/stat.js";
|
|
import { wiki, calendar } 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, profileCfg } from "./apps/admin.js";
|
|
import { currentVersion } from "./components/Changelog.js";
|
|
|
|
|
|
export {
|
|
consStat,
|
|
abyssPct,
|
|
abyssTeam,
|
|
wiki,
|
|
updateRes,
|
|
updateMiaoPlugin,
|
|
sysCfg,
|
|
help,
|
|
versionInfo,
|
|
calendar,
|
|
profileCfg,
|
|
uploadData
|
|
};
|
|
|
|
|
|
let rule = {
|
|
character: {
|
|
reg: "^(#(.*)|#*(更新|录入)?(.*)(详细|详情|面板|面版|伤害[1-7]?)(更新)?)$",
|
|
//reg: "noCheck",
|
|
describe: "【#角色】角色详情",
|
|
},
|
|
uploadCharacterImg: {
|
|
reg: "^#*(喵喵)?(上传|添加)(.+)(照片|写真|图片|图像)\\s*$",
|
|
describe: "喵喵上传角色写真",
|
|
},
|
|
profileArtisList: {
|
|
reg: "^#圣遗物列表\\s*(\\d{9})?$",
|
|
describe: "【#角色】圣遗物列表",
|
|
},
|
|
getProfileAll: {
|
|
reg: "^#(面板角色|角色面板|面板)(列表)?\\s*(\\d{9})?$",
|
|
describe: "【#角色】查看当前已获取面板数据的角色列表",
|
|
},
|
|
profileHelp: {
|
|
reg: "^#角色面板帮助$",
|
|
describe: "【#角色】查看当前已获取面板数据的角色列表",
|
|
},
|
|
wife: {
|
|
reg: wifeReg,
|
|
describe: "【#角色】#老公 #老婆 查询",
|
|
},
|
|
pokeWife: {
|
|
reg: "#poke#",
|
|
describe: "【#角色】戳一戳",
|
|
},
|
|
getOriginalPicture: {
|
|
reg: "^#?(获取|给我|我要|求|发|发下|发个|发一下)?原图(吧|呗)?$",
|
|
describe: "【#原图】 回复角色卡片,可获取原图",
|
|
},
|
|
consStat: {
|
|
reg: "^#(喵喵)?角色(持有|持有率|命座|命之座|.命)(分布|统计|持有|持有率)?$",
|
|
describe: "【#统计】 #角色持有率 #角色5命统计",
|
|
},
|
|
abyssPct: {
|
|
reg: "^#(喵喵)?深渊(第?.{1,2}层)?(角色)?(出场|使用)(率|统计)*$",
|
|
describe: "【#统计】 #深渊出场率 #深渊12层出场率",
|
|
},
|
|
abyssTeam: {
|
|
reg: "#深渊(组队|配队)",
|
|
describe: "【#角色】 #深渊组队",
|
|
},
|
|
wiki: {
|
|
reg: "^(#|喵喵)?.*(天赋|技能|命座|命之座|资料|照片|写真|图片|图像)$",
|
|
describe: "【#资料】 #神里天赋 #夜兰命座",
|
|
},
|
|
help: {
|
|
reg: "^#?(喵喵)?(命令|帮助|菜单|help|说明|功能|指令|使用说明)$",
|
|
describe: "【#帮助】 #喵喵帮助",
|
|
},
|
|
getProfile: {
|
|
reg: "^#(全部面板更新|更新全部面板|获取游戏角色详情|更新面板|面板更新)\\s*(\\d{9})?$",
|
|
describe: "【#角色】 获取游戏橱窗详情数据",
|
|
},
|
|
enemyLv: {
|
|
reg: "^#(敌人|怪物)等级\\s*\\d{1,3}\\s*$",
|
|
describe: "【#角色】 设置伤害计算中目标敌人的等级",
|
|
},
|
|
versionInfo: {
|
|
reg: "^#?喵喵版本$",
|
|
describe: "【#帮助】 喵喵版本介绍",
|
|
},
|
|
calendar: {
|
|
reg: "^(#|喵喵)+(日历|日历列表)$",
|
|
describe: "【#日历】 活动日历",
|
|
},
|
|
uploadData: {
|
|
reg: "^#上传(深渊|数据)+$"
|
|
},
|
|
...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}`, `您可使用 #喵喵版本 命令查看更新信息`];
|
|
await common.relpyPrivate(msg.qq, msgs.join("\n"));
|
|
}
|
|
}, 1000); |