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