mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 01:13:08 +02:00
8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
const kaos = [
|
||
'(=^・・^=)',
|
||
'v(\'ω\')v',
|
||
'🐡( \'-\' 🐡 )フグパンチ!!!!',
|
||
'🖕(´・_・`)🖕'
|
||
];
|
||
|
||
export default () => kaos[Math.floor(Math.random() * kaos.length)];
|