mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-18 20:25:45 +01:00
NETSCRIPT: Added cyclesWorked to certain sleeve.getTask returns, and added bladeburner.getActionSuccesses (#324)
This commit is contained in:
parent
6f0b3d07b8
commit
5f923a348c
@ -249,6 +249,7 @@ const bladeburner = {
|
|||||||
getActionMaxLevel: RamCostConstants.BladeburnerApiBase,
|
getActionMaxLevel: RamCostConstants.BladeburnerApiBase,
|
||||||
getActionCurrentLevel: RamCostConstants.BladeburnerApiBase,
|
getActionCurrentLevel: RamCostConstants.BladeburnerApiBase,
|
||||||
getActionAutolevel: RamCostConstants.BladeburnerApiBase,
|
getActionAutolevel: RamCostConstants.BladeburnerApiBase,
|
||||||
|
getActionSuccesses: RamCostConstants.BladeburnerApiBase,
|
||||||
setActionAutolevel: RamCostConstants.BladeburnerApiBase,
|
setActionAutolevel: RamCostConstants.BladeburnerApiBase,
|
||||||
setActionLevel: RamCostConstants.BladeburnerApiBase,
|
setActionLevel: RamCostConstants.BladeburnerApiBase,
|
||||||
getRank: RamCostConstants.BladeburnerApiBase,
|
getRank: RamCostConstants.BladeburnerApiBase,
|
||||||
|
@ -172,6 +172,13 @@ export function NetscriptBladeburner(): InternalAPI<INetscriptBladeburner> {
|
|||||||
const action = getBladeburnerActionObject(ctx, type, name);
|
const action = getBladeburnerActionObject(ctx, type, name);
|
||||||
return action.autoLevel;
|
return action.autoLevel;
|
||||||
},
|
},
|
||||||
|
getActionSuccesses: (ctx) => (_type, _name) => {
|
||||||
|
const type = helpers.string(ctx, "type", _type);
|
||||||
|
const name = helpers.string(ctx, "name", _name);
|
||||||
|
checkBladeburnerAccess(ctx);
|
||||||
|
const action = getBladeburnerActionObject(ctx, type, name);
|
||||||
|
return action.successes;
|
||||||
|
},
|
||||||
setActionAutolevel:
|
setActionAutolevel:
|
||||||
(ctx) =>
|
(ctx) =>
|
||||||
(_type, _name, _autoLevel = true) => {
|
(_type, _name, _autoLevel = true) => {
|
||||||
|
@ -67,6 +67,7 @@ export class SleeveBladeburnerWork extends Work {
|
|||||||
type: WorkType.BLADEBURNER as "BLADEBURNER",
|
type: WorkType.BLADEBURNER as "BLADEBURNER",
|
||||||
actionType: this.actionType,
|
actionType: this.actionType,
|
||||||
actionName: this.actionName,
|
actionName: this.actionName,
|
||||||
|
cyclesWorked: this.cyclesWorked,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -51,6 +51,7 @@ export class SleeveCrimeWork extends Work {
|
|||||||
return {
|
return {
|
||||||
type: WorkType.CRIME as "CRIME",
|
type: WorkType.CRIME as "CRIME",
|
||||||
crimeType: this.crimeType,
|
crimeType: this.crimeType,
|
||||||
|
cyclesWorked: this.cyclesWorked,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ export class SleeveInfiltrateWork extends Work {
|
|||||||
APICopy() {
|
APICopy() {
|
||||||
return {
|
return {
|
||||||
type: WorkType.INFILTRATE as "INFILTRATE",
|
type: WorkType.INFILTRATE as "INFILTRATE",
|
||||||
|
cyclesWorked: this.cyclesWorked,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
18
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
18
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@ -874,6 +874,7 @@ type SleeveBladeburnerTask = {
|
|||||||
type: "BLADEBURNER";
|
type: "BLADEBURNER";
|
||||||
actionType: "General" | "Contracts";
|
actionType: "General" | "Contracts";
|
||||||
actionName: string;
|
actionName: string;
|
||||||
|
cyclesWorked: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** @public */
|
/** @public */
|
||||||
@ -887,7 +888,7 @@ type SleeveClassTask = {
|
|||||||
type SleeveCompanyTask = { type: "COMPANY"; companyName: string };
|
type SleeveCompanyTask = { type: "COMPANY"; companyName: string };
|
||||||
|
|
||||||
/** @public */
|
/** @public */
|
||||||
type SleeveCrimeTask = { type: "CRIME"; crimeType: CrimeType | `${CrimeType}` };
|
type SleeveCrimeTask = { type: "CRIME"; crimeType: CrimeType | `${CrimeType}`; cyclesWorked: number };
|
||||||
|
|
||||||
/** @public */
|
/** @public */
|
||||||
type SleeveFactionTask = {
|
type SleeveFactionTask = {
|
||||||
@ -897,7 +898,7 @@ type SleeveFactionTask = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/** @public */
|
/** @public */
|
||||||
type SleeveInfiltrateTask = { type: "INFILTRATE" };
|
type SleeveInfiltrateTask = { type: "INFILTRATE"; cyclesWorked: number };
|
||||||
|
|
||||||
/** @public */
|
/** @public */
|
||||||
type SleeveRecoveryTask = { type: "RECOVERY" };
|
type SleeveRecoveryTask = { type: "RECOVERY" };
|
||||||
@ -2870,6 +2871,19 @@ export type Bladeburner = {
|
|||||||
*/
|
*/
|
||||||
getActionAutolevel(type: string, name: string): boolean;
|
getActionAutolevel(type: string, name: string): boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get action successes.
|
||||||
|
* @remarks
|
||||||
|
* RAM cost: 4 GB
|
||||||
|
*
|
||||||
|
* Return a number with how many successes you have with action.
|
||||||
|
*
|
||||||
|
* @param type - Type of action.
|
||||||
|
* @param name - Name of action. Must be an exact match.
|
||||||
|
* @returns a number with how many successes you have with action.
|
||||||
|
*/
|
||||||
|
getActionSuccesses(type: string, name: string): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set an action autolevel.
|
* Set an action autolevel.
|
||||||
* @remarks
|
* @remarks
|
||||||
|
Loading…
Reference in New Issue
Block a user