2017-04-18 07:42:26 +00:00
|
|
|
"use strict";
|
|
|
|
|
2017-04-28 21:40:26 +00:00
|
|
|
const colorCodeMap = [
|
|
|
|
["00", "White"],
|
|
|
|
["01", "Black"],
|
|
|
|
["02", "Blue"],
|
|
|
|
["03", "Green"],
|
|
|
|
["04", "Red"],
|
|
|
|
["05", "Brown"],
|
|
|
|
["06", "Magenta"],
|
|
|
|
["07", "Orange"],
|
|
|
|
["08", "Yellow"],
|
|
|
|
["09", "Light Green"],
|
|
|
|
["10", "Cyan"],
|
|
|
|
["11", "Light Cyan"],
|
|
|
|
["12", "Light Blue"],
|
|
|
|
["13", "Pink"],
|
|
|
|
["14", "Grey"],
|
|
|
|
["15", "Light Grey"],
|
|
|
|
];
|
|
|
|
|
2017-04-18 07:42:26 +00:00
|
|
|
const commands = [
|
|
|
|
"/away",
|
|
|
|
"/back",
|
2017-04-24 10:40:53 +00:00
|
|
|
"/ban",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/banlist",
|
|
|
|
"/close",
|
|
|
|
"/connect",
|
2017-04-28 21:45:18 +00:00
|
|
|
"/ctcp",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/deop",
|
|
|
|
"/devoice",
|
|
|
|
"/disconnect",
|
|
|
|
"/invite",
|
|
|
|
"/join",
|
|
|
|
"/kick",
|
|
|
|
"/leave",
|
|
|
|
"/me",
|
|
|
|
"/mode",
|
|
|
|
"/msg",
|
|
|
|
"/nick",
|
|
|
|
"/notice",
|
|
|
|
"/op",
|
|
|
|
"/part",
|
|
|
|
"/query",
|
|
|
|
"/quit",
|
|
|
|
"/raw",
|
|
|
|
"/say",
|
|
|
|
"/send",
|
|
|
|
"/server",
|
|
|
|
"/slap",
|
|
|
|
"/topic",
|
2017-04-24 10:40:53 +00:00
|
|
|
"/unban",
|
2017-04-18 07:42:26 +00:00
|
|
|
"/voice",
|
|
|
|
"/whois"
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
2017-04-28 21:40:26 +00:00
|
|
|
colorCodeMap: colorCodeMap,
|
2017-04-18 07:42:26 +00:00
|
|
|
commands: commands
|
|
|
|
};
|