DOCS: Add documentation descriptions for GangMemberInfo properties (#779)

This commit is contained in:
missymae#2783
2023-09-03 14:50:24 -06:00
committed by GitHub
parent 66ac31ee99
commit bec737a253
14 changed files with 42 additions and 24 deletions

View File

@@ -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;
}