diff --git a/desktop/resources/door.ogg b/desktop/resources/door.ogg new file mode 100644 index 00000000..d08a12bb Binary files /dev/null and b/desktop/resources/door.ogg differ diff --git a/desktop/resources/door.wav b/desktop/resources/door.wav new file mode 100644 index 00000000..7df752fa Binary files /dev/null and b/desktop/resources/door.wav differ diff --git a/desktop/src-common/advent/screens/rooms/inside_castle.clj b/desktop/src-common/advent/screens/rooms/inside_castle.clj index 3c5a929b..33cc9219 100644 --- a/desktop/src-common/advent/screens/rooms/inside_castle.clj +++ b/desktop/src-common/advent/screens/rooms/inside_castle.clj @@ -150,6 +150,7 @@ :cursor :up :script (actions/get-script entities (actions/walk-to entities :ego [182 90] :face :left) + (sound! (sound "door.ogg") :play) (actions/play-animation entities :ego :reach) (actions/transition-background entities :inside-antique [228 -30]) (actions/walk-straight-to entities :ego [222 15] :face :left))} diff --git a/desktop/src-common/advent/screens/rooms/outside_house.clj b/desktop/src-common/advent/screens/rooms/outside_house.clj index c31890aa..6e12ccd3 100644 --- a/desktop/src-common/advent/screens/rooms/outside_house.clj +++ b/desktop/src-common/advent/screens/rooms/outside_house.clj @@ -128,6 +128,7 @@ entities (actions/walk-to entities :ego [267 90]) (actions/talk entities :ego (str "Anyone home?")) + (sound! (sound "door.ogg") :play) (actions/play-animation entities :ego :reach) (actions/transition-background entities :inside-house [237 0]) (if (get-in @entities [:state :convinced-wizard?])