diff --git a/game.js b/game.js index c11b68c..1811593 100644 --- a/game.js +++ b/game.js @@ -610,8 +610,16 @@ function initVictims() // lists out total people function summarize(sum, fatal = true) { + var word; var count = get_living_prey(sum); - return "(" + count + " " + (fatal ? (count > 1 ? "kills" : "kill") : (count > 1 ? "prey" : "prey")) + ")"; + if (fatal && macro.brutality > 0) + word = count > 1 ? "kills" : "kill"; + else if (!fatal && macro.brutality > 0) + word = "prey"; + else + word = count > 1 ? "victims" : "victim"; + + return "(" + count + " " + word + ")"; } function getOnePrey(biome,area) diff --git a/recursive-desc.js b/recursive-desc.js index 8807c03..2e85f32 100644 --- a/recursive-desc.js +++ b/recursive-desc.js @@ -117,7 +117,7 @@ function describeDefault(action, container, macro, verbose=true) { // DEFAULTS -function defaultEat(conatiner, macro, verbose) { +function defaultEat(container, macro, verbose) { return "You scoop up " + container.describe(verbose) + " and swallow " + (container.count > 1 ? "them" : "it") + " whole."; } diff --git a/stroll.html b/stroll.html index f112fd3..2fc33b5 100644 --- a/stroll.html +++ b/stroll.html @@ -60,7 +60,7 @@
-
Welcome to Stroll 0.3.6
+
Welcome to Stroll 0.4.0
This game features 18+ content
Changelog
It's a nice day for a walk
@@ -89,7 +89,7 @@
-

Welcome to Stroll 0.3.6

+

Welcome to Stroll 0.4.0

This game features 18+ content

Changelog