var log = require('./colorized').log, c = require('./colorized').colorized, s = { n: ["FgRed", "BgBlack", "Bright"], // Normality bkr: ["FgRed", "BgBlack", "Bright", "Blink"], // Blink red bky: ["FgYellow", "BgBlack", "Bright", "Blink"], // Blink yellow b: ["FgWhite", "BgBlack"], // Border l: ["FgWhite", "BgBlack", "Bright"], // logo lr: ["FgRed", "BgBlack", "Bright"], // logo red ly: ["FgYellow", "BgBlack", "Bright"], // logo yellow lm: ["FgMagenta", "BgBlack", "Bright"], // logo magenta lg: ["FgGreen", "BgBlack", "Bright"] // logo green }, b = () => c("---", s.b), bkr = (x) => c(x, s.bkr), bky = (x) => c(x, s.bky), l = (x) => c(x, s.l), ly = (x) => c(x, s.ly), lr = (x) => c(x, s.lr), lm = (x) => c(x, s.lm), lg = (x) => c(x, s.lg); module.exports = { logo: function () { log("--------------------------------------------", s.b); log(b() + c(" MW-NodeJS Server 0.3 ", s.lr) + b()); log("--------------------------------------------", s.b); log(b() + l(" .-. ") + b()); log(b() + l(" {{") + lm("#") + l("}} ") + b()); log(b() + l(" 888 ") + b()); log(b() + l(" 888 ") + b()); log(b() + l(" 8@8 ") + b()); log(b() + l(" _ )8( _ ") + b()); log(b() + l(" ____________________(") + lr("@") + l(")__/8@8\\__(") + lr("@") + l(") ") + b()); log(b() + l(' | | | |`~"-=):(=-"~` ') + b()); log(b() + l(" | ") + lg("<>") + l(" | | ") + lg("<>") + l(" | |.| ") + b()); log(b() + l(" | ") + lg("<><>") + l(" | | ") + lg("<><>") + l(" | |") + bky("A") + l("| ") + b()); log(b() + l(" | ") + lg("<> <>") + l("| |") + lg("<> <>") + l(" | |'| ") + b()); log(b() + l(" | ") + lg("<>") + l(" .--------. ") + lg("<>") + l(" | |.| ") + b()); log(b() + l(" |_____| ") + ly("()") + l(" |_____| |") + bky("C") + l("| ") + b()); log(b() + l(" | | ") + ly("(O\\/O)") + l(" | | |'| ") + b()); log(b() + l(" | \\ ") + ly("/\\") + l(" / | |.| ") + b()); log(b() + l(" |______\\ ") + ly("\\/") + l(" /______| |") + bky("A") + l("| ") + b()); log(b() + l(" | '.__.' | |'| ") + b()); log(b() + l(" | ") + lg("<>") + l(" | | ") + lg("<>") + l(" | |.| ") + b()); log(b() + l(" | ") + lg("<> <>") + l("| |") + lg("<> <>") + l(" | |") + bky("B") + l("| ") + b()); log(b() + l(" | ") + lg("<><>") + l(" | | ") + lg("<><>") + l(" | |'| ") + b()); log(b() + l(" | ") + lg("<>") + l(" | | ") + lg("<>") + l(" | |.| ") + b()); log(b() + l(" |________|__|________| \\ / ") + b()); log(b() + l(" v ") + b()); log("--------------------------------------------", s.b); } }