/* eslint-disable max-len */ const cowsay = require('cowsay'); module.exports = { name: 'cowsay', alias: [], description: 'Moo', usage: '', trusted: 0, execute: function(bot, username, usernameraw, sender, prefix, args) { bot.core.run('minecraft:tellraw @a ' + JSON.stringify({text: `${cowsay.say({text: args.join(' ')})}`})); }, };