This repository was archived by the owner on Jan 17, 2021. It is now read-only.
forked from Fulox/FullScreenMario-JSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaudio.js
More file actions
62 lines (62 loc) · 1.47 KB
/
Copy pathaudio.js
File metadata and controls
62 lines (62 loc) · 1.47 KB
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
FullScreenMario.prototype.settings.audio = {
"directory": "Sounds",
"fileTypes": ["mp3", "ogg"],
"statistics": {
"prefix": "FullScreenMario::AudioPlayer::",
"values": {
"volume": {
"valueDefault": 0.5,
"storeLocally": true
},
"muted": {
"valueDefault": 0,
"storeLocally": true
}
}
},
"library": {
"Sounds": [
"Bowser Falls",
"Bowser Fires",
"Break Block",
"Bump",
"Coin",
"Ending",
"Fireball",
"Firework",
"Flagpole",
"Gain Life",
"Game Over 2",
"Game Over",
"Hurry",
"Jump Small",
"Jump Super",
"Kick",
"Level Complete",
"Player Dies",
"Pause",
"Pipe",
"Power Down",
"Powerup Appears",
"Powerup",
"Stage Clear",
"Vine Emerging",
"World Clear",
"You Dead"
],
"Themes": [
"Castle",
"Overworld",
"Underwater",
"Underworld",
"Star",
"Sky",
"Hurry Castle",
"Hurry Overworld",
"Hurry Underwater",
"Hurry Underworld",
"Hurry Star",
"Hurry Sky"
]
}
}