mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 11:03:09 +02:00
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
const faces = [
|
||
'(=^・・^=)',
|
||
'v(\'ω\')v',
|
||
'🐡( \'-\' 🐡 )フグパンチ!!!!',
|
||
'✌️(´・_・`)✌️',
|
||
'(。>﹏<。)',
|
||
'(Δ・x・Δ)',
|
||
'(コ`・ヘ・´ケ)'
|
||
];
|
||
|
||
export default () => faces[Math.floor(Math.random() * faces.length)];
|