koishi-plugin-ggcevo-game
Version:
星际争霸2咕咕虫-evolved地图的专属游戏助手插件,集成天梯排行、抽奖系统、签到福利、兑换商城等丰富功能。
24 lines (23 loc) • 724 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[];
dailyPKLimit: number;
sameOpponentLimit: boolean;
maxDailyBeChallenged: number;
unlimitedBossAttack: boolean;
enableCurfew: boolean;
enablePlayRequirement: boolean;
enableMatchesRequirement: boolean;
enableExchangeCouponForResource: boolean;
}
export declare const Config: Schema<Config>;
export declare function apply(ctx: Context, config: Config): void;