move constants into assets folder

This commit is contained in:
Emily 2020-10-29 12:56:16 +11:00
parent 50b38b6f03
commit 5bbd7cc433
7 changed files with 2 additions and 8 deletions

View 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 }
]

View 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"
}

View file

@ -0,0 +1,8 @@
{
"success": "<:success:466995111885144095>",
"botError": "<:warning:701681841190600704>",
"userError": "<:error:466995152976871434>",
"permError": "<:denied:466995195150336020>",
"wait": "<:wait:467115775849922570>"
}

View file

@ -0,0 +1,6 @@
module.exports = {
activities: require('./activities.json'),
colours: require('./colours.json'),
emojis: require('./emojis.json'),
replies: require ('./replies.json')
};

View file

@ -0,0 +1,11 @@
{
"ping": [
"Heya!",
"Pong!",
"Did you need something?",
"Hello?",
"Hi there!",
"You called?",
"Huh?"
]
}