mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-20 05:05:47 +01:00
Merge pull request #347 from jeek/corp-states
CORP: Move Sale after Export in Corp States
This commit is contained in:
commit
35d590b25d
@ -15,7 +15,7 @@ import { IndustryType, EmployeePositions } from "./Enums";
|
|||||||
// This structure + import * as corpConstants allows easier type definitions for individual properties.
|
// This structure + import * as corpConstants allows easier type definitions for individual properties.
|
||||||
|
|
||||||
/** Names of all corporation game states */
|
/** Names of all corporation game states */
|
||||||
export const stateNames: CorpStateName[] = ["START", "PURCHASE", "PRODUCTION", "SALE", "EXPORT"],
|
export const stateNames: CorpStateName[] = ["START", "PURCHASE", "PRODUCTION", "EXPORT", "SALE"],
|
||||||
// TODO: remove IndustryType and EmployeePositions enums and just use the typed strings.
|
// TODO: remove IndustryType and EmployeePositions enums and just use the typed strings.
|
||||||
/** Names of all corporation employee positions */
|
/** Names of all corporation employee positions */
|
||||||
employeePositions: CorpEmployeePosition[] = Object.values(EmployeePositions),
|
employeePositions: CorpEmployeePosition[] = Object.values(EmployeePositions),
|
||||||
|
4
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
4
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@ -7604,7 +7604,7 @@ interface CorporationInfo {
|
|||||||
dividendTax: number;
|
dividendTax: number;
|
||||||
/** Your earnings as a shareholder per second this cycle */
|
/** Your earnings as a shareholder per second this cycle */
|
||||||
dividendEarnings: number;
|
dividendEarnings: number;
|
||||||
/** State of the corporation. Possible states are START, PURCHASE, PRODUCTION, SALE, EXPORT. */
|
/** State of the corporation. Possible states are START, PURCHASE, PRODUCTION, EXPORT, SALE. */
|
||||||
state: string;
|
state: string;
|
||||||
/** Array of all division names */
|
/** Array of all division names */
|
||||||
divisions: string[];
|
divisions: string[];
|
||||||
@ -7662,7 +7662,7 @@ interface CorpConstants {
|
|||||||
minEmployeeDecay: number;
|
minEmployeeDecay: number;
|
||||||
}
|
}
|
||||||
/** @public */
|
/** @public */
|
||||||
type CorpStateName = "START" | "PURCHASE" | "PRODUCTION" | "SALE" | "EXPORT";
|
type CorpStateName = "START" | "PURCHASE" | "PRODUCTION" | "EXPORT" | "SALE";
|
||||||
|
|
||||||
/** @public */
|
/** @public */
|
||||||
type CorpMaterialName =
|
type CorpMaterialName =
|
||||||
|
Loading…
Reference in New Issue
Block a user