UNPKG

koishi-plugin-crazy-thursday

Version:
14 lines (13 loc) 504 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.apply = exports.schema = exports.name = void 0; const koishi_1 = require("koishi"); const corpus = require('../corpus'); exports.name = 'crazy-thursday'; exports.schema = koishi_1.Schema.object({}); function apply(ctx) { ctx.command('thursday', '随机输出 KFC 疯狂星期四段子') .shortcut('疯狂星期四') .action(() => koishi_1.Random.pick(corpus)); } exports.apply = apply;