Skip to content

Instantly share code, notes, and snippets.

@SnowBird27
Created October 19, 2017 17:44
Show Gist options
  • Save SnowBird27/a27003afcd2359844a787a73593b439e to your computer and use it in GitHub Desktop.
Save SnowBird27/a27003afcd2359844a787a73593b439e to your computer and use it in GitHub Desktop.
live_loop :Pichu do
synth :noise, release: 0.02
sleep [0.125, 0.25, 0.5]. choose
end
live_loop :Pickachu do
synth :chipbass, release: 0.25, note: [:f2, :a2, :c3]. choose
sleep [0.25, 0.5, 1]. choose
end
live_loop :Riachu do
sample :bd_boom
sleep 0.5
sample :sn_dolf
sleep 0.5
end
live_loop :Snivy do
synth [:noise, :gnoise, :pnoise].choose, release: 0.02
sleep [0.125, 0.25, 0.5].choose
end
live_loop :Shrilvie do
sleep [0.25, 0.5, 1].choose
end
live_loop :Surperior do
x = [0.15, 0.5, 0.85].choose
sleep 0.5
end
live_loop :Evee do
sleep [0.125, 0.25, 0.5].choose
end
live_loop :Jolteon do
sleep [0.125, 0.150, 0.50].choose
end
live_loop :Flareon do
sleep [0.125, 0.25, 0.5].choose
end
#this is a VERY fast rest
live_loop :Espeon do
[:e5, :g4].choose
sleep 1
end
live_loop :Charmander do
sleep 10
sample :vinyl_backspin
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment