mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
22 lines
458 B
JavaScript
22 lines
458 B
JavaScript
import { App } from '../components/index.js'
|
|
import Gacha from './gacha/Gacha.js'
|
|
|
|
let app = App.init({
|
|
id: 'gacha',
|
|
name: '抽卡统计'
|
|
})
|
|
app.reg({
|
|
detail: {
|
|
name: '抽卡记录',
|
|
fn: Gacha.detail,
|
|
rule: /^#*(抽卡|抽奖|角色|武器|常驻|up)池*(记录|祈愿|分析)$/
|
|
},
|
|
stat: {
|
|
name: '抽卡统计',
|
|
fn: Gacha.stat,
|
|
rule: /^#*(抽卡|抽奖|角色|武器|常驻|up|版本)池*统计$/
|
|
}
|
|
})
|
|
|
|
export default app
|