jormungandr-bite/src/client/app/common/scripts/get-face.ts

11 lines
230 B
TypeScript
Raw Normal View History

2018-08-17 13:13:25 -06:00
const faces = [
2017-06-12 15:27:32 -06:00
'(=^・・^=)',
2018-06-28 01:21:35 -06:00
'v(\'ω\')v',
2018-08-14 11:01:49 -06:00
'🐡( \'-\' 🐡 )フグパンチ!!!!',
2018-08-15 14:17:00 -06:00
'🖕(´・_・`)🖕',
2018-08-17 12:55:45 -06:00
'(。><。)',
'(Δ・x・Δ)'
];
2018-08-17 13:13:25 -06:00
export default () => faces[Math.floor(Math.random() * faces.length)];