diff --git a/desktop/asset-work/ending-castle/fall.ogg b/desktop/asset-work/ending-castle/fall.ogg new file mode 100644 index 00000000..c3e8c878 Binary files /dev/null and b/desktop/asset-work/ending-castle/fall.ogg differ diff --git a/desktop/asset-work/ending-castle/fall.wav b/desktop/asset-work/ending-castle/fall.wav new file mode 100644 index 00000000..28a4120b Binary files /dev/null and b/desktop/asset-work/ending-castle/fall.wav differ diff --git a/desktop/asset-work/georgia/kick.ogg b/desktop/asset-work/georgia/kick.ogg new file mode 100644 index 00000000..365c8009 Binary files /dev/null and b/desktop/asset-work/georgia/kick.ogg differ diff --git a/desktop/asset-work/georgia/kick.wav b/desktop/asset-work/georgia/kick.wav new file mode 100644 index 00000000..502e738c Binary files /dev/null and b/desktop/asset-work/georgia/kick.wav differ diff --git a/desktop/resources/ending-castle/fall.ogg b/desktop/resources/ending-castle/fall.ogg new file mode 100644 index 00000000..c3e8c878 Binary files /dev/null and b/desktop/resources/ending-castle/fall.ogg differ diff --git a/desktop/resources/georgia/kick.ogg b/desktop/resources/georgia/kick.ogg new file mode 100644 index 00000000..b67b8a1b Binary files /dev/null and b/desktop/resources/georgia/kick.ogg differ diff --git a/desktop/src-common/advent/screens/rooms/ending.clj b/desktop/src-common/advent/screens/rooms/ending.clj index 38bbffc6..56ab3181 100644 --- a/desktop/src-common/advent/screens/rooms/ending.clj +++ b/desktop/src-common/advent/screens/rooms/ending.clj @@ -65,6 +65,8 @@ :kick georgia-kick :walk (utils/make-anim "georgia/walk.png" [20 43] 0.2 (range 8)) :hand-hold georgia-hand-hold + :kick-sound (utils/load-sound "georgia/kick.ogg") + :anim-sound-frames {georgia-kick {27 [:kick-sound (constantly 0.6)]}} :anim-merges {georgia-stand {:origin-x 10 :origin-y 1} :default {:origin-x 10 :origin-y 1} georgia-kick {:origin-x 19 :origin-y 0}})) @@ -74,6 +76,8 @@ :down frankie-down :scale-x 1.3 :scale-y 1.3 + :fall-sound (utils/load-sound "ending-castle/fall.ogg") + :anim-sound-frames {frankie-fall {6 [:fall-sound 0.5]}} :anim-merges {:default {:origin-x 12 :origin-y 0} frankie-fall {:origin-x 22 :origin-y 0} frankie-down {:origin-x 22 :origin-y 0}})