UI: Change description and add tooltip for HackMoney-related multipliers (#1823)

* UI: Change description and add tooltip for HackMoney-related multipliers

* Update based on feedback
This commit is contained in:
catloversg
2024-12-18 17:51:25 +07:00
committed by GitHub
parent 9c4b0c004c
commit e6078ab1df
9 changed files with 60 additions and 31 deletions

View File

@@ -728,8 +728,9 @@ interface BitNodeMultipliers {
/** Influences how much rep the player can gain from factions when selling stolen documents and secrets */
InfiltrationRep: number;
/**
* Influences how much money can be stolen from a server when the player performs a hack against it through
* the Terminal.
* Influences how much money the player actually gains when they hack a server via the terminal. This is different
* from ScriptHackMoney. When the player hack a server via the terminal, the amount of money in that server is
* reduced, but they do not gain that same amount.
*/
ManualHackMoney: number;
/** Influence how much it costs to purchase a server */
@@ -742,11 +743,11 @@ interface BitNodeMultipliers {
PurchasedServerMaxRam: number;
/** Influences the minimum favor the player must have with a faction before they can donate to gain rep. */
RepToDonateToFaction: number;
/** Influences how much money can be stolen from a server when a script performs a hack against it. */
/** Influences how much money is stolen from a server when the player performs a hack against it. */
ScriptHackMoney: number;
/**
* 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
* Influences how much money the player actually gains when a script hacks a server. This is different from
* ScriptHackMoney. When a script hacks a server, the amount of money in that server is reduced, but the player does
* not gain that same amount.
*/
ScriptHackMoneyGain: number;