From 81acc4f229e63ae2c9bfc646cc0f23b2fcb3f558 Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Mon, 27 Jul 2015 20:35:23 -0700 Subject: [PATCH] better intro to sack lunch. --- desktop/gametodos.txt | 2 +- desktop/src-common/advent/screens/items.clj | 2 +- desktop/src-common/advent/screens/rooms/outside_jail.clj | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/desktop/gametodos.txt b/desktop/gametodos.txt index 5c82d4ee..5f8a7203 100644 --- a/desktop/gametodos.txt +++ b/desktop/gametodos.txt @@ -1,9 +1,9 @@ + More ways to burn paper + shitty plates + more visible crowbar -+ sack lunch should spoil + fight with blergh at end isn't great + ending + secret lever + proper save/settings file location + closing should stop all scripts ++ frankie should drop coin diff --git a/desktop/src-common/advent/screens/items.clj b/desktop/src-common/advent/screens/items.clj index 47107124..2db32262 100644 --- a/desktop/src-common/advent/screens/items.clj +++ b/desktop/src-common/advent/screens/items.clj @@ -115,7 +115,7 @@ :flask-flies-ash {:name "Water, flies, and ash" :value :flask-flies-ash :cursor :flask-water-stuff-2 :scripts {:feather (make-finished-component)}} :note-1 {:name "Note from Gandarf" :value :note-1 :cursor :note-1} :ash {:name "Ashes" :value :ash :cursor :ash :scripts {:flask-water (make-water-and-ash) :flask-water-flies (make-flies-ash)}} - :sack-lunch {:name "Sack lunch" :value :sack-lunch :cursor :sack-lunch} + :sack-lunch {:name "Pungent sack lunch" :value :sack-lunch :cursor :sack-lunch} :flies {:name "Flies" :value :flies :cursor :flies :scripts {:flask-water (make-water-and-flies) :flask-water-ash (make-flies-ash)}} :spear {:name "Spear" :value :spear :cursor :spear} :monocle {:name "Monocle" :value :monocle :cursor :monocle} diff --git a/desktop/src-common/advent/screens/rooms/outside_jail.clj b/desktop/src-common/advent/screens/rooms/outside_jail.clj index b240a8fa..d129b1b3 100644 --- a/desktop/src-common/advent/screens/rooms/outside_jail.clj +++ b/desktop/src-common/advent/screens/rooms/outside_jail.clj @@ -44,8 +44,9 @@ (if (actions/has-obtained? entities :sack-lunch) (actions/talk entities :ego "He doesn't have anything else on him.") (do (actions/do-dialogue entities - :ego "He has a sack lunch here." - :ego "Looks like it's pretty mangled from his spill.") + :ego "He has a sack lunch here." + :ego "UGH! Gross! It's got blue cheese dressing on it!") + (actions/play-animation entities :ego :get-sick) (actions/give entities :sack-lunch)))) (defn grab-spear [entities]