Denim-Bot/src/modules/komArgs.ts
Histmy c6aa30a80c BIG COMMIT
switched to discord.js version 13
rewrite of js to ts
finally removed remporary logging
emotes are now in enum
fixed vypadni to working
2021-08-18 20:08:06 +02:00

43 lines
959 B
TypeScript

// Komandy, který pošlou jenom celArgs a random hovno
import { Message } from "discord.js";
import { emouty } from "../utils/emotes";
module.exports = {
more_komandy: {
rekni: (arg: string, mes: Message) => {
if (mes.author.bot) return "ne";
const corict = arg ?? "co mam jako rict";
mes.delete();
return corict;
},
clap: (arg: string, mes: Message) => {
mes.delete();
return `${arg} ${emouty.clap}`;
},
clap2: (arg: string, mes: Message) => {
mes.delete();
return `${emouty.clap2} ${arg}`;
},
voliz: {
als: ["voliž"],
run: (arg: string, mes: Message) => {
mes.delete();
return `${emouty.lickL}${arg}${emouty.lickR}`;
}
},
pozdrav: (arg: string) => `zdravim ${arg}`,
zhejti: (arg: string) => `${arg} je pycovina zasrana vimrdana`,
uraz: {
als: ["uraž"],
run: (arg: string) => `${arg} , u suck`
}
}
};