pingthings 1.1.0 → 1.2.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.
Files changed (66) hide show
  1. package/LICENSE +15 -0
  2. package/README.md +40 -0
  3. package/package.json +1 -1
  4. package/packs/nature-animals/openpeon.json +107 -0
  5. package/packs/nature-forest/manifest.json +13 -5
  6. package/packs/nature-forest/openpeon.json +102 -0
  7. package/packs/nature-forest/sounds/pebbles-1.ogg +0 -0
  8. package/packs/nature-forest/sounds/pebbles-2.ogg +0 -0
  9. package/packs/nature-forest/sounds/pebbles-3.ogg +0 -0
  10. package/packs/nature-forest/sounds/wood-creak-1.ogg +0 -0
  11. package/packs/nature-night/openpeon.json +102 -0
  12. package/packs/nature-ocean/manifest.json +18 -11
  13. package/packs/nature-ocean/openpeon.json +92 -0
  14. package/packs/nature-ocean/sounds/ambient-shore.ogg +0 -0
  15. package/packs/nature-ocean/sounds/splash.ogg +0 -0
  16. package/packs/nature-ocean/sounds/tide-1.ogg +0 -0
  17. package/packs/nature-ocean/sounds/tide-2.ogg +0 -0
  18. package/packs/nature-weather/manifest.json +18 -10
  19. package/packs/nature-weather/openpeon.json +97 -0
  20. package/packs/nature-weather/sounds/breeze-1.ogg +0 -0
  21. package/packs/nature-weather/sounds/breeze-2.ogg +0 -0
  22. package/packs/nature-weather/sounds/breeze-3.ogg +0 -0
  23. package/packs/nature-weather/sounds/real-thunder.ogg +0 -0
  24. package/packs/office-classic/manifest.json +10 -4
  25. package/packs/office-classic/openpeon.json +107 -0
  26. package/packs/office-classic/sounds/heavy-door.ogg +0 -0
  27. package/packs/office-classic/sounds/item-place.ogg +0 -0
  28. package/packs/office-classic/sounds/lock-open.ogg +0 -0
  29. package/packs/office-digital/manifest.json +12 -6
  30. package/packs/office-digital/openpeon.json +107 -0
  31. package/packs/office-digital/sounds/soft-switch-1.ogg +0 -0
  32. package/packs/office-digital/sounds/soft-switch-2.ogg +0 -0
  33. package/packs/office-digital/sounds/soft-switch-3.ogg +0 -0
  34. package/packs/office-mechanical/manifest.json +10 -4
  35. package/packs/office-mechanical/openpeon.json +107 -0
  36. package/packs/office-mechanical/sounds/power-switch.ogg +0 -0
  37. package/packs/office-mechanical/sounds/whir-1.ogg +0 -0
  38. package/packs/office-mechanical/sounds/whir-2.ogg +0 -0
  39. package/packs/office-minimal/manifest.json +14 -8
  40. package/packs/office-minimal/openpeon.json +107 -0
  41. package/packs/office-minimal/sounds/click-soft-1.ogg +0 -0
  42. package/packs/office-minimal/sounds/click-soft-2.ogg +0 -0
  43. package/packs/office-minimal/sounds/mouse-click.ogg +0 -0
  44. package/packs/serene-bells/manifest.json +17 -8
  45. package/packs/serene-bells/openpeon.json +102 -0
  46. package/packs/serene-bells/sounds/glass-chime-1.ogg +0 -0
  47. package/packs/serene-bells/sounds/glass-chime-2.ogg +0 -0
  48. package/packs/serene-bells/sounds/glass-chime-3.ogg +0 -0
  49. package/packs/serene-bells/sounds/metal-chime-1.ogg +0 -0
  50. package/packs/serene-bells/sounds/metal-chime-2.ogg +0 -0
  51. package/packs/serene-tones/manifest.json +21 -10
  52. package/packs/serene-tones/openpeon.json +97 -0
  53. package/packs/serene-tones/sounds/ambient-1.ogg +0 -0
  54. package/packs/serene-tones/sounds/ambient-2.ogg +0 -0
  55. package/packs/serene-tones/sounds/ambient-3.ogg +0 -0
  56. package/packs/serene-tones/sounds/soft-tone-1.ogg +0 -0
  57. package/packs/serene-tones/sounds/soft-tone-2.ogg +0 -0
  58. package/packs/serene-tones/sounds/soft-tone-3.ogg +0 -0
  59. package/packs/serene-water/manifest.json +14 -9
  60. package/packs/serene-water/openpeon.json +97 -0
  61. package/packs/serene-water/sounds/flowing-1.ogg +0 -0
  62. package/packs/serene-water/sounds/flowing-2.ogg +0 -0
  63. package/packs/serene-water/sounds/flowing-3.ogg +0 -0
  64. package/src/cli/browse.js +4 -1
  65. package/src/cli/completions.js +2 -1
  66. package/src/cli/theme.js +45 -1
