summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/get-face.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-08-19 00:55:07 +0900
committerGitHub <noreply@github.com>2018-08-19 00:55:07 +0900
commit0e45d0d47fca2f9cf2caf87a25442d3090bea2fb (patch)
tree4591218074ce73b4f5d3be7582d76a170dc1b672 /src/client/app/common/scripts/get-face.ts
parentNew translations ja.yml (Japanese (Kansai-ben)) (diff)
parentMerge pull request #2330 from syuilo/patch (diff)
downloadmisskey-0e45d0d47fca2f9cf2caf87a25442d3090bea2fb.tar.gz
misskey-0e45d0d47fca2f9cf2caf87a25442d3090bea2fb.tar.bz2
misskey-0e45d0d47fca2f9cf2caf87a25442d3090bea2fb.zip
Merge branch 'master' into l10n_master
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)];