-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_conf_schema.json
More file actions
67 lines (67 loc) · 2.28 KB
/
_conf_schema.json
File metadata and controls
67 lines (67 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"admin_qq": {
"description": "管理员 QQ 列表",
"type": "list",
"item_type": "string",
"default": [
"2442262339"
],
"hint": "拥有修改积分权限的管理员 QQ 号。回车添加多个。"
},
"enabled_groups": {
"description": "✅ 白名单群号 (绝对优先)",
"type": "list",
"item_type": "string",
"default": [],
"hint": "如果填写,插件【仅】在这些群运行,且直接忽略黑名单。"
},
"disabled_groups": {
"description": "❌ 黑名单群号",
"type": "list",
"item_type": "string",
"default": [],
"hint": "仅在白名单为空时生效。插件将在这些群被禁用。"
},
"rob_fail_rate": {
"description": "抢劫失败概率",
"type": "float",
"default": 0.4,
"hint": "填写 0.0 到 1.0 之间的小数。0.4 表示有 40% 的几率失败摔跤。"
},
"rob_min_points": {
"description": "抢劫保底积分",
"type": "int",
"default": 1,
"hint": "抢劫成功后,至少能抢到的积分数。"
},
"rob_max_points": {
"description": "抢劫最高积分",
"type": "int",
"default": 8,
"hint": "抢劫成功后,最多能抢到的积分数。"
},
"intervene_fail_rate": {
"description": "行侠仗义失败概率",
"type": "float",
"default": 0.4,
"hint": "填写 0.0 到 1.0 之间的小数。0.4 表示大侠有 40% 的几率被打趴下。"
},
"hero_reward_points": {
"description": "行侠仗义成功奖励",
"type": "int",
"default": 3,
"hint": "大侠成功阻止抢劫后,系统发放的积分奖励。"
},
"intervene_penalty_normal": {
"description": "普通劫匪被抓罚款",
"type": "int",
"default": 5,
"hint": "普通劫匪被行侠仗义击败后,扣除的积分数。"
},
"intervene_penalty_red_name": {
"description": "通缉犯被抓罚款",
"type": "int",
"default": 10,
"hint": "红名通缉犯被行侠仗义击败后,加倍扣除的积分数。"
}
}