add dectalk tts for 25k channel points (let the suffering begin)

This commit is contained in:
2025-12-08 18:14:25 +01:00
parent eb5cca7897
commit 6a71806881
8 changed files with 64 additions and 20 deletions

View 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");
},
});