-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.json
123 lines (122 loc) · 3.43 KB
/
plugins.json
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
122
{
"plugins":
[
// Top plugins takes priority over bellow plugins when calling hooks
{
"File Name": "Activity.py",
"Plugin Name": "Bot Activities",
"Description": "Updates the bot Activity description from time to time.",
"Hooks":
[
"on_think"
]
},
{
"File Name": "cache.py",
"Plugin Name": "Bot cache manipulator",
"Description": "Allows for manipulating the bot cache."
},
{
"File Name": "cm_update.py",
"Plugin Name": "Bot updater",
"Description": "Restarts the bot, This is usually done for updating purposes, the bot can fetch and pull git commits from the upstream repository."
},
{
"File Name": "control_arase.py",
"Hooks":
[
"on_message"
]
},
{
"File Name": "count_together.py",
"Plugin Name": "Count Together",
"Description": "Members counts all together in a channel",
"Hooks":
[
"on_message",
"on_daily"
]
},
{
"File Name": "electrocute.py",
"Plugin Name": "Electrocute a member",
"Description": "Sends a member to mimir electrocuting him"
},
{
"File Name": "feliz_jueves.py",
"Plugin Name": "Wish a happy thursday",
"Hooks":
[
"on_daily"
]
},
{
"File Name": "hoy_es_viernes.py",
"Plugin Name": "Reminder when friday",
"Hooks":
[
"on_daily"
]
},
{
"File Name": "fix_embeeds.py",
"Plugin Name": "Fix X and Instagram",
"Description": "Fix twitter and instagram embeeds",
"Hooks":
[
"on_link"
]
},
{
"File Name": "meme.py",
"Description": "Get a meme interface to repost"
},
{
"File Name": "message_reaction.py",
"Description": "Reacts to a specific-set of keywords",
"Hooks":
[
"on_message"
]
},
{
"File Name": "minesweeper.py",
"Description": "Mine Sweeper minigame, Find out the emoji, if you touch a bomb you lose!"
},
{
"File Name": "pick.py",
"Description": "Helps you deciding what choice to choose"
},
{
"File Name": "ping_counter.py",
"Description": "Count users pings",
"Hooks":
[
"on_mention"
]
},
{
"File Name": "say.py",
"Description": "Make the bot or someone else say something"
},
{
"File Name": "thecult_shared_role.py",
"Description": "Share a exclusive role in Limitless Potential for members in The Cult",
"Hooks":
[
"on_ready",
"on_member_join",
"on_member_remove"
]
},
{
"File Name": "woman_moment.py",
"Hooks":
[
"on_message"
]
}
],
"$schema": "schema.json"
}