koishi-plugin-ggcevo-game
Version:
《星际争霸2》咕咕虫-evolved地图的专属游戏助手插件,集成天梯排行、抽奖系统、签到福利、兑换商城等丰富功能。
21 lines (20 loc) • 603 B
TypeScript
import { Context, Schema } from 'koishi';
import 'koishi-plugin-sc2arcade-search';
export declare const name = "ggcevo-game";
export declare const inject: {
required: string[];
};
export interface Config {
proxyAgent: string;
rankseason: string;
autorank: boolean;
ignoreGlobalLimit: boolean;
groupId: string[];
checkInterval: number;
dailyPKLimit: number;
sameOpponentLimit: boolean;
maxDailyBeChallenged: number;
unlimitedBossAttack: boolean;
}
export declare const Config: Schema<Config>;
export declare function apply(ctx: Context, config: Config): void;