/* eslint-disable max-len */ const urban = require('urban-dictionary'); module.exports = { name: 'urban', alias: [], description: 'Working Urban Dictionary', usage: '', trusted: 0, execute: function(bot, username, usernameraw, sender, prefix, args) { urban.autocompleteExtra(args[0], (error, results) => { if (error) { bot.core.run('minecraft:tellraw @a ' + JSON.stringify(['', {text: '[', color: 'dark_red'}, {text: 'Urban', color: 'red'}, {text: '] ', color: 'dark_red'}, {text: error.message, color: 'red'}])); return; } results.forEach(({preview, term}) => { bot.core.run('minecraft:tellraw @a ' + JSON.stringify(['', {text: '[', color: 'dark_red'}, {text: 'Urban', color: 'red'}, {text: '] ', color: 'dark_red'}, {text: term, color: 'white'}, {text: ' - ', color: 'white'}, {text: preview, color: 'white'}])); }); }); }, };