-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsounds.js
116 lines (116 loc) ยท 2.63 KB
/
sounds.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/** @returns {SoundData[]} */
export default [
{
emoji: '๐',
name: 'Claps',
src: await import('./media/119029__joedeshon__polite-applause-09.ogg'),
animation: 'tada',
},
{
emoji: '๐',
name: 'Cheers',
src: await import('./media/337000__tim-kahn__cheer-01.ogg'),
animation: 'shakeY',
},
{
emoji: '๐',
name: 'Laughs',
src: await import('./media/82385__benboncan__more-amusing.ogg'),
animation: 'shakeY',
},
{
emoji: '๐ฅ',
name: 'Drum roll',
src: await import(
'./media/drum_roll_sound_effect_extended_high_quality_mzAfTmC3It0.ogg'
),
animation: 'wobble',
},
{
emoji: '๐',
name: 'Ahhh!',
src: await import('./media/336998__tim-kahn__awww-01.ogg'),
animation: 'pulse',
},
{
emoji: '๐',
name: 'Ohhh!',
src: await import('./media/37234__shades__crowd-ahh-2.ogg'),
animation: 'pulse',
},
{
emoji: '๐ค',
name: 'Boo!',
src: await import('./media/336997__tim-kahn__boo-01.ogg'),
animation: 'pulse',
},
{
emoji: '๐คก',
name: 'Badum tss!',
src: await import('./media/200254__rctperson85__badum-chhhhh.mp3'),
animation: 'jackInTheBox',
},
{
emoji: '๐ฆ',
name: '...',
src: await import('./media/121511__damonmensch__cricket-sound.mp3'),
},
{
emoji: '๐ค',
name: 'Hmmmm',
src: await import(
'./media/469603__bolkmar__voice-male-humming-thinking.ogg'
),
animation: 'headShake',
},
{
emoji: '๐ฐ',
name: 'Tip',
src: await import('./media/tip_sound_tiny_pQoarCfAi40.ogg'),
animation: 'heartBeat',
},
{
emoji: '๐ฑ',
name: 'Wilhelm',
src: await import('./media/64939__syna-max__wilhelm-scream.ogg'),
animation: 'bounce',
},
{
emoji: '๐งน',
name: 'Vacuum',
src: await import(
'./media/430632__inspectorj__vacuum-cleaner-on-idle-off-close-a.ogg'
),
animation: 'rotateInUpRight',
},
{
emoji: '๐คฎ',
name: 'Puke',
src: await import('./media/469888__georgisound__puking-and-diarrhea.ogg'),
animation: 'rotateInUpLeft',
},
{
emoji: '๐คง',
name: 'Sneeze',
src: await import('./media/505250__jpbillingsleyjr__a-man-sneezing.ogg'),
animation: 'headShake',
},
{
emoji: '๐ถ',
name: 'Cooing',
src: await import('./media/baby_cooing.ogg'),
animation: 'headShake',
},
{
emoji: '๐',
name: 'Wee Woo',
src: await import('./media/469413__sofialomba__ambulance.ogg'),
animation: 'lightSpeedInRight',
},
{
emoji: '๐ต',
name: 'HA!',
src: await import('./media/458396__befig__monkey-cry.ogg'),
animation: 'flash',
},
]