Add owo command

This commit is contained in:
SileNce5k 2021-07-10 20:52:46 +02:00
parent 5a3f3a5e2c
commit 722898468f
No known key found for this signature in database
GPG key ID: C507260E7F2583AD
3 changed files with 55 additions and 0 deletions

9
commands/owo.js Normal file
View file

@ -0,0 +1,9 @@
const owo = require('@zuzak/owo')
module.exports = {
name: 'owo',
description: 'Translate to furry/weeb language',
execute({message, args}) {
let msg = args.join(" ")
message.channel.send(owo.translate(msg));
}
};