bitburner-src/src/Bladeburner/GeneralActions.tsx

19 lines
395 B
TypeScript
Raw Normal View History

2021-09-27 23:09:48 +02:00
import { Action } from "./Action";
import { IMap } from "../types";
export const GeneralActions: IMap<Action> = {};
2021-11-12 05:28:08 +01:00
const actionNames : Array<string> = [
2021-10-18 06:02:23 +02:00
"Training",
"Field Analysis",
"Recruitment",
"Diplomacy",
"Hyperbolic Regeneration Chamber",
"Incite Violence"
];
2021-10-18 06:02:23 +02:00
2021-11-12 05:28:08 +01:00
for (const actionName of actionNames){
2021-10-18 06:02:23 +02:00
GeneralActions[actionName] = new Action({
name: actionName,
});
}