summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/get-face.ts
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2018-08-18 04:13:25 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2018-08-18 04:13:25 +0900
commit41cf856e263f48570555513f7d3ec78370b1f6a2 (patch)
tree3b4689019eecfabc5c5c2779f7fb3d1ced3fe64e /src/client/app/common/scripts/get-face.ts
parent:art: (diff)
downloadmisskey-41cf856e263f48570555513f7d3ec78370b1f6a2.tar.gz
misskey-41cf856e263f48570555513f7d3ec78370b1f6a2.tar.bz2
misskey-41cf856e263f48570555513f7d3ec78370b1f6a2.zip
Fix #2301
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)];