Denim-Bot/src/modules/komArgs.ts
Histmy 1711416335 pomoc3
added http server for anouncing all commands, their aliasses and
sometimes argument meaning

beginning of 3001.32
2021-11-18 18:59:39 +01:00

39 lines
834 B
TypeScript

// Komandy, který pošlou jenom celArgs a random hovno
import { emouty } from "../utils/emotes";
import { Modul } from "../utils/types";
const exp: Modul = {
more_komandy: {
rekni: (mes, co) => {
if (mes.author.bot) return "ne";
const corict = co || `co mam jako rict ${mes.author}`;
mes.delete();
return corict;
},
clap: (mes, text) => {
mes.delete();
return `${text} ${emouty.clap}`;
},
clap2: (mes, text) => {
mes.delete();
return `${emouty.clap2} ${text}`;
},
voliz: (mes, co) => {
mes.delete();
return `${emouty.lickL}${co}${emouty.lickR}`;
},
pozdrav: (_, koho) => `zdravim ${koho}`,
zhejti: (_, koho) => `${koho} je pycovina zasrana vimrdana`,
uraz: (_, koho) => `${koho} , u suck`
}
};
module.exports = exp;