mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 22:38:34 +02:00
DOCS: Add documentation descriptions for GangMemberInfo properties (#779)
This commit is contained in:
18
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
18
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@@ -870,6 +870,7 @@ interface GangMemberInfo {
|
||||
name: string;
|
||||
/** Currently assigned task */
|
||||
task: string;
|
||||
/** Amount of Respect earned by member since they last Ascended */
|
||||
earnedRespect: number;
|
||||
|
||||
/** Hack skill level */
|
||||
@@ -924,24 +925,29 @@ interface GangMemberInfo {
|
||||
/** Charisma multiplier from ascensions */
|
||||
cha_asc_mult: number;
|
||||
|
||||
/** Total earned hack experience */
|
||||
/** Total Hack Ascension points accumulated */
|
||||
hack_asc_points: number;
|
||||
/** Total earned strength experience */
|
||||
/** Total Strength Ascension points accumulated */
|
||||
str_asc_points: number;
|
||||
/** Total earned defense experience */
|
||||
/** Total Defense Ascension points accumulated */
|
||||
def_asc_points: number;
|
||||
/** Total earned dexterity experience */
|
||||
/** Total Dexterity Ascension points accumulated */
|
||||
dex_asc_points: number;
|
||||
/** Total earned agility experience */
|
||||
/** Total Agility Ascension points accumulated */
|
||||
agi_asc_points: number;
|
||||
/** Total earned charisma experience */
|
||||
/** Total Charisma Ascension points accumulated */
|
||||
cha_asc_points: number;
|
||||
|
||||
/** List of all non-Augmentation Equipment owned by gang member */
|
||||
upgrades: string[];
|
||||
/** List of all Augmentations currently installed on gang member */
|
||||
augmentations: string[];
|
||||
|
||||
/** Per Cycle Rate this member is currently gaining Respect */
|
||||
respectGain: number;
|
||||
/** Per Cycle Rate by which this member is affecting your gang's Wanted Level */
|
||||
wantedLevelGain: number;
|
||||
/** Per Cycle Income for this gang member */
|
||||
moneyGain: number;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user