koishi-plugin-yunzai
Version:
a yunzai adapter for koishi
9 lines (8 loc) • 311 B
TypeScript
type GachaLevel = 'S' | 'R' | 'N';
declare const probability: {
readonly activity: readonly [151, 1282, 8567];
readonly weapon: readonly [156, 1498, 8346];
readonly permanent: readonly [213, 1387, 8400];
};
export declare function gachaSelect(pool: keyof typeof probability): GachaLevel;
export {};