-
Notifications
You must be signed in to change notification settings - Fork 0
/
sounds.ron
67 lines (66 loc) · 948 Bytes
/
sounds.ron
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
(
default_img: "default.png",
name: "Miscellaneous sounds",
sounds: [
(
name: "WAH",
wav: "waluigi_wah.mp3",
img: None
),
(
name: "Zeus!",
wav: "zeus.mp3",
img: None
),
(
name: "Our anthem",
wav: "National Anthem of USSR.mp3",
img: Some("USSR.jpg")
),
(
name: "Enthusiasm",
wav: "enthusiasm.mp3",
img: None
),
(
name: "Just do it",
wav: "just do it.mp3",
img: None
),
(
name: "Mio honda",
wav: "MioHonda.wav",
img: None
),
(
name: "Fix you",
wav: "FixYou.wav",
img: None
),
(
name: "Never gonna",
wav: "NeverGonna.wav",
img: None
),
(
name: "You know the rules",
wav: "YouKnowTheRules.wav",
img: None
),
(
name: "Rick roll start",
wav: "RICKROLL_INIT.wav",
img: None
),
(
name: "SANS",
wav: "SANS.mp3",
img: None
),
(
name: "Giorno's Theme",
wav: "giorno's theme.wav",
img: None
)
]
)