package/LICENSE CHANGED
@@ -66,3 +66,18 @@ kenney-impacts: Impact Sounds
66
66
 
67
67
  droid-announcer: DROID Video Game Announcer
68
68
  Copyright VoiceBosch — CC-BY-SA 4.0
69
+
70
+ serene-bells, serene-water, serene-tones:
71
+ Copyright rubberduck (https://opengameart.org/content/100-cc0-sfx) — CC0
72
+
73
+ office-classic, office-mechanical:
74
+ Copyright rubberduck (https://opengameart.org/content/100-cc0-sfx) — CC0
75
+
76
+ office-minimal, office-digital:
77
+ Copyright Kenney (kenney.nl) — CC0
78
+
79
+ nature-animals, nature-night:
80
+ Copyright rubberduck (https://opengameart.org/content/80-cc0-creature-sfx) — CC0
81
+
82
+ nature-forest, nature-ocean, nature-weather:
83
+ Copyright rubberduck (https://opengameart.org) — CC0
package/README.md CHANGED
@@ -275,6 +275,42 @@ Female fighting game announcer by **Kenney** — 18 sounds including "flawless v
275
275
  ### retro-movement
276
276
  8-bit portals, doors, jumps, and bleeps — 18 sounds from the SubspaceAudio collection. License: CC0.
277
277
 
278
+ ### serene-bells
279
+ Temple bells, gongs, and crystal chimes — 13 peaceful sounds for zen notifications. License: CC0.
280
+
281
+ ### serene-water
282
+ Water drops, drips, and gentle splashes — 12 calming water sounds. License: CC0.
283
+
284
+ ### serene-tones
285
+ Soft metallic tones, chimes, and resonances — 12 meditative notification sounds. License: CC0.
286
+
287
+ ### office-minimal
288
+ Subtle clicks, ticks, and toggles — 15 workplace-appropriate notification sounds. License: CC0.
289
+
290
+ ### office-digital
291
+ Digital pings, alerts, and ascending chimes — 15 modern notification tones. License: CC0.
292
+
293
+ ### office-classic
294
+ Keys, switches, paper, and desk sounds — 15 classic office foley. License: CC0.
295
+
296
+ ### office-mechanical
297
+ Machines, stamps, taps, and tools — 15 satisfying mechanical sounds. License: CC0.
298
+
299
+ ### nature-animals
300
+ Barks, chirps, howls, and creature calls — 15 animal notification sounds. License: CC0.
301
+
302
+ ### nature-night
303
+ Nocturnal sounds — owls, crickets, distant calls — 14 night-time notifications. License: CC0.
304
+
305
+ ### nature-forest
306
+ Twigs snapping, birds singing, streams babbling — 14 forest sounds. License: CC0.
307
+
308
+ ### nature-ocean
309
+ Waves, bubbles, and ocean currents — 11 coastal notification sounds. License: CC0.
310
+
311
+ ### nature-weather
312
+ Thunder, wind gusts, rain drops, and storms — 12 dramatic weather sounds. License: CC0.
313
+
278
314
  ## Custom packs
279
315
 
280
316
  Place packs in `~/.config/pingthings/packs/<pack-name>/`:
@@ -342,6 +378,10 @@ pingthings theme reset # back to defaults
342
378
  | `arcade` | Full 8-bit arcade experience |
343
379
  | `tabletop` | Tavern sounds — RPG foley + material impacts |
344
380
  | `tournament` | Fighting game tournament — multiple announcers |
381
+ | `zen` | Calm and centered — bells, water, soft tones |
382
+ | `corporate` | Workplace appropriate — clean clicks and subtle pings |
383
+ | `outdoors` | Bring nature inside — birds, waves, weather |
384
+ | `nightshift` | Late night coding — crickets, owls, soft tones |
345
385
  | `chaos` | Different pack for every event — maximum variety |
346
386
 
347
387
  ## Tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pingthings",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "Notification sounds for Claude Code and other CLI tools",
5
5
  "type": "module",
6
6
  "license": "GPL-2.0",
@@ -0,0 +1,107 @@
1
+ {
2
+ "cesp_version": "1.0",
3
+ "name": "nature-animals",
4
+ "display_name": "Barks, chirps, howls, and creature calls",
5
+ "version": "1.0.0",
6
+ "license": "CC0-1.0",
7
+ "author": {
8
+ "name": "rubberduck (https://opengameart.org/content/80-cc0-creature-sfx)"
9
+ },
10
+ "categories": {
11
+ "task.acknowledge": {
12
+ "sounds": [
13
+ {
14
+ "file": "sounds/bark-1.ogg",
15
+ "label": "bark 1",
16
+ "sha256": "688db74bc42482928d38d51d5371d5d72e5b9a3fa99b45f18a58eca8230d92ba"
17
+ },
18
+ {
19
+ "file": "sounds/bark-2.ogg",
20
+ "label": "bark 2",
21
+ "sha256": "02449e89169aaac8a38aaf4881a04313ba052d0b80a95845ff30a2208327bf63"
22
+ },
23
+ {
24
+ "file": "sounds/chirp-1.ogg",
25
+ "label": "chirp 1",
26
+ "sha256": "c2789e44b90fb432c9c28f2b67c45c3f87798473c03948648fb031dfe50664dc"
27
+ },
28
+ {
29
+ "file": "sounds/chirp-2.ogg",
30
+ "label": "chirp 2",
31
+ "sha256": "5e8b49d3d19d634db30da77fbdababfc8b5deeae7556c415cbb4c1342edc06c3"
32
+ }
33
+ ]
34
+ },
35
+ "input.required": {
36
+ "sounds": [
37
+ {
38
+ "file": "sounds/chirp-3.ogg",
39
+ "label": "chirp 3",
40
+ "sha256": "8dbc37bda5032a4ce19a7f41a28e4542fe86aa04f4f4a074031caf7dcef1db33"
41
+ },
42
+ {
43
+ "file": "sounds/coo.ogg",
44
+ "label": "coo",
45
+ "sha256": "3eba8963edf60b3ef5d81d5581cc2008b00fa7e48d41019ba99f6007f956bc1b"
46
+ },
47
+ {
48
+ "file": "sounds/cricket-1.ogg",
49
+ "label": "cricket 1",
50
+ "sha256": "d89731829ccfb3df1274ecbdff692f29a79f01a4aec2584b4cd052f6a594d7b5"
51
+ }
52
+ ]
53
+ },
54
+ "task.complete": {
55
+ "sounds": [
56
+ {
57
+ "file": "sounds/cricket-2.ogg",
58
+ "label": "cricket 2",
59
+ "sha256": "4724797404fd0dff99bd4eaea8dd8b311b9d6909f027251f802a9a3e168ca5d9"
60
+ },
61
+ {
62
+ "file": "sounds/howl.ogg",
63
+ "label": "howl",
64
+ "sha256": "4f7119ffb4c8144edbb12b17459b643d44d485ae29ab67a996befce6932e65b6"
65
+ },
66
+ {
67
+ "file": "sounds/insect-1.ogg",
68
+ "label": "insect 1",
69
+ "sha256": "cb71a0e6b1a94e395a79f4a3b039113016939d1797cca057a0c2abd0342a6487"
70
+ }
71
+ ]
72
+ },
73
+ "task.error": {
74
+ "sounds": [
75
+ {
76
+ "file": "sounds/insect-2.ogg",
77
+ "label": "insect 2",
78
+ "sha256": "816988cb7abe1ca7ed2a156836d240523e1c0d62b96df8aba78a4e4d5acf4337"
79
+ },
80
+ {
81
+ "file": "sounds/owl-hoot.ogg",
82
+ "label": "owl hoot",
83
+ "sha256": "86d9125e32b6668e330aa94e78b6c6088fa4b30ac00d3f54959e5945b215e06a"
84
+ },
85
+ {
86
+ "file": "sounds/peep-1.ogg",
87
+ "label": "peep 1",
88
+ "sha256": "0d97b4fe83885f4234a70aaa3d9a67dddaf20f3404ef15db7e1b341ebdd5e0f2"
89
+ }
90
+ ]
91
+ },
92
+ "resource.limit": {
93
+ "sounds": [
94
+ {
95
+ "file": "sounds/peep-2.ogg",
96
+ "label": "peep 2",
97
+ "sha256": "49071b56e79008168ff95b75408b9e427da1b609d7cd898626f420665fe8d1e2"
98
+ },
99
+ {
100
+ "file": "sounds/snort.ogg",
101
+ "label": "snort",
102
+ "sha256": "9d6835065923ddfef498c452aa5ba0ead88d8870f311b0af4f1f09dc8e4703fd"
103
+ }
104
+ ]
105
+ }
106
+ }
107
+ }
@@ -15,11 +15,15 @@
15
15
  "sounds/leaf-rustle-1.ogg",
16
16
  "sounds/leaf-rustle-2.ogg",
17
17
  "sounds/leaf-rustle-3.ogg",
18
+ "sounds/pebbles-1.ogg",
19
+ "sounds/pebbles-2.ogg",
20
+ "sounds/pebbles-3.ogg",
18
21
  "sounds/songbird.ogg",
19
22
  "sounds/stream-splash-1.ogg",
20
23
  "sounds/stream-splash-2.ogg",
21
24
  "sounds/twig-snap-1.ogg",
22
- "sounds/twig-snap-2.ogg"
25
+ "sounds/twig-snap-2.ogg",
26
+ "sounds/wood-creak-1.ogg"
23
27
  ],
24
28
  "events": {
25
29
  "done": [
@@ -31,20 +35,24 @@
31
35
  "permission": [
32
36
  "sounds/critter-1.ogg",
33
37
  "sounds/critter-2.ogg",
34
- "sounds/leaf-rustle-1.ogg"
38
+ "sounds/leaf-rustle-1.ogg",
39
+ "sounds/leaf-rustle-2.ogg"
35
40
  ],
36
41
  "complete": [
37
- "sounds/leaf-rustle-2.ogg",
38
42
  "sounds/leaf-rustle-3.ogg",
39
- "sounds/songbird.ogg"
43
+ "sounds/pebbles-1.ogg",
44
+ "sounds/pebbles-2.ogg",
45
+ "sounds/pebbles-3.ogg"
40
46
  ],
41
47
  "error": [
48
+ "sounds/songbird.ogg",
42
49
  "sounds/stream-splash-1.ogg",
43
50
  "sounds/stream-splash-2.ogg",
44
51
  "sounds/twig-snap-1.ogg"
45
52
  ],
46
53
  "blocked": [
47
- "sounds/twig-snap-2.ogg"
54
+ "sounds/twig-snap-2.ogg",
55
+ "sounds/wood-creak-1.ogg"
48
56
  ]
49
57
  }
50
58
  }
@@ -0,0 +1,102 @@
1
+ {
2
+ "cesp_version": "1.0",
3
+ "name": "nature-forest",
4
+ "display_name": "Twigs snapping, birds singing, streams babbling",
5
+ "version": "1.0.0",
6
+ "license": "CC0-1.0",
7
+ "author": {
8
+ "name": "rubberduck (https://opengameart.org)"
9
+ },
10
+ "categories": {
11
+ "task.acknowledge": {
12
+ "sounds": [
13
+ {
14
+ "file": "sounds/bird-1.ogg",
15
+ "label": "bird 1",
16
+ "sha256": "2307f1c474553d2e4df3bbcb33d639ba07151a20f4ec0a1318e123adfeaf978a"
17
+ },
18
+ {
19
+ "file": "sounds/bird-2.ogg",
20
+ "label": "bird 2",
21
+ "sha256": "259e66edd549cdd9f854f8773f0c80bba134d8dc5cd958e88a3ac138b0e1c2b5"
22
+ },
23
+ {
24
+ "file": "sounds/bird-3.ogg",
25
+ "label": "bird 3",
26
+ "sha256": "bf5fdb97f8e50d0b21589f90a3c012d58317a3b6c9d48b10df39d8ef6295714c"
27
+ },
28
+ {
29
+ "file": "sounds/branch-crack.ogg",
30
+ "label": "branch crack",
31
+ "sha256": "a92620a05a9024a0a037039551d611664d5787ac2b1aeab860217900ddd8f21b"
32
+ }
33
+ ]
34
+ },
35
+ "input.required": {
36
+ "sounds": [
37
+ {
38
+ "file": "sounds/critter-1.ogg",
39
+ "label": "critter 1",
40
+ "sha256": "3eb76fe26451b35f331b512fdcbb94283b2ebcb91ee82b99ebc7968dd625fa85"
41
+ },
42
+ {
43
+ "file": "sounds/critter-2.ogg",
44
+ "label": "critter 2",
45
+ "sha256": "dc44dbb83c6a29568a8e47e67e2ad50569097296c7f9b2aace72d9fa340720d7"
46
+ },
47
+ {
48
+ "file": "sounds/leaf-rustle-1.ogg",
49
+ "label": "leaf rustle 1",
50
+ "sha256": "4903171ea0798ea43966c3307c37f604f84cc385ee533686221a31ff1397914c"
51
+ }
52
+ ]
53
+ },
54
+ "task.complete": {
55
+ "sounds": [
56
+ {
57
+ "file": "sounds/leaf-rustle-2.ogg",
58
+ "label": "leaf rustle 2",
59
+ "sha256": "c58d89c21f0f1ded6ff89daa77efbbdcaf9fc9fbe8bb5e269f9d39837e0016a8"
60
+ },
61
+ {
62
+ "file": "sounds/leaf-rustle-3.ogg",
63
+ "label": "leaf rustle 3",
64
+ "sha256": "05d99d989748493195ddbcf24f239bed13390440444813fa62f54ccb751a10a1"
65
+ },
66
+ {
67
+ "file": "sounds/songbird.ogg",
68
+ "label": "songbird",
69
+ "sha256": "4b8516ec59eb813e524b1ab08828557be999981757185f6bf302713368ab44fd"
70
+ }
71
+ ]
72
+ },
73
+ "task.error": {
74
+ "sounds": [
75
+ {
76
+ "file": "sounds/stream-splash-1.ogg",
77
+ "label": "stream splash 1",
78
+ "sha256": "352eb6257d3a6068df145350c62feec989f80e0d52d3b30d7375c700fabda6fa"
79
+ },
80
+ {
81
+ "file": "sounds/stream-splash-2.ogg",
82
+ "label": "stream splash 2",
83
+ "sha256": "11e4f94e58223f7d98eff8db2db7bd17d75054c2b7771e6d879fb55fd7f52a91"
84
+ },
85
+ {
86
+ "file": "sounds/twig-snap-1.ogg",
87
+ "label": "twig snap 1",
88
+ "sha256": "f544971c6a8d01bceb270004c8e228a78c90ca14545fc38691ffcc43ce149cba"
89
+ }
90
+ ]
91
+ },
92
+ "resource.limit": {
93
+ "sounds": [
94
+ {
95
+ "file": "sounds/twig-snap-2.ogg",
96
+ "label": "twig snap 2",
97
+ "sha256": "786952cae782a131ea1e6c9ee3a881d0ce0ca9da3bc75e7cfac27ddeeb275d87"
98
+ }
99
+ ]
100
+ }
101
+ }
102
+ }
@@ -0,0 +1,102 @@
1
+ {
2
+ "cesp_version": "1.0",
3
+ "name": "nature-night",
4
+ "display_name": "Nocturnal sounds — owls, crickets, distant calls",
5
+ "version": "1.0.0",
6
+ "license": "CC0-1.0",
7
+ "author": {
8
+ "name": "rubberduck (https://opengameart.org/content/80-cc0-creature-sfx)"
9
+ },
10
+ "categories": {
11
+ "task.acknowledge": {
12
+ "sounds": [
13
+ {
14
+ "file": "sounds/distant-animal-1.ogg",
15
+ "label": "distant animal 1",
16
+ "sha256": "efdd216241b56090bb8a73a5bb0fa9af70a6924f367b81e77271d1ec1b2b8e39"
17
+ },
18
+ {
19
+ "file": "sounds/distant-animal-2.ogg",
20
+ "label": "distant animal 2",
21
+ "sha256": "5410a6ccadd8e304b4f64953dc0a41bc71600078547f570154485cbf629a9ac3"
22
+ },
23
+ {
24
+ "file": "sounds/eerie-1.ogg",
25
+ "label": "eerie 1",
26
+ "sha256": "5a968585a6c4e35a76b16455bf74e2ec05fae646b383c8b80775249b67a069e1"
27
+ },
28
+ {
29
+ "file": "sounds/eerie-2.ogg",
30
+ "label": "eerie 2",
31
+ "sha256": "edbae4da03a23f88455b39909238805bee777a2124e335c56bcfeb8651519158"
32
+ }
33
+ ]
34
+ },
35
+ "input.required": {
36
+ "sounds": [
37
+ {
38
+ "file": "sounds/night-call-1.ogg",
39
+ "label": "night call 1",
40
+ "sha256": "4259b22f3679da8998dc317eb742d5da8a8c96ad2558339eccde33e6ead9f35b"
41
+ },
42
+ {
43
+ "file": "sounds/night-call-2.ogg",
44
+ "label": "night call 2",
45
+ "sha256": "dcfef61112d39ecc8d86c7692b050b370764c936cadcdbc9115b5a21d15cf899"
46
+ },
47
+ {
48
+ "file": "sounds/night-cricket-1.ogg",
49
+ "label": "night cricket 1",
50
+ "sha256": "1f78d3f1071eb13f59cafe0d7ee2c60ad0710c1fa21479d33d2e5b34f5c09b39"
51
+ }
52
+ ]
53
+ },
54
+ "task.complete": {
55
+ "sounds": [
56
+ {
57
+ "file": "sounds/night-cricket-2.ogg",
58
+ "label": "night cricket 2",
59
+ "sha256": "718eeb36fc9788392bbc9131057070ae4db336d95c43c5e7337f30262ebffa87"
60
+ },
61
+ {
62
+ "file": "sounds/night-owl.ogg",
63
+ "label": "night owl",
64
+ "sha256": "c0e633bb245d07d13babf651cb49fa719f6da0a92c5487ee3b289c7935cc30fb"
65
+ },
66
+ {
67
+ "file": "sounds/rustle-1.ogg",
68
+ "label": "rustle 1",
69
+ "sha256": "815fb853fc45d84b75033f64deb86377843834742cb9642bd91a15b8bcfc5309"
70
+ }
71
+ ]
72
+ },
73
+ "task.error": {
74
+ "sounds": [
75
+ {
76
+ "file": "sounds/rustle-2.ogg",
77
+ "label": "rustle 2",
78
+ "sha256": "465b4939377ea6beaaf97c9828f9fe961ac56a913844bc9253ad68602e05fed5"
79
+ },
80
+ {
81
+ "file": "sounds/rustle-3.ogg",
82
+ "label": "rustle 3",
83
+ "sha256": "f31c3ea35299b4b27b1ad72bdb70c46b047d4d0ba2b8da71fa1251a3f8652ab2"
84
+ },
85
+ {
86
+ "file": "sounds/sleeping-creature.ogg",
87
+ "label": "sleeping creature",
88
+ "sha256": "3d7e8af212ca1c7c249ea6ea122f84f160f9ee24ceab227a53d312d7566737eb"
89
+ }
90
+ ]
91
+ },
92
+ "resource.limit": {
93
+ "sounds": [
94
+ {
95
+ "file": "sounds/wolf-howl.ogg",
96
+ "label": "wolf howl",
97
+ "sha256": "7ec448bd2cf38664ab95cfdafb7fe7372f9596b08cb77151fdb53e03b848618d"
98
+ }
99
+ ]
100
+ }
101
+ }
102
+ }
@@ -6,6 +6,7 @@
6
6
  "credits": "rubberduck (https://opengameart.org/content/100-cc0-sfx)",
7
7
  "category": "ocean",
8
8
  "sounds": [
9
+ "sounds/ambient-shore.ogg",
9
10
  "sounds/bubble-1.ogg",
10
11
  "sounds/bubble-2.ogg",
11
12
  "sounds/current.ogg",
@@ -13,6 +14,9 @@
13
14
  "sounds/deep-2.ogg",
14
15
  "sounds/shore-1.ogg",
15
16
  "sounds/shore-2.ogg",
17
+ "sounds/splash.ogg",
18
+ "sounds/tide-1.ogg",
19
+ "sounds/tide-2.ogg",
16
20
  "sounds/wave-1.ogg",
17
21
  "sounds/wave-2.ogg",
18
22
  "sounds/wind-1.ogg",
@@ -20,26 +24,29 @@
20
24
  ],
21
25
  "events": {
22
26
  "done": [
27
+ "sounds/ambient-shore.ogg",
23
28
  "sounds/bubble-1.ogg",
24
- "sounds/bubble-2.ogg",
25
- "sounds/current.ogg",
26
- "sounds/deep-1.ogg"
29
+ "sounds/bubble-2.ogg"
27
30
  ],
28
31
  "permission": [
29
- "sounds/deep-2.ogg",
30
- "sounds/shore-1.ogg",
31
- "sounds/shore-2.ogg"
32
+ "sounds/current.ogg",
33
+ "sounds/deep-1.ogg",
34
+ "sounds/deep-2.ogg"
32
35
  ],
33
36
  "complete": [
34
- "sounds/wave-1.ogg",
35
- "sounds/wave-2.ogg",
36
- "sounds/wind-1.ogg"
37
+ "sounds/shore-1.ogg",
38
+ "sounds/shore-2.ogg",
39
+ "sounds/splash.ogg"
37
40
  ],
38
41
  "error": [
39
- "sounds/wind-2.ogg"
42
+ "sounds/tide-1.ogg",
43
+ "sounds/tide-2.ogg",
44
+ "sounds/wave-1.ogg"
40
45
  ],
41
46
  "blocked": [
42
- "sounds/bubble-1.ogg"
47
+ "sounds/wave-2.ogg",
48
+ "sounds/wind-1.ogg",
49
+ "sounds/wind-2.ogg"
43
50
  ]
44
51
  }
45
52
  }
@@ -0,0 +1,92 @@
1
+ {
2
+ "cesp_version": "1.0",
3
+ "name": "nature-ocean",
4
+ "display_name": "Waves, bubbles, and ocean currents",
5
+ "version": "1.0.0",
6
+ "license": "CC0-1.0",
7
+ "author": {
8
+ "name": "rubberduck (https://opengameart.org/content/100-cc0-sfx)"
9
+ },
10
+ "categories": {
11
+ "task.acknowledge": {
12
+ "sounds": [
13
+ {
14
+ "file": "sounds/bubble-1.ogg",
15
+ "label": "bubble 1",
16
+ "sha256": "9d0731e87659ef1b4cac8745b89d7c27cdc1afc4478c30d0010fe4249e3d5ec1"
17
+ },
18
+ {
19
+ "file": "sounds/bubble-2.ogg",
20
+ "label": "bubble 2",
21
+ "sha256": "fb22b9960a447fb71ba90f6d570505dd8110a8ff0fc9fac48518aff4e1aaa9b0"
22
+ },
23
+ {
24
+ "file": "sounds/current.ogg",
25
+ "label": "current",
26
+ "sha256": "6da132c6ca9c01c50e0604301cc9187accb214eceecced52738a865fd99379d0"
27
+ },
28
+ {
29
+ "file": "sounds/deep-1.ogg",
30
+ "label": "deep 1",
31
+ "sha256": "204f984f20bb115148c57614e197699d15bc4ad7505816f0aac8b80537cc01b6"
32
+ }
33
+ ]
34
+ },
35
+ "input.required": {
36
+ "sounds": [
37
+ {
38
+ "file": "sounds/deep-2.ogg",
39
+ "label": "deep 2",
40
+ "sha256": "c70c1ade35fb2eeb1b5c4f68c696d4f9ab4d86ddd22ced6d3629a1ee72644822"
41
+ },
42
+ {
43
+ "file": "sounds/shore-1.ogg",
44
+ "label": "shore 1",
45
+ "sha256": "1e110391907ac60f4a1aa2c0073c0f93bd9e417de61f5f2ff912009fd702bfec"
46
+ },
47
+ {
48
+ "file": "sounds/shore-2.ogg",
49
+ "label": "shore 2",
50
+ "sha256": "6c4a3f610c3ea505d2094d5ae841ce50c9ee661cfa544d0b7e7b40e3b10daf62"
51
+ }
52
+ ]
53
+ },
54
+ "task.complete": {
55
+ "sounds": [
56
+ {
57
+ "file": "sounds/wave-1.ogg",
58
+ "label": "wave 1",
59
+ "sha256": "ef213fe00eca987db8c8a2fa07fcdb1c8aa4af76a4d3397f3d04c9cbceb90e73"
60
+ },
61
+ {
62
+ "file": "sounds/wave-2.ogg",
63
+ "label": "wave 2",
64
+ "sha256": "63cc032639cb0d4e59785550bd1b7e7c6f878b4f01a0bfeea3bd9a0265e45d74"
65
+ },
66
+ {
67
+ "file": "sounds/wind-1.ogg",
68
+ "label": "wind 1",
69
+ "sha256": "775f095332abf33a6b0211e7a8df0c8802c5420dddd91ad5768a9acdca1a2072"
70
+ }
71
+ ]
72
+ },
73
+ "task.error": {
74
+ "sounds": [
75
+ {
76
+ "file": "sounds/wind-2.ogg",
77
+ "label": "wind 2",
78
+ "sha256": "abdbd06e6afc8dd71876566e1a2e42fcfbba94a05f322911aeff51e0bceee383"
79
+ }
80
+ ]
81
+ },
82
+ "resource.limit": {
83
+ "sounds": [
84
+ {
85
+ "file": "sounds/bubble-1.ogg",
86
+ "label": "bubble 1",
87
+ "sha256": "9d0731e87659ef1b4cac8745b89d7c27cdc1afc4478c30d0010fe4249e3d5ec1"
88
+ }
89
+ ]
90
+ }
91
+ }
92
+ }
@@ -6,10 +6,14 @@
6
6
  "credits": "rubberduck (https://opengameart.org/content/100-cc0-sfx)",
7
7
  "category": "weather",
8
8
  "sounds": [
9
+ "sounds/breeze-1.ogg",
10
+ "sounds/breeze-2.ogg",
11
+ "sounds/breeze-3.ogg",
9
12
  "sounds/distant-thunder.ogg",
10
13
  "sounds/lightning-crack.ogg",
11
14
  "sounds/rain-drop-1.ogg",
12
15
  "sounds/rain-drop-2.ogg",
16
+ "sounds/real-thunder.ogg",
13
17
  "sounds/storm-1.ogg",
14
18
  "sounds/storm-2.ogg",
15
19
  "sounds/thunder-1.ogg",
@@ -21,27 +25,31 @@
21
25
  ],
22
26
  "events": {
23
27
  "done": [
24
- "sounds/distant-thunder.ogg",
28
+ "sounds/breeze-1.ogg",
29
+ "sounds/breeze-2.ogg",
30
+ "sounds/breeze-3.ogg",
31
+ "sounds/distant-thunder.ogg"
32
+ ],
33
+ "permission": [
25
34
  "sounds/lightning-crack.ogg",
26
35
  "sounds/rain-drop-1.ogg",
27
- "sounds/rain-drop-2.ogg"
36
+ "sounds/rain-drop-2.ogg",
37
+ "sounds/real-thunder.ogg"
28
38
  ],
29
- "permission": [
39
+ "complete": [
30
40
  "sounds/storm-1.ogg",
31
41
  "sounds/storm-2.ogg",
32
- "sounds/thunder-1.ogg"
33
- ],
34
- "complete": [
35
- "sounds/thunder-2.ogg",
36
- "sounds/thunder-3.ogg",
37
- "sounds/thunder-rumble.ogg"
42
+ "sounds/thunder-1.ogg",
43
+ "sounds/thunder-2.ogg"
38
44
  ],
39
45
  "error": [
46
+ "sounds/thunder-3.ogg",
47
+ "sounds/thunder-rumble.ogg",
40
48
  "sounds/wind-gust-1.ogg",
41
49
  "sounds/wind-gust-2.ogg"
42
50
  ],
43
51
  "blocked": [
44
- "sounds/distant-thunder.ogg"
52
+ "sounds/wind-gust-2.ogg"
45
53
  ]
46
54
  }
47
55
  }