diff options
author | Joris Guyonvarch | 2025-08-08 22:26:24 +0200 |
---|---|---|
committer | Joris Guyonvarch | 2025-08-08 22:26:24 +0200 |
commit | a3b35fbea8d800804375a26921d01cc71c1a5cc1 (patch) | |
tree | 1ef96affa781b0f4bd7371d9cb9e3aacce7916dd | |
parent | 4b71f5477cf3d9b309baadfea8756e00c0bf84a6 (diff) |
Add Scorpions Wind Of Change
-rw-r--r-- | songs/scorpions/wind-of-change.lisp | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/songs/scorpions/wind-of-change.lisp b/songs/scorpions/wind-of-change.lisp new file mode 100644 index 0000000..fb73b28 --- /dev/null +++ b/songs/scorpions/wind-of-change.lisp @@ -0,0 +1,92 @@ +(song + (title "Wind Of Change") + (from "Scorpions") + (tonality "C") + + (notes + "ℹ️ Il y a parfois des pauses entre les parties.") + + (chords + ("Intro / Sifflements" + (F "Dₘ" F "Dₘ") + ("Aₘ" ("Dₘ" "Aₘ") ((G 2)))) + + (verse + :repeat 2 + (C "Dₘ" C ("Dₘ" "Aₘ") ((G 2)))) + + (chorus + ((C G) ("Dₘ" G) (C G) ("Dₘ" G)) + (("Aₘ" F) G)) + + (bridge + ("Aₘ" G "Aₘ" G) + (C "Dₘ" E)) + + (solo + ((F G) ("Eₘ" "Aₘ") (F G) "Aₘ") + ((F G) ("Eₘ" "Aₘ") "Dₘ" E)) + + (outro + (F "Dₘ" F "Dₘ") + ("Aₘ" "Dₘ")) + ) + + (lyrics + (intro) + + (verse + "I follow the Moskva, + Down to Gorky Park, + Listening to the wind, of change. + August summer night, + Soldiers passing by, + Listening to the wind, of change.") + + ("Sifflements") + + (verse + "The world is closing in, + And did you ever think, + That we could be so close, like brothers. + The future’s in the air, + I can feel it everywhere, + Blowing with the wind, of change.") + + (chorus + "Take me, to the magic of the moment, + On a glory night, + Where the children of tomorrow, dream away, + In the wind of change.") + + (verse + "Walking down the street, + And distant memories, + Are buried in the past, forever. + I follow the Moskva, + And down to Gorky Park, + Listening to the wind, of change.") + + (chorus + "Take me, to the magic of the moment, + On a glory night, + Where the children of tomorrow, dream away, + In the wind of change.") + + (bridge + "The wind of change blows straight, + Into the face of time. + Like a storm wind that will ring, + The freedom bell, for peace of mind, + Let your balalaika sing, + What my guitar, wants to say.") + + (solo) + + (chorus + "Take me, to the magic of the moment, + On a glory night, + Where the children of tomorrow, dream away, + In the wind of change.") + + (outro))) |