DOCUMENTATION: Fix mangled NS API TSDoc (#1643)

This commit is contained in:
catloversg
2024-09-08 07:29:23 +07:00
committed by GitHub
parent 17e906cd76
commit 0ce5cd35dc
25 changed files with 162 additions and 220 deletions
+10 -10
View File
@@ -27,7 +27,7 @@ export class BitNodeMultipliers {
/** Influences the experience gained for each ability when a player completes a class. */
ClassGymExpGain = 1;
/**Influences the amount of money gained from completing Coding Contracts. */
/** Influences the amount of money gained from completing Coding Contracts. */
CodingContractMoney = 1;
/** Influences the experience gained for each ability when the player completes working their job. */
@@ -39,6 +39,12 @@ export class BitNodeMultipliers {
/** Influences how much rep the player gains when performing work for a company. */
CompanyWorkRepGain = 1;
/** Influences the amount of divisions a corporation can have at the same time. */
CorporationDivisions = 1;
/** Influences profits from corporation dividends and selling shares. */
CorporationSoftcap = 1;
/** Influences the valuation of corporations created by the player. */
CorporationValuation = 1;
@@ -48,7 +54,7 @@ export class BitNodeMultipliers {
/** Influences the base money gained when the player commits a crime. */
CrimeMoney = 1;
/** influences the success chance of committing crimes */
/** Influences the success chance of committing crimes */
CrimeSuccessRate = 1;
/** Influences how many Augmentations you need in order to get invited to the Daedalus faction */
@@ -75,7 +81,7 @@ export class BitNodeMultipliers {
/** Influences how much it costs to unlock the stock market's 4S Market Data (NOT API) */
FourSigmaMarketDataCost = 1;
/** Reduces gangs earning. */
/** Influences the respect gain and money gain of your gang. */
GangSoftcap = 1;
/** Percentage of unique augs that the gang has. */
@@ -133,7 +139,7 @@ export class BitNodeMultipliers {
ScriptHackMoney = 1;
/**
* The amount of money actually gained when script hack a server. This is
* The amount of money actually gained when a script hacks a server. This is
* different than the above because you can reduce the amount of money but
* not gain that same amount.
*/
@@ -166,12 +172,6 @@ export class BitNodeMultipliers {
/** Influences the hacking skill required to backdoor the world daemon. */
WorldDaemonDifficulty = 1;
/** Influences profits from corporation dividends and selling shares. */
CorporationSoftcap = 1;
/** Influences the amount of divisions a corporation can have have at the same time*/
CorporationDivisions = 1;
constructor(a: PartialRecord<keyof BitNodeMultipliers, number> = {}) {
for (const [key, value] of getRecordEntries(a)) this[key] = clampNumber(value);
}