-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjohn.js
63 lines (60 loc) · 1.02 KB
/
john.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
var nouns = [
'My eyes are',
'The TV is',
'The sun is',
'I am',
'My fingers are',
'My controller is',
'My hotel room is',
'My breakfast was',
'My feet are',
'My nose is',
'Final Destination is',
'Randall is',
'My chair is',
"Hyrule's tornado is",
"Zero Suit's armor pieces are",
'Your character is',
'That MU is',
'My hands are',
'M2K is',
'PC Chris is',
'KDJ is',
'Mang0 is',
'hungrybox is',
'Hugs is',
'D1 is',
'pr0g is',
'My girlfriend is'
];
var problems = [
'too sweaty',
'too small',
'too big',
'too loud',
'too loose',
'in my eyes',
'tired',
'too bright',
'in pain',
'too stuffy',
'too late',
'unfair',
'too laggy',
'OP',
'too cold',
'too slippery',
'too cheap',
'too random',
'too far',
'too smelly',
'broken',
'too easy',
'creeping up behind me'
];
var shuffle = function (array) {
return array[Math.floor(Math.random() * array.length)];
};
module.exports = function () {
return shuffle(nouns) + ' ' + shuffle(problems) + '.';
};