mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-16 02:21:01 -07:00
10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
const kaos = [
|
||
'(=^・・^=)',
|
||
'v(\'ω\')v',
|
||
'🐡( \'-\' 🐡 )フグパンチ!!!!',
|
||
'🖕(´・_・`)🖕',
|
||
'(。>﹏<。)',
|
||
'(Δ・x・Δ)'
|
||
];
|
||
|
||
export default () => kaos[Math.floor(Math.random() * kaos.length)];
|