mirror of
https://gitlab.com/qwerinope/qweribot.git
synced 2026-02-04 13:56:57 +01:00
add dectalk tts for 25k channel points (let the suffering begin)
This commit is contained in:
15
src/pointRedeems/dectalk.ts
Normal file
15
src/pointRedeems/dectalk.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { sendMessage } from "lib/commandUtils";
|
||||
import PointRedeem from "pointRedeems";
|
||||
import { playDecTalk } from "web/alerts/serverFunctions";
|
||||
|
||||
export default new PointRedeem({
|
||||
name: "dectalk",
|
||||
cost: 25000,
|
||||
title: "Dectalk TTS",
|
||||
input: true,
|
||||
prompt: "I HECKIN LOVE DECTALK TTS!!!",
|
||||
async execution(msg) {
|
||||
await playDecTalk(msg.input);
|
||||
await sendMessage("LETSGO SUFFERING LETSGO");
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user