Skip to content
Snippets Groups Projects
Commit 166d92ba authored by DCoded's avatar DCoded
Browse files

Removed spans from note

parent d62d27bf
No related branches found
No related tags found
No related merge requests found
......@@ -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)
]);
......
......@@ -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)
]);
......
......@@ -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),
]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment