diff --git a/res/sounds/obtain.wav b/res/sounds/obtain.wav new file mode 100644 index 0000000..52bf579 Binary files /dev/null and b/res/sounds/obtain.wav differ diff --git a/res/sounds/ruby/forbidden.rb b/res/sounds/ruby/forbidden.rb new file mode 100644 index 0000000..88540b6 --- /dev/null +++ b/res/sounds/ruby/forbidden.rb @@ -0,0 +1,4 @@ +# Welcome to Sonic Pi + +##| sample :drum_tom_hi_hard, release: 0.5 +play 54, release: 0.25, amp: 4, pitch: -3 \ No newline at end of file diff --git a/res/sounds/ruby/obtain.rb b/res/sounds/ruby/obtain.rb new file mode 100644 index 0000000..64f3561 --- /dev/null +++ b/res/sounds/ruby/obtain.rb @@ -0,0 +1,24 @@ +# Welcome to Sonic Pi +use_synth :subpulse + +s = 60 + +with_fx :reverb do + with_fx :echo, mix: 0.5, phase: 0.05, decay: 0.2 do + with_fx :sound_out_stereo do + + 5.times do + + play s, release: 0.2 + sample :elec_ping, release: 0.3 + sample :tabla_tun1, finish: 0.1, release: 0.1, amp: 0.25 + + s = s + 5 + + sleep 0.2 + + end + + end + end +end \ No newline at end of file