pingthings 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/packs/mduel-retro/manifest.json +58 -0
- package/packs/mduel-retro/sounds/boots.ogg +0 -0
- package/packs/mduel-retro/sounds/bullet-reflect.ogg +0 -0
- package/packs/mduel-retro/sounds/explosion.ogg +0 -0
- package/packs/mduel-retro/sounds/hook-hit.ogg +0 -0
- package/packs/mduel-retro/sounds/lightning.ogg +0 -0
- package/packs/mduel-retro/sounds/menu-cancel.ogg +0 -0
- package/packs/mduel-retro/sounds/menu-move.ogg +0 -0
- package/packs/mduel-retro/sounds/menu-ok.ogg +0 -0
- package/packs/mduel-retro/sounds/mine-drop.ogg +0 -0
- package/packs/mduel-retro/sounds/pickup.ogg +0 -0
- package/packs/mduel-retro/sounds/platform-explode.ogg +0 -0
- package/packs/mduel-retro/sounds/skull-pickup.ogg +0 -0
- package/packs/mduel-retro/sounds/skull.ogg +0 -0
- package/packs/mduel-retro/sounds/spawn.ogg +0 -0
- package/packs/mduel-retro/sounds/splash-big.ogg +0 -0
- package/packs/mduel-retro/sounds/splash-small.ogg +0 -0
- package/packs/mduel-retro/sounds/teleport.ogg +0 -0
- package/packs/mduel-retro/sounds/throw.ogg +0 -0
- package/packs/office-classic/manifest.json +3 -1
- package/packs/office-classic/sounds/clock-tick.ogg +0 -0
- package/packs/serene-wind/manifest.json +52 -0
- package/packs/serene-wind/sounds/breeze-soft-1.ogg +0 -0
- package/packs/serene-wind/sounds/breeze-soft-2.ogg +0 -0
- package/packs/serene-wind/sounds/breeze-soft-3.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-1-20s.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-1-45s.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-1-5s.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-1-70s.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-2-20s.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-2-45s.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-2-5s.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-2-70s.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-3-20s.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-3-45s.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-3-5s.ogg +0 -0
- package/packs/serene-wind/sounds/wind-chime-3-70s.ogg +0 -0
package/package.json
CHANGED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mduel-retro",
|
|
3
|
+
"description": "Marshmallow Duel — retro combat, pickups, explosions, and teleports",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"license": "GPL-2.0",
|
|
6
|
+
"credits": "Liam Alexander / pospi (https://github.com/pospi/mduel-ds) — Marshmallow Duel DS",
|
|
7
|
+
"category": "retro",
|
|
8
|
+
"sounds": [
|
|
9
|
+
"sounds/boots.ogg",
|
|
10
|
+
"sounds/bullet-reflect.ogg",
|
|
11
|
+
"sounds/explosion.ogg",
|
|
12
|
+
"sounds/hook-hit.ogg",
|
|
13
|
+
"sounds/lightning.ogg",
|
|
14
|
+
"sounds/menu-cancel.ogg",
|
|
15
|
+
"sounds/menu-move.ogg",
|
|
16
|
+
"sounds/menu-ok.ogg",
|
|
17
|
+
"sounds/mine-drop.ogg",
|
|
18
|
+
"sounds/pickup.ogg",
|
|
19
|
+
"sounds/platform-explode.ogg",
|
|
20
|
+
"sounds/skull-pickup.ogg",
|
|
21
|
+
"sounds/skull.ogg",
|
|
22
|
+
"sounds/spawn.ogg",
|
|
23
|
+
"sounds/splash-big.ogg",
|
|
24
|
+
"sounds/splash-small.ogg",
|
|
25
|
+
"sounds/teleport.ogg",
|
|
26
|
+
"sounds/throw.ogg"
|
|
27
|
+
],
|
|
28
|
+
"events": {
|
|
29
|
+
"done": [
|
|
30
|
+
"sounds/pickup.ogg",
|
|
31
|
+
"sounds/menu-ok.ogg",
|
|
32
|
+
"sounds/skull-pickup.ogg",
|
|
33
|
+
"sounds/boots.ogg"
|
|
34
|
+
],
|
|
35
|
+
"permission": [
|
|
36
|
+
"sounds/menu-move.ogg",
|
|
37
|
+
"sounds/spawn.ogg",
|
|
38
|
+
"sounds/teleport.ogg"
|
|
39
|
+
],
|
|
40
|
+
"complete": [
|
|
41
|
+
"sounds/lightning.ogg",
|
|
42
|
+
"sounds/splash-big.ogg",
|
|
43
|
+
"sounds/platform-explode.ogg"
|
|
44
|
+
],
|
|
45
|
+
"error": [
|
|
46
|
+
"sounds/explosion.ogg",
|
|
47
|
+
"sounds/mine-drop.ogg",
|
|
48
|
+
"sounds/skull.ogg",
|
|
49
|
+
"sounds/menu-cancel.ogg"
|
|
50
|
+
],
|
|
51
|
+
"blocked": [
|
|
52
|
+
"sounds/bullet-reflect.ogg",
|
|
53
|
+
"sounds/hook-hit.ogg",
|
|
54
|
+
"sounds/throw.ogg",
|
|
55
|
+
"sounds/splash-small.ogg"
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"credits": "rubberduck (https://opengameart.org/content/100-cc0-sfx)",
|
|
7
7
|
"category": "classic",
|
|
8
8
|
"sounds": [
|
|
9
|
+
"sounds/clock-tick.ogg",
|
|
9
10
|
"sounds/desk-knock.ogg",
|
|
10
11
|
"sounds/door-close-1.ogg",
|
|
11
12
|
"sounds/door-close-2.ogg",
|
|
@@ -36,7 +37,8 @@
|
|
|
36
37
|
"sounds/drawer-open.ogg",
|
|
37
38
|
"sounds/heavy-door.ogg",
|
|
38
39
|
"sounds/item-place.ogg",
|
|
39
|
-
"sounds/key-turn-1.ogg"
|
|
40
|
+
"sounds/key-turn-1.ogg",
|
|
41
|
+
"sounds/clock-tick.ogg"
|
|
40
42
|
],
|
|
41
43
|
"complete": [
|
|
42
44
|
"sounds/key-turn-2.ogg",
|
|
Binary file
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "serene-wind",
|
|
3
|
+
"description": "Wind chimes and gentle breezes — peaceful air sounds",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"license": "CC0-1.0",
|
|
6
|
+
"credits": "pmiller (https://opengameart.org/content/wind-chimes) and rubberduck (https://opengameart.org)",
|
|
7
|
+
"category": "wind",
|
|
8
|
+
"sounds": [
|
|
9
|
+
"sounds/breeze-soft-1.ogg",
|
|
10
|
+
"sounds/breeze-soft-2.ogg",
|
|
11
|
+
"sounds/breeze-soft-3.ogg",
|
|
12
|
+
"sounds/wind-chime-1-20s.ogg",
|
|
13
|
+
"sounds/wind-chime-1-45s.ogg",
|
|
14
|
+
"sounds/wind-chime-1-5s.ogg",
|
|
15
|
+
"sounds/wind-chime-1-70s.ogg",
|
|
16
|
+
"sounds/wind-chime-2-20s.ogg",
|
|
17
|
+
"sounds/wind-chime-2-45s.ogg",
|
|
18
|
+
"sounds/wind-chime-2-5s.ogg",
|
|
19
|
+
"sounds/wind-chime-2-70s.ogg",
|
|
20
|
+
"sounds/wind-chime-3-20s.ogg",
|
|
21
|
+
"sounds/wind-chime-3-45s.ogg",
|
|
22
|
+
"sounds/wind-chime-3-5s.ogg",
|
|
23
|
+
"sounds/wind-chime-3-70s.ogg"
|
|
24
|
+
],
|
|
25
|
+
"events": {
|
|
26
|
+
"done": [
|
|
27
|
+
"sounds/wind-chime-1-5s.ogg",
|
|
28
|
+
"sounds/wind-chime-2-5s.ogg",
|
|
29
|
+
"sounds/wind-chime-3-5s.ogg"
|
|
30
|
+
],
|
|
31
|
+
"permission": [
|
|
32
|
+
"sounds/wind-chime-1-20s.ogg",
|
|
33
|
+
"sounds/wind-chime-2-20s.ogg",
|
|
34
|
+
"sounds/wind-chime-3-20s.ogg"
|
|
35
|
+
],
|
|
36
|
+
"complete": [
|
|
37
|
+
"sounds/wind-chime-1-45s.ogg",
|
|
38
|
+
"sounds/wind-chime-2-45s.ogg",
|
|
39
|
+
"sounds/wind-chime-3-45s.ogg"
|
|
40
|
+
],
|
|
41
|
+
"error": [
|
|
42
|
+
"sounds/breeze-soft-1.ogg",
|
|
43
|
+
"sounds/breeze-soft-2.ogg",
|
|
44
|
+
"sounds/breeze-soft-3.ogg"
|
|
45
|
+
],
|
|
46
|
+
"blocked": [
|
|
47
|
+
"sounds/wind-chime-1-70s.ogg",
|
|
48
|
+
"sounds/wind-chime-2-70s.ogg",
|
|
49
|
+
"sounds/wind-chime-3-70s.ogg"
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|