summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/get-face.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/common/scripts/get-face.ts')
-rw-r--r--src/client/app/common/scripts/get-face.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/app/common/scripts/get-face.ts b/src/client/app/common/scripts/get-face.ts
new file mode 100644
index 0000000000..79cf7a1be4
--- /dev/null
+++ b/src/client/app/common/scripts/get-face.ts
@@ -0,0 +1,10 @@
+const faces = [
+ '(=^・・^=)',
+ 'v(\'ω\')v',
+ '🐡( \'-\' 🐡 )フグパンチ!!!!',
+ '🖕(´・_・`)🖕',
+ '(。>﹏<。)',
+ '(Δ・x・Δ)'
+];
+
+export default () => faces[Math.floor(Math.random() * faces.length)];