mirror of
https://gitlab.com/qwerinope/qweribot.git
synced 2026-02-04 11:06:59 +01:00
17 lines
421 B
TypeScript
17 lines
421 B
TypeScript
import PointRedeem from "pointRedeems";
|
|
import { sendMessage } from "lib/commandUtils";
|
|
import { playDecTalk } from "web/alerts/serverFunctions";
|
|
|
|
export default new PointRedeem({
|
|
name: "dectalk",
|
|
cost: 25000,
|
|
title: "Dectalk TTS",
|
|
color: "#FF0000",
|
|
input: true,
|
|
prompt: "I HECKIN LOVE DECTALK TTS!!!",
|
|
async execution(msg) {
|
|
await playDecTalk(msg.input);
|
|
await sendMessage("LETSGO SUFFERING LETSGO");
|
|
},
|
|
});
|