-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjfss.js
100 lines (91 loc) · 2.45 KB
/
jfss.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
"use strict";
(() => {
const { MessageEmbed } = require('discord.js');
module.exports.steph = () => {
return _steph();
}
const f = [
"Spunky",
"Crispy",
"Undercooked",
"Wet Hot American",
"Moistened",
"Dirty",
"Spicy, Spicy",
"Crunchy",
"Wildly Overrated",
"Speedy",
"S-Club 7-branded",
"Jazzy",
"Dilapidated",
"Jizzy",
"Prematurely-Birthed",
"Hairy",
"Hobgoblin's",
"Spermy",
"Stinky",
"Clean Shaven",
"Mystic",
"Rectally-Inserted",
"Erotically-Awakened",
"Urine-Flavored",
"Squeaky",
"Soggy",
"Pubic",
"Big Black",
];
const l = [
"Cumdumpsters",
"Areolas",
"Uvulas",
"Undies",
"Jizzboys",
"Rectums",
"Dildos",
"Cocklobsters",
"Milkshakes",
"Lady-fingers",
"Hams",
"Bottoms",
"Fatties",
"Wizzards",
"Armpits",
"Stink Clouds",
"Pantaloons",
"Shitwipes",
"Clits",
"Monkeys",
"U2 Fans",
"Scabs",
"Fuckrags",
"Boys",
"Scrotums",
"Parasites",
"Pancakes",
"Stinkers",
];
const gifurls = [
"https://media.giphy.com/media/8Zf0nJytPx4kr9t1OD/giphy.gif",
"https://media.giphy.com/media/93YoxYHMJdej6/giphy.gif",
"https://media2.giphy.com/media/COakIiWYHRlaU/giphy.gif",
"https://media3.giphy.com/media/HhaZdWpfmc56o/giphy.gif",
"https://media3.giphy.com/media/N2wzzZavH7jFK/giphy.gif",
"https://media2.giphy.com/media/har4vdqu3xfCE/giphy.gif",
"https://media3.giphy.com/media/lSyv3ESPQvYvC/giphy.gif",
"https://media2.giphy.com/media/Gt4HdteNFL8wE/giphy.gif",
"https://media3.giphy.com/media/lSyv3ESPQvYvC/giphy.gif",
"https://i.imgur.com/CLKeAbg.mp4",
"https://i.imgur.com/DjkUJsY.gif",
"https://i.imgur.com/Ry6KPym.gif"
];
function _steph() {
const fn = Math.floor(Math.random() * f.length);
const ln = Math.floor(Math.random() * l.length);
const gn = Math.floor(Math.random() * gifurls.length);
const text = `Hello, you ${f[fn]} ${l[ln]}™`;
const embed = new MessageEmbed()
.setImage(gifurls[gn])
.setDescription(text);
return embed;
}
})();