From 9af2fa421de968c418dc6e6539dd7abf52625284 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 16 Jun 2018 19:04:35 -0400 Subject: [PATCH] Line breath is stronger now. Fixed some typos --- game.js | 2 +- recursive-desc.js | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/game.js b/game.js index d2aad6e..bdd4529 100644 --- a/game.js +++ b/game.js @@ -3689,7 +3689,7 @@ function breath(type, style) { let prey = new Container(); if (style == "line") { - area *= 10; + area *= 50; prey = getOnePrey(biome, area, true); } else if (style == "cone") { prey = getPrey(biome, area, true); diff --git a/recursive-desc.js b/recursive-desc.js index 8166d60..54058d0 100644 --- a/recursive-desc.js +++ b/recursive-desc.js @@ -1022,7 +1022,7 @@ function defaultBreathIce(container, macro, verbose) { if (isFatal(macro)) { if (macro.breathStyle == "line") { - return "You heave a lance of frigid cold from your gullet, freezing a " + container.describe(verbose) + " to the core."; + return "You heave a lance of frigid cold from your gullet, freezing " + container.describe(verbose) + " to the core."; } else if (macro.breathStyle == "cone") { return "A blizzard erupts from your maw, flash-freezing " + container.describe(verbose) + ". " + (container.count > 1 ? "They" : "It") + " shatters a heartbeat later, reduced to dust by your power."; } @@ -1038,7 +1038,7 @@ function defaultBreathElectric(container, macro, verbose) { if (isFatal(macro)) { if (macro.breathStyle == "line") { - return "A blinding lance of lightning blasts from your spread " + macro.jawDesc(true) + ", cooking a " + container.describe(verbose) + " from the inside out."; + return "A blinding lance of lightning blasts from your spread " + macro.jawDesc(true) + ", cooking " + container.describe(verbose) + " from the inside out."; } else if (macro.breathStyle == "cone") { return "You exhale a brilliant, forking spray of lightning. The flickering bolts arc through " + container.describe(verbose) + ", cooking everything to a crisp."; } @@ -1054,7 +1054,7 @@ function defaultBreathSmoke(container, macro, verbose) { if (isFatal(macro)) { if (macro.breathStyle == "line") { - return "You part your " + macro.jawDesc(true) + " a touch and blow, casting a thin gout of smoke that envelops a " + container.describe(verbose) + ". Your prey is snuffed out like a candle."; + return "You part your " + macro.jawDesc(true) + " a touch and blow, casting a thin gout of smoke that envelops " + container.describe(verbose) + ". Your prey is snuffed out like a candle."; } else if (macro.breathStyle == "cone") { return "You open wide and exhale. A rolling storm of smoke pours forth, smothering " + container.describe(verbose) + " in a pyroclastic flow."; } @@ -1070,7 +1070,7 @@ function defaultBreathRadiation(container, macro, verbose) { if (isFatal(macro)) { if (macro.breathStyle == "line") { - return "Your depths pour out a narrow beam of crackling green energy, striking a " + container.describe(verbose) + " and frying it to a crisp, turning your prey to dust in the wind."; + return "Your depths pour out a narrow beam of crackling green energy, striking " + container.describe(verbose) + " and frying it to a crisp, turning your prey to dust in the wind."; } else if (macro.breathStyle == "cone") { return "You part your " + macro.jawDesc(true) + ", roaring as a massive tide of radiation spews forth. It rolls over " + container.describe(verbose) + ", evaporating " + (container.count > 1 ? "them" : "it") + " in seconds."; }