mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-17 00:07:36 +02:00
Make c4 colors into a JSON file
This commit is contained in:
@@ -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": "🪙"
|
||||||
|
}
|
||||||
@@ -4,36 +4,8 @@ const { verify, list } = require('../../util/Util');
|
|||||||
const { LOADING_EMOJI_ID } = process.env;
|
const { LOADING_EMOJI_ID } = process.env;
|
||||||
const blankEmoji = '⚪';
|
const blankEmoji = '⚪';
|
||||||
const nums = ['1⃣', '2⃣', '3⃣', '4⃣', '5⃣', '6⃣', '7⃣'];
|
const nums = ['1⃣', '2⃣', '3⃣', '4⃣', '5⃣', '6⃣', '7⃣'];
|
||||||
const colors = {
|
const colors = require('../../assets/json/connect-four');
|
||||||
red: '🔴',
|
colors.loading = `<a:loading:${LOADING_EMOJI_ID}>`;
|
||||||
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}>`
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = class ConnectFourCommand extends Command {
|
module.exports = class ConnectFourCommand extends Command {
|
||||||
constructor(client) {
|
constructor(client) {
|
||||||
|
|||||||
Reference in New Issue
Block a user