-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTexticon.js
More file actions
54 lines (49 loc) · 1.69 KB
/
Texticon.js
File metadata and controls
54 lines (49 loc) · 1.69 KB
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
const FLIP_TABLES = ['(╯°□°)╯︵ ┻━┻',
'(┛◉Д◉)┛彡┻━┻',
'(ノ≧∇≦)ノ ミ ┸━┸',
'(ノಠ益ಠ)ノ彡┻━┻',
'(╯ರ ~ ರ)╯︵ ┻━┻',
'(┛ಸ_ಸ)┛彡┻━┻',
'(ノ´・ω・)ノ ミ ┸━┸',
'(ノಥ,_」ಥ)ノ彡┻━┻',
'(┛✧Д✧))┛彡┻━┻',
'┻━┻ ︵ヽ(`Д´)ノ︵ ┻━┻',
'┻━┻ ︵ ¯\(ツ)/¯ ︵ ┻━┻',
'(ノTДT)ノ ┫:・’.::・┻┻:・’.::・',
'(ノ`⌒´)ノ ┫:・’.::・┻┻:・’.::・',
'(ノ*`▽´*)ノ ⌒┫ ┻ ┣ ┳',
'┻━┻ミ\(≧ロ≦\)',
'┻━┻︵└(՞▃՞ └)',
'┻━┻︵└(´▃`└)',
'─=≡Σ((((╯°□°)╯︵ ┻━┻',
'(ノ`´)ノ ~┻━┻',
'(-_- )ノ⌒┫ ┻ ┣',
'(ノ ̄皿 ̄)ノ ⌒=== ┫',
'༼ノຈل͜ຈ༽ノ︵┻━┻',
'ヽ༼ຈل͜ຈ༽ノ⌒┫ ┻ ┣',
'ミ┻┻(ノ>。<)ノ',
'(ノ`A”)ノ ⌒┫ ┻ ┣ ┳☆(x x)',
'(ノ`m´)ノ ~┻━┻ (/o\)',
'ミ(ノ ̄^ ̄)ノ≡≡≡≡≡━┳━☆() ̄□ ̄)/'];
const SET_TABLES = ['┣ヘ(^▽^ヘ)Ξ(゚▽゚*)ノ┳━┳',
'┬──┬ ノ( ゜-゜ノ)',
'┬──┬ ¯\_(ツ)',
'(ヘ・_・)ヘ┳━┳',
'ヘ(´° □°)ヘ┳━┳',
'┣ヘ(≧∇≦ヘ)… (≧∇≦)/┳━┳'];
var GetRandomTexticon = function(texticonArray)
{
if((texticonArray) && (texticonArray.length > 0))
{
return texticonArray[Math.floor(Math.random() * texticonArray.length)];
}
return 'Unable to find texticon.';
};
exports.GetFlip = function()
{
return GetRandomTexticon(FLIP_TABLES);
};
exports.GetSet = function()
{
return GetRandomTexticon(SET_TABLES);
};