This commit is contained in:
danielyxie 2019-03-19 16:38:54 -07:00
commit f7fd3c859f
2 changed files with 10 additions and 8 deletions

@ -4,7 +4,7 @@ purchaseServer() Netscript Function
.. js:function:: purchaseServer(hostname, ram)
:param string hostname: Hostname of the purchased server
:param number ram: Amount of RAM of the purchased server. Must be a power of 2 (2, 4, 8, 16, etc.). Maximum value of 1048576 (2^20)
:param number ram: Amount of RAM of the purchased server. Must be a power of 2 (2, 4, 8, 16, etc.). Maximum value of getPurchasedServerMaxRam()
:RAM cost: 2.25 GB
Purchased a server with the specified hostname and amount of RAM.

@ -1213,17 +1213,19 @@ function initAugmentations() {
//Illuminati
var QLink = new Augmentation({
name:AugmentationNames.QLink, repCost:750e3, moneyCost:1300e6,
name:AugmentationNames.QLink, repCost:750e3, moneyCost:10e12,
info:"A brain implant that wirelessly connects you to the Illuminati's " +
"quantum supercomputer, allowing you to access and use its incredible " +
"computing power.<br><br>" +
"This augmentation:<br>" +
"Increases the player's hacking speed by 10%.<br>" +
"Increases the player's chance of successfully performing a hack by 30%.<br>" +
"Increases the amount of money the player gains from hacking by 100%.",
hacking_speed_mult: 1.1,
hacking_chance_mult: 1.3,
hacking_money_mult: 2,
"Increases the player's hacking skill by 100%.<br>" +
"Increases the player's hacking speed by 50%.<br>" +
"Increases the player's chance of successfully performing a hack by 150%.<br>" +
"Increases the amount of money the player gains from hacking by 500%.",
hacking_speed_mult: 1.5,
hacking_chance_mult: 2.5,
hacking_money_mult: 6,
hacking_mult: 2,
});
QLink.addToFactions(["Illuminati"]);
if (augmentationExists(AugmentationNames.QLink)) {