diff --git a/recursive-desc.js b/recursive-desc.js index 7f35d2b..9b866d0 100644 --- a/recursive-desc.js +++ b/recursive-desc.js @@ -874,7 +874,7 @@ function defaultFlood(container, macro, verbose) { if (container.count == 0) { return "Your gooey body melts and floods outward..but doesn't catch anything."; } else { - return "Your gooey body melts and floods outward, burying " + container.describe(verbose) + " in your thick, slimy self. You slowly reform, grinning as you feel the " + numberRough(container.count, "of") + " prey sloshing about within."; + return "Your gooey body melts and floods outward, burying " + container.describe(verbose) + " in your thick, slimy self. You slowly reform, grinning as you feel " + numberRough(get_living_prey(container.sum()), "of") + " prey sloshing about within."; } } diff --git a/units.js b/units.js index 46afcd3..ea7faf7 100644 --- a/units.js +++ b/units.js @@ -33,6 +33,8 @@ function numberRough(value,suffix="") { case 2: return prefix + "millions " + suffix; case 3: return prefix + "billions " + suffix; case 4: return prefix + "trillions " + suffix; + case 5: return prefix + "quadrillions " + suffix; + case 6: return prefix + "quintillions " + suffix; default: return "uncountably many"; } }