Skip to content
Snippets Groups Projects
Commit 9a42a374 authored by Pregmodder's avatar Pregmodder
Browse files

part one

parent 1e1cf36d
No related branches found
No related tags found
1 merge request!7612murder attempt editing and cleanup part 1
...@@ -36,7 +36,7 @@ App.Events.murderAttempt = function() { ...@@ -36,7 +36,7 @@ App.Events.murderAttempt = function() {
function intro(fragment) { function intro(fragment) {
const r = []; const r = [];
r.push("As per routine, you are sifting through the messages your personal assistant has flagged as relevant from the mass that fills your inbox each day."); r.push("As per routine, you are sifting through the messages your personal assistant has flagged as relevant from the mass that fills your inbox each day.");
r.push("One is a request by a company called \"" + companyName + "\" for a personal meeting to propose some kind of"); r.push(`One is a request from a company called ${companyName} for a personal meeting to propose some kind of`);
switch (variation) { switch (variation) {
case "trade": case "trade":
r.push("business venture."); r.push("business venture.");
...@@ -51,7 +51,7 @@ App.Events.murderAttempt = function() { ...@@ -51,7 +51,7 @@ App.Events.murderAttempt = function() {
r.push("military endeavour."); r.push("military endeavour.");
break; break;
} }
r.push("Despite being incredibly vague about the details of said business venture they have references from multiple reputable businesses in the"); r.push("Despite being incredibly vague about the details of said business opportunity, they have references from multiple reputable businesses in the");
switch (variation) { switch (variation) {
case "trade": case "trade":
r.push("trading"); r.push("trading");
...@@ -66,30 +66,30 @@ App.Events.murderAttempt = function() { ...@@ -66,30 +66,30 @@ App.Events.murderAttempt = function() {
r.push("military"); r.push("military");
break; break;
} }
r.push("and slavery sectors, many of which are known for dealing in not so legal business regularly, making the vague details seem more like making sure not to leave any possible proofs of illegal ventures behind."); r.push("and slavery sectors. Some of them are known for dealing in less than legal business regularly, so the lack of information may just be either an attempt to distance themselves from seedy dealings or something truley lucrative, if slightly dirty.");
App.Events.addParagraph(fragment, r); App.Events.addParagraph(fragment, r);
let yesText, noText; let yesText, noText;
switch (variation) { switch (variation) {
case "trade": case "trade":
yesText = "New business is"; yesText = "New business is always good";
noText = "profitable business venture"; noText = "profitable business venture";
break; break;
case "slave": case "slave":
yesText = "Unique slaves are"; yesText = "Unique slaves are always interesting";
noText = "special slave"; noText = "special slave";
break; break;
case "drug": case "drug":
yesText = "Special drugs you cannot buy are"; yesText = "Special drugs unavailable to the public are always interesting";
noText = "new drug"; noText = "new drug";
break; break;
case "military": case "military":
yesText = "A profitable use for your mercenary troops is"; yesText = "A profitable use for your mercenary troops is always good";
noText = "profitable military venture"; noText = "profitable military venture";
break; break;
} }
App.Events.addResponses(fragment, [ App.Events.addResponses(fragment, [
new App.Events.Result(`${yesText} always good, invite them to a private meeting.`, invite), new App.Events.Result(`${yesText}; invite them to a private meeting.`, invite),
new App.Events.Result(`You are not going to waste your time on something as vague as a "${noText}".`, endEvent) new App.Events.Result(`You are not going to waste your time on something as vague as a "${noText}".`, endEvent)
], "invite"); ], "invite");
} }
......
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