]> git.lizzy.rs Git - furrybot.git/blob - nsfw.lua
Add book command and sort help command output alphabethically
[furrybot.git] / nsfw.lua
1 local http, env, storage
2 local C = minetest.get_color_escape_sequence
3
4 function furrybot.get_ascii_genitals(name, begin, middle, ending, seed)
5         return begin .. furrybot.repeat_string(middle, furrybot.strrandom(name, seed, 2, 10)) .. ending
6 end
7
8 function furrybot.get_ascii_dick(name)
9         return minetest.rainbow(furrybot.get_ascii_genitals(name, "8", "=", "D", 31242))
10 end
11
12 function furrybot.get_ascii_boobs(name)
13         return furrybot.get_ascii_genitals(name, "E", "Ξ", "3", 31243)
14 end
15
16 function furrybot.commands.dicksize(name, target)
17         target = target or name
18         furrybot.send(furrybot.get_ascii_dick(target) .. furrybot.colors.system .. "   ← " .. furrybot.ping(target, furrybot.colors.system) .. "'s Dick", furrybot.colors.system)
19 end
20 furrybot.commands.cocksize = furrybot.commands.dicksize
21
22 function furrybot.commands.boobsize(name, target)
23         target = target or name
24         furrybot.send(furrybot.get_ascii_boobs(target) .. furrybot.colors.system .. "   ← " .. furrybot.ping(target, furrybot.colors.system) .. "'s Boobs", furrybot.colors.system)
25 end
26
27 furrybot.commands.smellfeet = furrybot.request_command(function(name, target)
28         furrybot.ping_message(target, name .. " wants to smell your feet. Type !accept to accept or !deny to deny.", furrybot.colors.system)
29 end, function(name, target)
30         furrybot.ping_message(name, " you are smelling " .. target .. "'s feet. They are kinda stinky!", furrybot.colors.roleplay)
31 end)
32
33 furrybot.commands.blowjob = furrybot.request_command(function(name, target)
34         furrybot.ping_message(target, name .. " wants to suck your dick. Type !accept to accept or !deny to deny.", furrybot.colors.system)
35 end, function(name, target)
36         furrybot.send(name .. " is sucking " .. target .. "'s cock. " .. furrybot.get_ascii_dick(name) .. " ˣoˣ ", furrybot.colors.roleplay)
37 end)
38
39 furrybot.commands.sex = furrybot.request_command(function(name, target)
40         furrybot.ping_message(target, name .. " wants to have sex with you. Type !accept to accept or !deny to deny.", furrybot.colors.system)
41 end, function(name, target)
42         furrybot.send(name .. " and " .. target .. " are having sex! OwO", furrybot.colors.roleplay)
43 end)
44 furrybot.commands.bang = furrybot.commands.sex
45 furrybot.commands.fuck = furrybot.commands.sex
46
47 furrybot.commands.cum = function(name)
48         furrybot.send(name .. " is cumming: " .. furrybot.get_ascii_dick(name) .. C("#FFFFFF") .. furrybot.repeat_string("~", math.random(1, 10)), furrybot.colors.roleplay)
49 end
50
51 return function(_http, _env, _storage)
52         http, env, storage = _http, _env, _storage
53 end