Make c4 colors into a JSON file

This commit is contained in:
Dragon Fire
2021-01-09 12:17:07 -05:00
parent 19b98a6030
commit 13452a29c8
2 changed files with 36 additions and 30 deletions
+34
View File
@@ -0,0 +1,34 @@
{
"red": "🔴",
"yellow": "🟡",
"blue": "🔵",
"brown": "🟤",
"green": "🟢",
"orange": "🟠",
"purple": "🟣",
"black": "⚫",
"cheese": "🧀",
"face": "😶",
"angry": "😡",
"cold": "🥶",
"dog": "🐶",
"cat": "🐱",
"turtle": "🐢",
"moon": "🌘",
"earth": "🌎",
"donut": "🍙",
"cookie": "🍪",
"baseball": "⚾",
"softball": "🥎",
"tennisball": "🎾",
"volleyball": "🏐",
"basketball": "🏀",
"soccerball": "⚽",
"8ball": "🎱",
"cd": "💿",
"dvd": "📀",
"nsfw": "🔞",
"nosmoke": "🚭",
"clock": "🕓",
"coin": "🪙"
}
+2 -30
View File
@@ -4,36 +4,8 @@ const { verify, list } = require('../../util/Util');
const { LOADING_EMOJI_ID } = process.env;
const blankEmoji = '⚪';
const nums = ['1⃣', '2⃣', '3⃣', '4⃣', '5⃣', '6⃣', '7⃣'];
const colors = {
red: '🔴',
yellow: '🟡',
blue: '🔵',
brown: '🟤',
green: '🟢',
orange: '🟠',
purple: '🟣',
black: '⚫',
cheese: '🧀',
face: '😶',
moon: '🌘',
earth: '🌎',
donut: '🍙',
cookie: '🍪',
baseball: '⚾',
softball: '🥎',
tennisball: '🎾',
volleyball: '🏐',
basketball: '🏀',
soccerball: '⚽',
'8ball': '🎱',
cd: '💿',
dvd: '📀',
nsfw: '🔞',
nosmoke: '🚭',
clock: '🕓',
coin: '🪙',
loading: `<a:loading:${LOADING_EMOJI_ID}>`
};
const colors = require('../../assets/json/connect-four');
colors.loading = `<a:loading:${LOADING_EMOJI_ID}>`;
module.exports = class ConnectFourCommand extends Command {
constructor(client) {