mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-15 09:57:39 +01:00
20 lines
397 B
TypeScript
20 lines
397 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,
|
|
});
|
|
}
|