2 Star 53 Fork 0

小花花花儿/Yunzai-Bot的js插件合集

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
我的超能力.js 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
小花花花儿 提交于 2024-03-16 01:20 . 添加删除抽卡记录js
//作者860563585
//项目地址https://gitee.com/HanaHimeUnica/yzjs
import _ from 'lodash'
import puppeteer from '../../lib/puppeteer/puppeteer.js'
import plugin from '../../lib/plugins/plugin.js'
const _path = process.cwd() + '/data/wdcnl'
const cnl = `${_path}/超能力/`;
const ds = `${_path}/但是/`;
const zy = `${_path}/主义/`;
export class example extends plugin {
constructor() {
super({
/** 功能名称 */
name: '我的超能力',
/** 功能描述 */
dsc: '我的超能力',
priority: 1000,
rule: [
{
reg: '^#*(我|他|她|它)的超?能力(是什么)*$',
fnc: 'kkcnl'
}
]
})
}
async kkcnl() {
let file = cnl
let number = Math.floor(Math.random() * (24 - 1) + 1)
let cnl_URL = file + number.toString() + '.png'
let file1 = ds
let number1 = Math.floor(Math.random() * (17 - 1) + 1)
let ds_URL = file1 + number1.toString() + '.png'
let file2 = zy
let number2 = Math.floor(Math.random() * (24 - 1) + 1)
let zy_URL = file2 + number2.toString() + '.png'
let data = {
tplFile: `${_path}/wdcnl.html`,
超能力: cnl_URL,
但是: ds_URL,
主义: zy_URL,
}
let img = await puppeteer.screenshot('wdcnl', data)
if (img) await this.e.reply(_.concat(img))
return true //返回true 阻挡消息不再往下
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/HanaHimeUnica/yzjs.git
git@gitee.com:HanaHimeUnica/yzjs.git
HanaHimeUnica
yzjs
Yunzai-Bot的js插件合集
master

搜索帮助