diff --git a/desktop/src-common/advent/screens/rooms/inside_castle.clj b/desktop/src-common/advent/screens/rooms/inside_castle.clj index 22531f0c..1a87a765 100644 --- a/desktop/src-common/advent/screens/rooms/inside_castle.clj +++ b/desktop/src-common/advent/screens/rooms/inside_castle.clj @@ -99,6 +99,9 @@ (let [game-player-talk-sheet (texture! (texture "inside-castle/game-player-talk.png") :split 40 44) game-player-talk (animation 0.15 (for [i [0 2 0 2 0 2 0 3 0 2 0 1 0 0 0 0 2 0 2 0 3 0 1 0 1 0 0 1 0 2 0 3 0]] (aget game-player-talk-sheet 0 i))) + + game-player-stand (animation 0.15 (for [i [0 0 0 0 0 0 0 0 0 0 0 1]] + (aget game-player-talk-sheet 0 i))) trophy (utils/make-anim "inside-castle/trophy.png" [16 16] 0.1 (flatten [(repeat 50 0) 1 2 3 3 3 3 2 1]))] (rooms/make :music :town-1 :interactions @@ -187,7 +190,9 @@ (actions/give entities :trophy) (actions/remove-entity entities :trophy)) (actions/talk entities :ego "He doesn't need it.")))} - :anim nil + :anim game-player-stand + :anim-start 0 + :stand game-player-stand :talk game-player-talk)} :collision "inside-castle/collision.png" :scale-fn (utils/scaler-fn-from-image "inside-castle/scale.png" 0.25 1.00)