mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 12:51:30 +00:00
37 lines
931 B
JavaScript
37 lines
931 B
JavaScript
import { uploadCharacterImg } from './character/ImgUpload.js'
|
|
import { getOriginalPicture } from './profile/ProfileUtils.js'
|
|
import Avatar from './character/AvatarCard.js'
|
|
import Wife from './character/AvatarWife.js'
|
|
import { App } from '#miao'
|
|
|
|
let app = App.init({
|
|
id: 'character',
|
|
name: '角色查询'
|
|
})
|
|
|
|
app.reg({
|
|
character: {
|
|
rule: /^#喵喵角色卡片$/,
|
|
fn: Avatar.render,
|
|
check: Avatar.check,
|
|
name: '角色卡片'
|
|
},
|
|
uploadImg: {
|
|
rule: /^#*(喵喵)?(上传|添加)(.+)(照片|写真|图片|图像)\s*$/,
|
|
fn: uploadCharacterImg,
|
|
name: '上传角色写真'
|
|
},
|
|
wife: {
|
|
rule: Wife.reg,
|
|
fn: Wife.render,
|
|
describe: '#老公 #老婆 查询'
|
|
},
|
|
originalPic: {
|
|
rule: /^#?(获取|给我|我要|求|发|发下|发个|发一下)?原图(吧|呗)?$/,
|
|
fn: getOriginalPicture,
|
|
describe: '【#原图】 回复角色卡片,可获取原图'
|
|
}
|
|
})
|
|
|
|
export default app
|