mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-20 06:33:49 +01:00
Update documentation for employee
This commit is contained in:
parent
4056956c2a
commit
100e81c8ab
17
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
17
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@ -7045,22 +7045,27 @@ interface CorporationInfo {
|
|||||||
interface Employee {
|
interface Employee {
|
||||||
/** Name of the employee */
|
/** Name of the employee */
|
||||||
name: string;
|
name: string;
|
||||||
/** Morale */
|
/** Morale of the employee */
|
||||||
mor: number;
|
mor: number;
|
||||||
/** Happiness */
|
/** Happiness of the employee */
|
||||||
hap: number;
|
hap: number;
|
||||||
/** Energy */
|
/** Energy of the employee */
|
||||||
ene: number;
|
ene: number;
|
||||||
|
/** Intelligence of the employee */
|
||||||
int: number;
|
int: number;
|
||||||
|
/** Charisma of the employee */
|
||||||
cha: number;
|
cha: number;
|
||||||
|
/** Experience of the employee */
|
||||||
exp: number;
|
exp: number;
|
||||||
|
/** Creativity of the employee */
|
||||||
cre: number;
|
cre: number;
|
||||||
|
/** Efficiency of the employee */
|
||||||
eff: number;
|
eff: number;
|
||||||
/** Salary */
|
/** Salary of the employee */
|
||||||
sal: number;
|
sal: number;
|
||||||
/** City */
|
/** Current Location (city) */
|
||||||
loc: string;
|
loc: string;
|
||||||
/** Current job */
|
/** Current job position */
|
||||||
pos: string;
|
pos: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user