mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-25 23:41:29 +01:00
20 lines
396 B
TypeScript
20 lines
396 B
TypeScript
import { Action } from "./Action";
|
|
import { IMap } from "../types";
|
|
|
|
export const GeneralActions: IMap<Action> = {};
|
|
|
|
const actionNames : Array<string> = [
|
|
"Training",
|
|
"Field Analysis",
|
|
"Recruitment",
|
|
"Diplomacy",
|
|
"Hyperbolic Regeneration Chamber",
|
|
"Incite Violence"
|
|
];
|
|
|
|
for (const actionName of actionNames){
|
|
GeneralActions[actionName] = new Action({
|
|
name: actionName,
|
|
});
|
|
}
|