move constants into assets folder
This commit is contained in:
parent
50b38b6f03
commit
5bbd7cc433
7 changed files with 2 additions and 8 deletions
6
bot/assets/constants/activities.json
Normal file
6
bot/assets/constants/activities.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
[
|
||||
{ "message": "the bees on my flowers", "type": 3 },
|
||||
{ "message": "for trick-or-treaters 🎃", "type": 3 },
|
||||
{ "message": "my code is binary? cringe", "type": 0 },
|
||||
{ "message": "BHNPS", "type": 0 }
|
||||
]
|
20
bot/assets/constants/colours.json
Normal file
20
bot/assets/constants/colours.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"CYAN": "#1abc9c",
|
||||
"GREEN": "#2ecc71",
|
||||
"BLUE": "#3498db",
|
||||
"PURPLE": "#9b59b6",
|
||||
"PINK": "#e91e63",
|
||||
"YELLOW": "#f1c40f",
|
||||
"ORANGE": "#e67e22",
|
||||
"RED": "#e74c3c",
|
||||
"GREY": "#95a5a6",
|
||||
"DARK_CYAN": "#11806a",
|
||||
"DARK_GREEN": "#1f8b4c",
|
||||
"DARK_BLUE": "#206694",
|
||||
"DARK_PURPLE": "#71368a",
|
||||
"DARK_PINK": "#ad1457",
|
||||
"DARK_YELLOW": "#c27c0e",
|
||||
"DARK_ORANGE": "#a84300",
|
||||
"DARK_RED": "#992d22",
|
||||
"DARK_GREY": "#979c9f"
|
||||
}
|
8
bot/assets/constants/emojis.json
Normal file
8
bot/assets/constants/emojis.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"success": "<:success:466995111885144095>",
|
||||
"botError": "<:warning:701681841190600704>",
|
||||
"userError": "<:error:466995152976871434>",
|
||||
"permError": "<:denied:466995195150336020>",
|
||||
"wait": "<:wait:467115775849922570>"
|
||||
|
||||
}
|
6
bot/assets/constants/index.js
Normal file
6
bot/assets/constants/index.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
module.exports = {
|
||||
activities: require('./activities.json'),
|
||||
colours: require('./colours.json'),
|
||||
emojis: require('./emojis.json'),
|
||||
replies: require ('./replies.json')
|
||||
};
|
11
bot/assets/constants/replies.json
Normal file
11
bot/assets/constants/replies.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"ping": [
|
||||
"Heya!",
|
||||
"Pong!",
|
||||
"Did you need something?",
|
||||
"Hello?",
|
||||
"Hi there!",
|
||||
"You called?",
|
||||
"Huh?"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue