From 52bf4fa0d5f96431064f9ea3ec35c5777f2a71ca Mon Sep 17 00:00:00 2001 From: Daniel Xie Date: Fri, 21 Apr 2017 14:06:41 -0500 Subject: [PATCH] Added the TITN41 augmentation and added it to Silhouette fac --- src/Augmentations.js | 8 ++++++++ src/Faction.js | 1 + 2 files changed, 9 insertions(+) diff --git a/src/Augmentations.js b/src/Augmentations.js index a20663996..dfbc3faba 100644 --- a/src/Augmentations.js +++ b/src/Augmentations.js @@ -207,6 +207,14 @@ initAugmentations = function() { "Ishima", "Volhaven"]); AddToAugmentations(SpeechProcessor); + TITN41Injection = new Augmentation("TITN-41 Gene-Modification Injection"); + TITN41Injection.setRequirements(150000, 75000000); + TITN41Injection.setInfo("TITN is a series of viruses that targets and alters the sequences of human DNA in genes that \n" + + "control personality. The TITN-41 strain alters these genes so that the subject becomes more \n " + + "outgoing and socialable. \n\n" + + "This augmentation increases the player's charisma and charisma experience gain rate by 15%"); + TITN41Injection.addToFactions(["Silhouette"]); + var EnhancedSocialInteractionImplant = new Augmentation("Enhanced Social Interaction Implant"); EnhancedSocialInteractionImplant.setRequirements(750000, 500000000); EnhancedSocialInteractionImplant.setInfo("A cranial implant that greatly assists in the user's ability to analyze social situations\n" + diff --git a/src/Faction.js b/src/Faction.js index 43c6697df..e804a1d15 100644 --- a/src/Faction.js +++ b/src/Faction.js @@ -370,6 +370,7 @@ PlayerObject.prototype.checkForFactionInvitations = function() { invitedFactions.push(thesyndicateFac); } + //Silhouette var silhouetteFac = Factions["Silhouette"]; if (silhouetteFac.isBanned == false && silhouetteFac.isMember == false && (this.companyPosition.positionName == CompanyPositions.CTO.positionName ||