diff --git a/desktop/gametodos.txt b/desktop/gametodos.txt index fe2002a8..3c94339e 100644 --- a/desktop/gametodos.txt +++ b/desktop/gametodos.txt @@ -7,7 +7,6 @@ + descriptions for all items when used on self. + revamp text + alternate solutions to puzzle in jail (strength potion etc) -+ have warden wake up when you drop the cannonball + Opening should include dialogue tree + fire mints "Specialty fire mints, hand delivered by Gandarf!" diff --git a/desktop/src-common/advent/screens/scene.clj b/desktop/src-common/advent/screens/scene.clj index b19c5f6e..cc633876 100644 --- a/desktop/src-common/advent/screens/scene.clj +++ b/desktop/src-common/advent/screens/scene.clj @@ -503,6 +503,16 @@ void main() (get-in @entities [:room :blergh])) (drink-blergh entities) + (get-in @entities [:room :entities :warden]) + (do + (actions/talk entities :ego "I'll just take a sip!") + (sound! (sound "ego/potion.ogg") :play (utils/current-sound-volume)) + (actions/play-animation entities :ego :grow :stop? false) + (actions/talk entities :warden "Huh? What was that?!") + (Thread/sleep 1000) + (actions/talk entities :warden "Hey, get back in jail!") + (common/go-to-jail entities)) + (get-in @entities [:room :blergh]) (actions/talk entities :ego "There's no time!")