This commit is contained in:
2026-03-30 21:51:50 -07:00
parent b9e3e3ba2e
commit 98df2b865e
178 changed files with 3365 additions and 31 deletions

View File

@@ -40,7 +40,7 @@
(if (get-in @entities [:state :wants-toy])
(actions/do-dialogue entities :peddler "I will give them to you if you bring me the choicest of toys.")
(actions/do-dialogue entities
:peddler "That'll just be 10 sheckles."
:peddler "That'll just be 10 coins."
:ego "But I haven't got any money!"
:peddler "Well, I'm afraid you won't have the choicest of earplugs."
:ego "Can't I give you something else for them?"
@@ -62,7 +62,7 @@
(if (get-in @entities [:state :wants-toy])
(actions/do-dialogue entities :peddler "I will give it to you if you bring me the choicest of toys.")
(actions/do-dialogue entities
:peddler "That'll just be 95 sheckles."
:peddler "That'll just be 95 coins."
:ego "But I haven't got any money!"
:peddler "Well, I'm afraid you won't have the choicest of glass eyes."
:ego "Can't I give you something else for them?"
@@ -81,7 +81,7 @@
(if (get-in @entities [:state :wants-toy])
(actions/do-dialogue entities :peddler "I will give them to you if you bring me the choicest of toys.")
(actions/do-dialogue entities
:peddler "For only 3 easy payments of 29.99 scheckles, they're yours!"
:peddler "For only 3 easy payments of 29.99 coins, they're yours!"
:ego "But I'm broke!"
:peddler "Well, I'm afraid you won't have the choicest of motivational tapes."
:ego "Is there anything else you'd take instead?"
@@ -194,7 +194,7 @@
:frankie "Or, I could fetch some real good dough for this."
:frankie "What would you say, boys?")
(actions/play-animation entities :frankie :glance)
(actions/do-dialogue entities :frankie "95 sheckles?"))
(actions/do-dialogue entities :frankie "95 coins?"))
(actions/has-item? entities :used-earplugs) (do
(actions/remove-item entities :used-earplugs)
(actions/do-dialogue entities
@@ -204,7 +204,7 @@
:frankie "But, I could fetch some real good dough for them."
:frankie "What would you say, boys?")
(actions/play-animation entities :frankie :glance)
(actions/do-dialogue entities :frankie "10 sheckles?"))
(actions/do-dialogue entities :frankie "10 coins?"))
(actions/has-item? entities :motivational-tapes) (do
(actions/remove-item entities :motivational-tapes)
(actions/do-dialogue entities
@@ -213,7 +213,7 @@
:frankie "But, I could fetch some real good dough for them."
:frankie "What would you say, boys?")
(actions/play-animation entities :frankie :glance)
(actions/do-dialogue entities :frankie "3 easy payments of 29.99 sheckles?"))))
(actions/do-dialogue entities :frankie "3 easy payments of 29.99 coins?"))))
(defn block-entrance [entities]