-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.json
More file actions
121 lines (120 loc) · 3.58 KB
/
Copy pathplugins.json
File metadata and controls
121 lines (120 loc) · 3.58 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"plugins": [
{
"name": "adb-plugin-aegis",
"displayName": "Aegis",
"version": "1.0.0",
"description": "Automated threat detection: anti-raid, anti-spam, anti-link, anti-alt. Each module independently toggleable.",
"author": "dead",
"main": "index.js",
"requiresRestart": false,
"permissions": ["db.read", "db.write", "commands.register"],
"configSchema": {
"type": "object",
"properties": {
"log_channel_id": { "type": "string", "default": null },
"raid_joins": { "type": "number", "default": 10 },
"raid_seconds": { "type": "number", "default": 10 },
"spam_messages": { "type": "number", "default": 5 },
"spam_seconds": { "type": "number", "default": 3 },
"spam_action": { "type": "string", "enum": ["warn", "mute", "kick", "ban"], "default": "mute" },
"alt_min_age_days": { "type": "number", "default": 7 },
"alt_action": { "type": "string", "enum": ["flag", "kick"], "default": "flag" }
}
}
},
{
"name": "adb-plugin-levels",
"displayName": "Levels & XP System",
"version": "1.0.0",
"description": "Track user activity with XP, levels, and role rewards",
"author": "dead",
"main": "index.js",
"requiresRestart": false,
"permissions": [
"db.read",
"db.write",
"commands.register",
"events.register"
],
"configSchema": {
"type": "object",
"properties": {
"xpPerMessage": {
"type": "number",
"default": 5,
"minimum": 1,
"maximum": 50
},
"xpCooldown": {
"type": "number",
"default": 60,
"minimum": 10,
"maximum": 300
},
"xpPerMinuteLimit": {
"type": "number",
"default": 100,
"minimum": 10,
"maximum": 1000
},
"levelUpChannelId": {
"type": "string",
"default": null
}
}
}
},
{
"name": "adb-plugin-moderation",
"displayName": "Basic Moderation",
"version": "1.0.0",
"description": "Core moderation commands: ban, kick, timeout, warn, purge, tickets, and case logging.",
"author": "dead",
"main": "index.js",
"requiresRestart": true,
"permissions": ["db.read", "db.write", "commands.register"],
"configSchema": {
"type": "object",
"properties": {
"log_channel_id": { "type": "string", "default": null },
"ticket_category_id": { "type": "string", "default": null },
"ticket_support_role_id": { "type": "string", "default": null },
"ticket_log_channel_id": { "type": "string", "default": null },
"warn_thresholds": {
"type": "object",
"default": {
"3": { "action": "timeout", "duration": "1h" },
"5": { "action": "timeout", "duration": "24h" },
"7": { "action": "kick" },
"10": { "action": "ban" }
}
},
"dm_on_action": { "type": "boolean", "default": true }
}
}
},
{
"name": "adb-plugin-reminders",
"displayName": "Reminders",
"version": "1.0.1",
"description": "Adds /remind to set, list, and cancel personal reminders. Delivers via DM with a channel fallback.",
"author": "DeadIndian",
"main": "index.js",
"requiresRestart": false,
"permissions": ["db.read", "db.write", "commands.register"],
"configSchema": {
"type": "object",
"properties": {
"maxPerUser": {
"type": "number",
"default": 25,
"minimum": 1,
"maximum": 200,
"description": "Max active reminders a single user can have per server"
}
}
}
}
]
}