diff --git a/src/events/nonRandom/foodCrisis/pFoodCrisisLowerClass.js b/src/events/nonRandom/foodCrisis/pFoodCrisisLowerClass.js index 912154eb8c7b1d531a260a1bd952784896b5462d..ab37feced510deccf2e0f8211981238916aa8bcf 100644 --- a/src/events/nonRandom/foodCrisis/pFoodCrisisLowerClass.js +++ b/src/events/nonRandom/foodCrisis/pFoodCrisisLowerClass.js @@ -29,8 +29,8 @@ App.Events.pFoodCrisisLowerClass = class PFoodCrisis extends App.Events.BaseEven r.push(`Supplies steadily began to dwindle, and it wasn't long before the prices of food began to rise as a result. ${V.arcologyUpgrade.hydro ? `Even the hydroponics system you had installed earlier could barely put a dent in the needs of your citizens.` : ``} Now, the poorest in your arcology are facing starvation. Seeing no other choice, they turned to you to provide them with sustenance. <span class="bold">This is a unique opportunity.</span> It's unlikely your citizens would ask for your help again, should you choose not to help them.`); App.Events.addResponses(node, [ - new App.Events.Result(`Provide them with ample rations`, ample, `This will cost ${cashFormat(price * 2.5)} and ${discount ? `some upkeep, <span class="skill player">reduced by your knowledge of trading</span>` : `will incur significant upkeep costs`}`), - new App.Events.Result(`Give them enough to survive on`, enough, `This will cost ${cashFormat(price * 1.5)} and ${discount ? `some upkeep, <span class="skill player">reduced by your knowledge of trading</span>` : `will incur significant upkeep costs`}`), + new App.Events.Result(`Provide them with ample rations`, ample, `This will cost ${cashFormat(price * 2.5)} and ${discount ? `some upkeep, reduced by your knowledge of trading` : `will incur significant upkeep costs`}.`), + new App.Events.Result(`Give them enough to survive on`, enough, `This will cost ${cashFormat(price * 1.5)} and ${discount ? `some upkeep, reduced by your knowledge of trading` : `will incur significant upkeep costs`}.`), new App.Events.Result(`They can figure their problem out on their own`, refuse) ]); diff --git a/src/events/nonRandom/foodCrisis/pFoodCrisisMiddleClass.js b/src/events/nonRandom/foodCrisis/pFoodCrisisMiddleClass.js index f4ade4e633bf12af71fb0ea9b27f17f0c3a38b55..ea38c57ddd178d23755ee06e65e9bc640eee50cc 100644 --- a/src/events/nonRandom/foodCrisis/pFoodCrisisMiddleClass.js +++ b/src/events/nonRandom/foodCrisis/pFoodCrisisMiddleClass.js @@ -24,8 +24,8 @@ App.Events.pFoodCrisisMiddleClass = class PFoodCrisis extends App.Events.BaseEve App.Events.addParagraph(node, r); App.Events.addResponses(node, [ - new App.Events.Result(`Give them generous rations as well`, ample, `This will cost ${cashFormat(price * 2)} and ${discount ? `some upkeep, <span class="skill player">reduced by your knowledge of trading</span>` : `will incur significant upkeep costs`}`), - new App.Events.Result(`Give them enough to survive on`, enough, `This will cost ${cashFormat(price)} and ${discount ? `some upkeep, <span class="skill player">reduced by your knowledge of trading</span>` : `will incur significant upkeep costs`}`), + new App.Events.Result(`Give them generous rations as well`, ample, `This will cost ${cashFormat(price * 2)} and ${discount ? `some upkeep, reduced by your knowledge of trading` : `will incur significant upkeep costs`}.`), + new App.Events.Result(`Give them enough to survive on`, enough, `This will cost ${cashFormat(price)} and ${discount ? `some upkeep, reduced by your knowledge of trading` : `will incur significant upkeep costs`}.`), new App.Events.Result(`Change your mind about giving out any rations at all`, refuse) ]); diff --git a/src/events/nonRandom/foodCrisis/pFoodCrisisUpperClass.js b/src/events/nonRandom/foodCrisis/pFoodCrisisUpperClass.js index 39049ac261ba5b2061dd6c025489fa74d739a3d7..64ef82e2379b410177fbb444f2c0ff28aaeed17d 100644 --- a/src/events/nonRandom/foodCrisis/pFoodCrisisUpperClass.js +++ b/src/events/nonRandom/foodCrisis/pFoodCrisisUpperClass.js @@ -29,8 +29,8 @@ App.Events.pFoodCrisisUpperClass = class PFoodCrisis extends App.Events.BaseEven App.Events.addParagraph(node, r); App.Events.addResponses(node, [ - new App.Events.Result(`Set up a food market`, foodMarket, `This will cost an initial investment of ${cashFormat(price * 15)}${discount ? `, <span class="skill player">reduced by your knowledge of trading</span>` : ``}`), - new App.Events.Result(`Politely decline their offer, but continue giving them rations`, enough, `This will cost ${cashFormat(price)} and ${discount ? `some upkeep, <span class="skill player">reduced by your knowledge of trading</span>` : `will incur significant upkeep costs`}`), + new App.Events.Result(`Set up a food market`, foodMarket, `This will cost an initial investment of ${cashFormat(price * 15)}${discount ? `, reduced by your knowledge of trading` : ``}.`), + new App.Events.Result(`Politely decline their offer, but continue giving them rations`, enough, `This will cost ${cashFormat(price)} and ${discount ? `some upkeep, reduced by your knowledge of trading` : `will incur significant upkeep costs`}.`), new App.Events.Result(`Turn down their offer and end rationing completely`, refuse), ]);