]> git.lizzy.rs Git - furrybot.git/commitdiff
Add command that produces offensive german messages
authorElias Fleckenstein <eliasfleckenstein@web.de>
Mon, 13 Sep 2021 14:31:39 +0000 (16:31 +0200)
committerElias Fleckenstein <eliasfleckenstein@web.de>
Mon, 13 Sep 2021 14:31:39 +0000 (16:31 +0200)
random.lua

index 69fc4144f87cab7167cec9112ddbb13194d2b653..d828ac31b3f1c2ec01baf683ae6ad063c01e317c 100644 (file)
@@ -55,6 +55,28 @@ function furrybot.commands.extinct(name, species)
        end
 end
 
+function furrybot.commands.german(name)
+       local messages = {
+               "Schnauze!",
+               "Sprich Deutsch, du Hurensohn!",
+               "NEIN NEIN NEIN NEIN NEIN NEIN",
+               "Deine Mutter",
+               "Das war ein BEFEHL!",
+               "Das bleibt hier alles so wie das hier ist!",
+               "Scheißße",
+               "Digga was falsch bei dir",
+               "Lass mich deine Arschfalten sehen",
+               "Krieg mal deinen Ödipuskomplex unter Kontrolle",
+               "Meine Nudel ist 30cm lang und al dente",
+               "Wie die Nase eines Mannes, so auch sein Johannes.",
+       }
+
+       local msg = messages[math.random(#messages)]
+       local stripe = math.floor(#msg / 3)
+
+       furrybot.ping_message(name, msg:sub(1, stripe) .. C("red") .. msg:sub(stripe + 1, stripe * 2) .. C("yellow") .. msg:sub(stripe * 2 + 1, #msg), C("black"))
+end
+
 return function(_http, _env, _storage)
        http, env, storage = _http, _env, _storage
 end