From b6f8190108e7d69386aeb69c60a581a5997ffae1 Mon Sep 17 00:00:00 2001 From: cheapie Date: Wed, 18 Sep 2024 19:01:05 -0500 Subject: Add wave samples that mt-mods is still missing --- init.lua | 8 ++++++++ sounds/digistuff_nbextras_noise.ogg | Bin 0 -> 162106 bytes sounds/digistuff_nbextras_pulse10.ogg | Bin 0 -> 90721 bytes sounds/digistuff_nbextras_pulse15.ogg | Bin 0 -> 93351 bytes sounds/digistuff_nbextras_pulse20.ogg | Bin 0 -> 91876 bytes sounds/digistuff_nbextras_pulse25.ogg | Bin 0 -> 80900 bytes sounds/digistuff_nbextras_pulse30.ogg | Bin 0 -> 90900 bytes sounds/digistuff_nbextras_pulse35.ogg | Bin 0 -> 90434 bytes sounds/digistuff_nbextras_pulse40.ogg | Bin 0 -> 90730 bytes sounds/digistuff_nbextras_pulse45.ogg | Bin 0 -> 84616 bytes sounds/digistuff_nbextras_pulse5.ogg | Bin 0 -> 95888 bytes sounds/digistuff_nbextras_saw.ogg | Bin 0 -> 150305 bytes sounds/digistuff_nbextras_square.ogg | Bin 0 -> 53573 bytes sounds/digistuff_nbextras_triangle.ogg | Bin 0 -> 36395 bytes 14 files changed, 8 insertions(+) create mode 100644 sounds/digistuff_nbextras_noise.ogg create mode 100644 sounds/digistuff_nbextras_pulse10.ogg create mode 100644 sounds/digistuff_nbextras_pulse15.ogg create mode 100644 sounds/digistuff_nbextras_pulse20.ogg create mode 100644 sounds/digistuff_nbextras_pulse25.ogg create mode 100644 sounds/digistuff_nbextras_pulse30.ogg create mode 100644 sounds/digistuff_nbextras_pulse35.ogg create mode 100644 sounds/digistuff_nbextras_pulse40.ogg create mode 100644 sounds/digistuff_nbextras_pulse45.ogg create mode 100644 sounds/digistuff_nbextras_pulse5.ogg create mode 100644 sounds/digistuff_nbextras_saw.ogg create mode 100644 sounds/digistuff_nbextras_square.ogg create mode 100644 sounds/digistuff_nbextras_triangle.ogg diff --git a/init.lua b/init.lua index 23f1a6c..3146969 100644 --- a/init.lua +++ b/init.lua @@ -4,6 +4,14 @@ local sounds = { digistuff_hdd_start = "digistuff_nbextras_hddstart", digistuff_hdd_stop = "digistuff_nbextras_hddstop", digistuff_motor_start = "digistuff_nbextras_motorstart", + noise = "digistuff_nbextras_noise", + square = "digistuff_nbextras_square", + saw = "digistuff_nbextras_saw", + triangle = "digistuff_nbextras_triangle", } +for i=5,45,5 do + sounds["pulse"..i] = "digistuff_nbextras_pulse"..i +end + for k,v in pairs(sounds) do digistuff.register_nb_sound(k,v) end diff --git a/sounds/digistuff_nbextras_noise.ogg b/sounds/digistuff_nbextras_noise.ogg new file mode 100644 index 0000000..4dae6aa Binary files /dev/null and b/sounds/digistuff_nbextras_noise.ogg differ diff --git a/sounds/digistuff_nbextras_pulse10.ogg b/sounds/digistuff_nbextras_pulse10.ogg new file mode 100644 index 0000000..efb8b28 Binary files /dev/null and b/sounds/digistuff_nbextras_pulse10.ogg differ diff --git a/sounds/digistuff_nbextras_pulse15.ogg b/sounds/digistuff_nbextras_pulse15.ogg new file mode 100644 index 0000000..dd19fa1 Binary files /dev/null and b/sounds/digistuff_nbextras_pulse15.ogg differ diff --git a/sounds/digistuff_nbextras_pulse20.ogg b/sounds/digistuff_nbextras_pulse20.ogg new file mode 100644 index 0000000..150704d Binary files /dev/null and b/sounds/digistuff_nbextras_pulse20.ogg differ diff --git a/sounds/digistuff_nbextras_pulse25.ogg b/sounds/digistuff_nbextras_pulse25.ogg new file mode 100644 index 0000000..0a8de21 Binary files /dev/null and b/sounds/digistuff_nbextras_pulse25.ogg differ diff --git a/sounds/digistuff_nbextras_pulse30.ogg b/sounds/digistuff_nbextras_pulse30.ogg new file mode 100644 index 0000000..4673df1 Binary files /dev/null and b/sounds/digistuff_nbextras_pulse30.ogg differ diff --git a/sounds/digistuff_nbextras_pulse35.ogg b/sounds/digistuff_nbextras_pulse35.ogg new file mode 100644 index 0000000..e6ad2d4 Binary files /dev/null and b/sounds/digistuff_nbextras_pulse35.ogg differ diff --git a/sounds/digistuff_nbextras_pulse40.ogg b/sounds/digistuff_nbextras_pulse40.ogg new file mode 100644 index 0000000..ac77a39 Binary files /dev/null and b/sounds/digistuff_nbextras_pulse40.ogg differ diff --git a/sounds/digistuff_nbextras_pulse45.ogg b/sounds/digistuff_nbextras_pulse45.ogg new file mode 100644 index 0000000..924dd14 Binary files /dev/null and b/sounds/digistuff_nbextras_pulse45.ogg differ diff --git a/sounds/digistuff_nbextras_pulse5.ogg b/sounds/digistuff_nbextras_pulse5.ogg new file mode 100644 index 0000000..1898c7c Binary files /dev/null and b/sounds/digistuff_nbextras_pulse5.ogg differ diff --git a/sounds/digistuff_nbextras_saw.ogg b/sounds/digistuff_nbextras_saw.ogg new file mode 100644 index 0000000..cba242c Binary files /dev/null and b/sounds/digistuff_nbextras_saw.ogg differ diff --git a/sounds/digistuff_nbextras_square.ogg b/sounds/digistuff_nbextras_square.ogg new file mode 100644 index 0000000..1cb7873 Binary files /dev/null and b/sounds/digistuff_nbextras_square.ogg differ diff --git a/sounds/digistuff_nbextras_triangle.ogg b/sounds/digistuff_nbextras_triangle.ogg new file mode 100644 index 0000000..434981f Binary files /dev/null and b/sounds/digistuff_nbextras_triangle.ogg differ -- cgit v1.2.3